.product-section {
    /* Uses Bootstrap Row/Col now */
}

.left-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.main-image-product-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.main-image-product img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
    cursor: zoom-in;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-image-product:hover img {
    transform: scale(1.03);
}

/* ---------- Zoom Icon ---------- */
.zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.9) !important;
    color: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    z-index: 10;
}

.zoom-icon:hover {
    background: #fff !important;
    transform: scale(1.1);
}

.thumb-gallery.owl-carousel {
    display: block;
    padding: 0 10px;
}

.thumb-gallery img,
.thumb-gallery video {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.thumb-gallery img:hover,
.thumb-gallery video:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.thumb-gallery img.active,
.thumb-gallery video.active {
    border-color: #f89421;
    box-shadow: 0 8px 20px rgba(248, 148, 33, 0.2);
}

/* Thumbnail Carousel Arrows */
#thumbSlider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9) !important;
    color: #000 !important;
    width: 30px;
    height: 30px;
    border-radius: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

#thumbSlider .owl-nav button.owl-prev { left: -10px; }
#thumbSlider .owl-nav button.owl-next { right: -10px; }

#thumbSlider .owl-nav button:hover {
    background: #000 !important;
    color: #fff !important;
}

.right-details {
    /* Uses Bootstrap col now */
}

.product-details h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.6rem;
    text-transform: none;
    letter-spacing: -0.2px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 20px;
}

/* Meta Data */
.rating-box {
    margin-bottom: 15px;
}

.stars i {
    font-size: 14px;
}

.reviews-count {
    font-weight: 500;
    color: #888;
}

.product-meta {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 25px;
}


.product-meta .meta-row {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #333;
}

.product-meta .label {
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.product-meta .value {
    color: #111;
    font-weight: 700;
    margin-left: 8px;
}

.product-meta .status.instock {
    color: #111;
    font-weight: 700;
}

.product-meta .status.instock i {
    color: #28a745;
    font-size: 1.1rem;
    margin-right: 2px;
}

/* Price Section */
.price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin: 30px 0;
}

.price .sale-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: #f89421; /* Brand Highlight Orange */
    margin: 0;
    letter-spacing: -1px;
}

.price .mrp {
    font-size: 1.3rem;
    color: #bbb;
    text-decoration: line-through;
    font-weight: 600;
}

.price .discount {
    background: #000; /* Black background for high contrast */
    color: #f89421; /* Orange text */
    font-weight: 900;
    padding: 6px 15px;
    font-size: 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Variation Swatches */
.color-section h6 {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.color-wrapper {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.color-wrapper:hover {
    transform: scale(1.05);
}

.color-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.color-img.selected {
    border-color: #f89421;
    box-shadow: 0 8px 20px rgba(248, 148, 33, 0.15);
}

/* Variation Types */
.type-section h6 {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.type-btn {
    background: #e9ecef;
    border: none;
    color: #000;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.type-btn:hover {
    background: #dee2e6;
    transform: translateY(-2px);
}

.type-btn.selected {
    background: #f89421;
    color: #000;
    border-color: #f89421;
    box-shadow: 0 6px 15px rgba(248, 148, 33, 0.25);
}

/* Quantity Box */
.quantity-box {
    width: 130px;
    height: 54px;
    border: 2px solid #eee;
    border-radius: 14px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fbfbfb;
}

.qty-btn {
    border: none;
    background: none;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    color: #000;
    padding: 0 10px;
    transition: transform 0.2s;
}

.qty-btn:active {
    transform: scale(0.8);
}

.qty-value {
    font-size: 18px;
    font-weight: 800;
    color: #000;
}

/* Action Buttons */
.add-cart-btn {
    flex: 1;
    height: 54px;
    background: #000;
    border: none;
    color: #fff;
    font-weight: 800;
    padding: 0 45px;
    border-radius: 14px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.add-cart-btn:hover {
    background: #f89421;
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(248, 148, 33, 0.3);
}

/* Description Section */
.product-description-container {
    margin-top: 80px;
    /*padding-top: 40px;*/
    /*border-top: 2px solid #f5f5f5;*/
}

.product-description-container h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #000;
}

.description {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

/* Navigation Buttons */
.prev-image-btn,
.next-image-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.prev-image-btn:hover,
.next-image-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.prev-image-btn { left: 15px; }
.next-image-btn { right: 15px; }

/* Mobile Fixes */
@media (max-width: 992px) {
    .product-section {
        flex-direction: column;
        gap: 40px;
    }

    .left-gallery {
        position: static;
        width: 100%;
    }

    .main-image-product img {
        height: 450px;
        border-radius: 15px;
    }

    .right-details {
        width: 100%;
    }

    .product-details h1 {
        font-size: 1.3rem;
    }

    .price .sale-price {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-image-product img {
        height: 400px;
    }

    .price {
        gap: 10px;
        margin: 20px 0;
        flex-wrap: wrap; /* Allow wrapping on very small screens */
    }

    .price .sale-price {
        font-size: 1.8rem;
    }

    .price .mrp {
        font-size: 1.1rem;
    }

    .price .discount {
        padding: 5px 10px;
        font-size: 10px;
    }
}

.share-btn{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffe6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fa1a1a;
    border: 1px solid #ffe6e6;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.share-btn i{
    font-size: 18px;
}

.share-btn:hover{
    background: #ed2727;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}