/* Page Container */
.product-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 5%;
}

/* Product Details Wrapper */
.product-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

/* Left Section - Image Gallery */
.product-images {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Main Product Image */
.main-image img {
    width: 100%;
    max-width: 400px;
}

/* .main-image img:hover {
   
} */

/* Thumbnail Images */
.image-gallery {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.image-gallery img {
    width: 70px;
    height: 100px;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s ease-in-out;
}

.image-gallery img:hover {
    border: 2px solid #ff7b00;
}

/* Right Section - Product Info */
.product-info {
    flex: 1;
    max-width: 600px;
}

/* Product Title */
.product-info h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--black);
}

.product-info h2 {
    font-size: 22px;
    font-weight: 500;
    color: var(--smlkh);

}

/* Description */
.description {
    font-size: 14px;
    line-height: 1.5;
    color: var(--black_70);
    margin-bottom: 10px;
    font-style: italic;
}

.pricing{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    padding: 5px 0px;
}

/* Price */
.price {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    border: 1px solid var(--light-gray);
    padding: 4px 12px;
    border-radius: 8px;
    
}

.price del {
    color: var(--spanish-gray);
    font-size: 18px;
    margin-right: 10px;
}

/* Quantity Input */
.quantity-control {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--gray-web);
}

.quantity-btn {
    color: var(--black);
    padding: 5px 14px;
    font-size: 20px;
    cursor: pointer;
}

.quantity-btn:hover {
    background-color: var(--cultured-2);
}

#quantity {
    width: 40px;
    text-align: center;
    font-size: 16px;
}
/* #quantity {
    width: 70px;
    padding: 5px;
    font-size: 16px;
    text-align: center;
    border: 1px solid #ccc;
    margin-left: -5px;
} */

/* Add to Cart Button */
.btn {
    margin-left: 10px;
    padding: 8px 80px;
    
}


/* Features List */
.features {
    list-style: none;
    margin: 10px 0;
    display: flex;
    gap: 2px 30px;
    flex-wrap: wrap;
}

.features li {
    font-size: 14px;
    padding: 5px 0;
    color: var(--black);
}

/* FAQ (Details & Summary) */
details {
    margin-top: 8px;
    border: 1px solid var(--smlkh-button);
    border-radius: 5px;
    padding: 6px;
    cursor: pointer;
    background: var(--cultured-1);
}

details summary {
    font-weight: 600;
    color: var(--black_70);
    cursor: pointer;
}

details .faq-inner {
    font-size: 14px;
    color: var(--black_70);
    padding: 5px 15px 2px;
    line-height: 1.5;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .product-details {
        flex-direction: column;
        align-items: center;
        /* text-align: center; */
    }

    .product-info {
        max-width: 100%;
    }

    .image-gallery {
        justify-content: center;
    }
}