/* Custom styles for product page */
body.single-product {
    font-family: Epilogue, "Noto Sans", sans-serif;
    background-color: #fcfaf8;
    color: #1b130d;
}

.layout-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
}

.product-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.product-details,
.product-options {
    flex: 1 1 300px;
}

.product-image {
    width: 100%;
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.product-description {
    font-size: 1rem;
    line-height: 1.5;
}

.product-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.product-serving {
    font-size: 0.875rem;
    color: #9a6e4c;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-group h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #f3ece7;
    background-color: #f3ece7;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.single_add_to_cart_button {
    background-color: #ee7f2b;
    color: #1b130d;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .product-content-wrapper {
        flex-direction: column;
    }

    .product-image {
        height: 200px;
    }

    .product-title {
        font-size: 1.25rem;
    }

    .product-price {
        font-size: 1.125rem;
    }
}