/* ========== WooCommerce Product Page Sections ========== */

#single-product-wrapper {
    background: #f5f5f5;
}

/* ========== Section 1: Text + Gallery ========== */
.product-section-1 {
    background: #ffffff;
    padding: 80px 0;
}

.product-section-1 .product-text-content {
    padding-right: 40px;
}

.product-section-1 .product-text-content h2,
.product-section-1 .product-text-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2d2d2d;
}

.product-section-1 .product-text-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-section-1 .product-text-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #2d2d2d;
}

.product-section-1 .product-text-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 20px;
}

.product-section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-gallery-slider {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gallery-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-arrow:hover {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

/* ========== Section 2: Gallery + Benefits ========== */
.product-section-2 {
    background: #e8e8e8;
    padding: 80px 0;
}

.product-images-display {
    position: relative;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.product-image-item {
    flex: 1;
    min-width: 150px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-image-item img {
    width: 100%;
    height: auto;
    display: block;
}

.decorative-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #c8e6c9;
    border-radius: 50% 40% 60% 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.product-benefits-content {
    padding-left: 40px;
}

.product-benefits-content h2,
.product-benefits-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2d2d2d;
}

.product-benefits-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-benefits-content ul li {
    background: #e8f5e9;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #2d2d2d;
}

.product-benefits-content p {
    margin-top: 30px;
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
}

.product-purchase-section {
    margin-top: 40px;
    padding-left: 40px;
}

.product-meta-info {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-price-wrapper {
    margin: 0;
}

.product-price-wrapper .price {
    font-size: 28px;
    font-weight: 700;
    color: #4caf50;
    line-height: 1;
}

.product-price-wrapper .price del {
    font-size: 20px;
    color: #999999;
    margin-right: 10px;
}

.product-price-wrapper .price ins {
    text-decoration: none;
}

.product-sku-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666666;
}

.sku-label {
    font-weight: 600;
    text-transform: uppercase;
}

.sku-value {
    font-family: monospace;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 4px;
}

.product-add-to-cart-wrapper .cart {
    width: 100%;
}

.cart-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-label {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0;
}

.quantity-wrapper .input-text.qty {
    width: 80px;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.quantity-wrapper .input-text.qty:focus {
    outline: none;
    border-color: #4caf50;
}

.single_add_to_cart_button {
    background: #4caf50 !important;
    color: #ffffff !important;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    border: none !important;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
}

.single_add_to_cart_button:hover {
    background: #45a049 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.single_add_to_cart_button:active {
    transform: translateY(0);
}

/* ========== Section 3: Images + Labels ========== */
.product-section-3 {
    background: #ffffff;
    padding: 80px 0;
}

.product-images-display-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.product-image-item-left {
    flex: 1;
    min-width: 150px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-image-item-left img {
    width: 100%;
    height: auto;
    display: block;
}

.product-labels-content {
    padding-left: 40px;
    margin-bottom: 30px;
}

.product-labels-content h2,
.product-labels-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2d2d2d;
}

.product-labels-list {
    padding-left: 40px;
}

.product-label-item {
    background: #e8f5e9;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #2d2d2d;
    font-weight: 500;
}

/* ========== Responsive ========== */
@media (max-width: 991px) {
    .product-section-1,
    .product-section-2,
    .product-section-3 {
        padding: 60px 0;
    }

    .product-section-1 .product-text-content,
    .product-benefits-content,
    .product-labels-content {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .product-section-1 .product-text-content h2,
    .product-section-1 .product-text-content h3,
    .product-benefits-content h2,
    .product-benefits-content h3,
    .product-labels-content h2,
    .product-labels-content h3 {
        font-size: 28px;
    }

    .decorative-blob {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 767px) {
    .product-section-1,
    .product-section-2,
    .product-section-3 {
        padding: 40px 0;
    }

    .gallery-arrow {
        width: 35px;
        height: 35px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .product-images-display,
    .product-images-display-left {
        flex-direction: column;
    }

    .decorative-blob {
        width: 250px;
        height: 250px;
    }
}
