body {
    /* font-family: 'Arial', sans-serif; */
    margin: 0;
    background-color: #f7f5f2;
    color: #5D4037; /* Dark Brown */
     font-family: "Special Elite", system-ui;
}

a {
    color: #4DB6AC; /* Muted Teal */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    padding: 1rem;
    display: flex;
    text-align: center;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 2rem;
    color: #5D4037;
   font-family: "Rubik Dirt", system-ui;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

nav li {
    margin-left: 1.5rem;
}

main {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin: auto; */
    min-height: calc(100vh - 200px); /* Adjust based on header/footer height */
}

.design-of-the-month {
    text-align: center;
    display: flow-root;
}

.product-img {
    flex: 2;
    display: flex;
}

.product-img img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.design-of-the-month h2 {
    font-size: 2.5rem;
    color: #5D4037;
      font-family: "Rubik Dirt", system-ui;
    margin-bottom: 2rem;
}

/* .product-manage {
    /* display: flex; */
} */
.product-options {
    /* display: grid; */
    justify-content: center;
    align-items: center;
    flex-direction: row;
    
    
}

.product-detail {
display: flex;
gap: 1.5rem;

}

.product-option input[type="checkbox"] {
    display: none;
}

 .product-option {
    
    display: flex;     
}
.product-option label {
    cursor: pointer;
    display: flex; 
    padding: .5rem;
    justify-content: start;
    align-items: center; 
    height: 40px;
    font-weight: 500;
    /* width: 100%; */
    text-align: left;
}

.product-option input[type="checkbox"]:hover + label{
    border-bottom: 2px solid;
    /* background-color: #f0fafa; */
    border-color: #4DB6AC;
}

.product-option input[type="checkbox"]:checked + label {
    border-color: #4DB6AC;
    /* border: 1px solid #4DB6AC; */
    /* background-color: #e0f2f1; */
    
}

.product-option input[type="checkbox"]:checked + label span {
    color: #004D40;
}

.product-option .icon {
    width: 28px;
    height: 28px;
    stroke: #5D4037;
    stroke-width: 4;
    flex: 1;
}

.product-option label:hover .icon {
    stroke: #004D40;
}

.product-option input[type="checkbox"]:checked + label .icon {
    color: #fff;
    background-color: #4DB6AC;
    border-radius: 4px;
}

.product-option span {
    font-weight: bold;
    color: #5D4037;
    padding-left: .8rem;
}

footer {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-list {
    margin: 0;
    padding: 0;
    
    list-style: none;
}

.cart-summary {
    background-color:  #fff;
    border-radius: 8px;
    padding: .5rem;
    margin-top:  1rem;
    min-width: 270px;
}

.cart-summary h2 {
    font-size: 1.5rem;
    color: #5D4037;
    font-family: "Rubik Dirt", system-ui;
    margin-bottom: 2rem;
}

.cart-total {
    margin-top: 1rem;
    text-align: right;
    width: 100%;
}

.cart-item {
    /* border-bottom: 1px solid #5D4037; */
    /* margin-left: 1rem; */
    /* padding: .5rem; */
    text-align: left;
    margin-bottom: .5rem;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

footer li {
    margin-left: 1rem;
}
.cart-link .icon {
    width: 32px;
    height: 32px;
    stroke: #5D4037;
}

.cart-link:hover .icon {
    stroke: #004D40;
}

.home-link .icon {
    width: 32px;
    height: 32px;
    stroke: #5D4037;
}

.home-link:hover .icon {
    stroke: #004D40;
}

.quantity-input {
    width: 40px;
}

.cart-row {
    font-size: 1rem;
    display: grid;
    align-items: center;
    gap: .5rem;
    grid-template-columns: 15% 40% 20% 15%;
}