/* HERO HEIGHT CONTROL */
.hero-slide {
    min-height: 75vh;
}

/* MOBILE HEIGHT */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 50vh;
        text-align: center;
    }
}

/* INDICATORS CENTER FIX */
.carousel-indicators {
    bottom: 10px;
}

/* GLOBAL */

/* NAVBAR */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: 0.3s;
}

.nav-link:hover {
    color: #0d6efd !important;
}

/* SEARCH */
.search-box input {
    border-radius: 20px;
    padding-left: 15px;
}

/* ICONS */
.nav-icons i {
    font-size: 18px;
    margin-left: 15px;
    cursor: pointer;
}

/* LOGO */
.logo-text {
    font-weight: bold;
    color: #000;
}

/* FLASH SALE */
.flash-sale-box {
    background: #fff3cd;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
}

/* HEADER ICON */
.header-icon {
    color: #333;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.header-icon:hover {
    color: orange;
}

/* SEARCH */
.search-input {
    width: 220px;
    border-radius: 20px;
}

/* CATEGORY NAVBAR */
.category-navbar .nav-link {
    color: #333;
    font-weight: 500;
    padding: 15px;
}

/* DROPDOWN */
.dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* DESKTOP HOVER */
@media (min-width: 992px) {

    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

}

/* MOBILE SIDEBAR */
.offcanvas-start {
    width: 280px;
}

/* MOBILE SEARCH */
.mobile-search-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.mobile-search-wrapper.active {
    max-height: 80px;
    padding: 10px 0;
}

.mobile-search-input {
    border-radius: 20px;
}

/* ACCORDION */
.accordion-button:not(.collapsed) {
    background: #fff3cd;
    color: #000;
}

.accordion-button:focus {
    box-shadow: none;
}

/* ADD TO CART ANIMATED BUTTON */
/* CARD FIX */
/* PRODUCT CARD */
.card {
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-3px);
}

/* PRODUCT TITLE */
.product-title {
    font-size: 14px;
    /*min-height: 38px;*/
}

/* CART BUTTON */
.cart-btn {
    overflow: hidden;
    border-radius: 20px;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 2px 10px;
    width: 40px;
}

/* ICON */
.cart-btn i {
    font-size: 14px;
}

/* TEXT */
.cart-text {
    opacity: 0;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* HOVER */
.cart-btn:hover {
    width: 140px;
}

/* SHOW TEXT */
.cart-btn:hover .cart-text {
    opacity: 1;
    width: auto;
    margin-left: 8px;
}
/* PRODUCT ICON ROW */
.product-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

/* SINGLE ICON */
.product-icon {
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;

    transition: all 0.25s ease;

    color: #333;

    aspect-ratio: 1/1;
}

/* ICON */
.product-icon i {
    font-size: 14px;
    line-height: 1;
    transition: 0.5s ease-in-out;
}

/* NEW HOVER ANIMATION */
.product-icon:hover {
    background-color: red;
    transform: translateY(-4px) rotate(16deg);
    box-shadow: 0 5px 15px rgba(255,165,0,0.4);
}

/* ICON COLOR */
.product-icon:hover i {
    color: #fff;
}

/* ==========================================
   PRODUCT CARD
========================================== */

.product-card{
    border-radius:16px;
    transition:0.3s ease;
    background:#fff;
}

.product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.product-image-wrapper{
    background:#f8f8f8;
    border-radius:12px;
}

.product-image{
    width:100%;
    aspect-ratio:1/1;
    object-fit:contain;
    transition:0.4s ease;
}

.product-card:hover .product-image{
    transform:scale(1.05);
}

.product-title{
    font-size:15px;
    line-height:1.5;
    min-height:45px;
    font-weight:600;
}

.product-title a{
    color:#222;
    transition:0.3s ease;
}

.product-title a:hover{
    color:#e63946;
}

.product-icons{
    border-top:1px solid #eee;
    padding-top:12px;
}

.product-icon{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#333;
    transition:0.3s ease;
    cursor:pointer;
}

.product-icon:hover{
    background:#111;
    color:#fff;
    transform:translateY(-2px);
}

.product-icon i{
    font-size:15px;
}
/* ==========================================
   PRODUCT CARD ENDS HERE
========================================== */

/* From product-details - Copy.php */

        body{
            background:#f8f9fa;
        }

        .product-main-image{
            width:100%;
            height:550px;
            object-fit:cover;
            border-radius:15px;
            cursor:zoom-in;
            transition:0.3s;
            background:#fff;
        }

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

        .thumbnail-image{
            width:100%;
            height:100px;
            object-fit:cover;
            border-radius:10px;
            cursor:pointer;
            border:2px solid transparent;
            transition:0.3s;
        }

        .thumbnail-image:hover{
            border-color:#000;
        }

        .product-info-box{
            background:#fff;
            border-radius:18px;
            padding:25px;
            box-shadow:0 2px 10px rgba(0,0,0,0.05);
        }

        .variant-box{
            border:1px solid #ddd;
            border-radius:12px;
            padding:10px 15px;
            cursor:pointer;
            transition:0.3s;
            background:#fff8d7;
            margin-bottom:12px;
            text-align:center;
        }

        .variant-box:hover{
            background:#ffe082;
            transform:translateY(-2px);
        }

        .cart-btn{
            width:100%;
            padding:14px;
            border:none;
            border-radius:12px;
            background:#000;
            color:#fff;
            font-weight:600;
            transition:0.3s;
        }

        .cart-btn:hover{
            background:#222;
        }

        .buy-btn{
            width:100%;
            padding:14px;
            border:none;
            border-radius:12px;
            background:#ff9800;
            color:#fff;
            font-weight:600;
            transition:0.3s;
        }

        .buy-btn:hover{
            background:#fb8c00;
        }

        .highlight-list li{
            margin-bottom:12px;
            font-size:15px;
        }

        .highlight-list li::marker{
            color:#ff9800;
        }

        .spec-card{
            background:#fff;
            border-radius:16px;
            padding:25px;
            box-shadow:0 2px 10px rgba(0,0,0,0.05);
        }

        .spec-table tr td{
            padding:14px;
            border-bottom:1px solid #eee;
        }

        .review-summary-card{
            background:#fff;
            border-radius:16px;
            padding:25px;
            box-shadow:0 2px 10px rgba(0,0,0,0.08);
            position:sticky;
            top:100px;
        }

        .review-main-rating{
            font-size:55px;
            font-weight:700;
            line-height:1;
        }

        .review-stars{
            color:#ffb400;
            font-size:20px;
        }

        .rating-progress{
            height:8px;
            border-radius:10px;
            overflow:hidden;
            background:#eee;
        }

        .rating-progress .progress-bar{
            background:#ffb400;
        }

        .review-card{
            background:#fff;
            border-radius:16px;
            padding:25px;
            margin-bottom:25px;
            box-shadow:0 2px 10px rgba(0,0,0,0.06);
        }

        .review-user-image{
            width:55px;
            height:55px;
            border-radius:50%;
            object-fit:cover;
        }

        .review-title{
            font-size:18px;
            font-weight:600;
            margin-bottom:10px;
        }

        .review-media-wrapper{
            display:flex;
            gap:10px;
            overflow-x:auto;
            padding-bottom:10px;
        }

        .review-media-wrapper::-webkit-scrollbar{
            height:5px;
        }

        .review-media-wrapper::-webkit-scrollbar-thumb{
            background:#ccc;
            border-radius:10px;
        }

        .review-media-image{
            width:90px;
            height:90px;
            object-fit:cover;
            border-radius:10px;
            cursor:pointer;
            transition:0.3s;
            flex-shrink:0;
        }

        .review-media-image:hover{
            transform:scale(1.05);
        }

        .verified-badge{
            background:#e8f5e9;
            color:#2e7d32;
            padding:4px 10px;
            border-radius:20px;
            font-size:12px;
            font-weight:600;
        }

        .review-date{
            font-size:13px;
            color:#888;
        }

        .review-variant{
            display:inline-block;
            background:#f5f5f5;
            padding:5px 12px;
            border-radius:20px;
            font-size:13px;
            margin-top:8px;
        }

        .review-helpful{
            border:none;
            background:#f5f5f5;
            padding:8px 18px;
            border-radius:25px;
            font-size:14px;
            transition:0.3s;
        }

        .review-helpful:hover{
            background:#e0e0e0;
        }

        .review-modal-image{
            width:100%;
            border-radius:10px;
        }

        .related-card{
            border:none;
            border-radius:16px;
            overflow:hidden;
            transition:0.3s;
            background:#fff;
            box-shadow:0 2px 10px rgba(0,0,0,0.05);
        }

        .related-card:hover{
            transform:translateY(-5px);
        }

        @media(max-width:768px){

            .product-main-image{
                height:350px;
            }

            .review-summary-card{
                position:relative;
                top:0;
                margin-bottom:25px;
            }

        }

/* From product-details.php */

        body{
            background:#f8f9fa;
        }

        /* ======================================================
        PRODUCT TOP
        ====================================================== */

        .product-main-image{
            width:100%;
            height:600px;
            object-fit:cover;
            border-radius:18px;
            background:#fff;
        }

        .thumbnail-slider{
            display:flex;
            gap:10px;
            overflow-x:auto;
            margin-top:15px;
        }

        .thumbnail-slider::-webkit-scrollbar{
            height:4px;
        }

        .thumbnail-image{
            width:90px;
            height:90px;
            object-fit:cover;
            border-radius:14px;
            cursor:pointer;
            border:2px solid transparent;
            transition:0.3s;
        }

        .thumbnail-image.active{
            border-color:#111;
        }

        .product-info-box{
            background:#fff;
            border-radius:20px;
            padding:28px;
            box-shadow:0 4px 18px rgba(0,0,0,0.05);
        }

        .product-price{
            font-size:38px;
            font-weight:700;
            color:#e53935;
        }

        .product-old-price{
            font-size:22px;
            color:#999;
            text-decoration:line-through;
        }

        .variant-box{
            background:#fff8d7;
            border-radius:14px;
            padding:12px;
            text-align:center;
            margin-bottom:12px;
            cursor:pointer;
            border:1px solid #eee;
            transition:0.3s;
        }

        .variant-box:hover{
            background:#ffe082;
        }

        .cart-btn,
        .buy-btn{
            width:100%;
            padding:14px;
            border:none;
            border-radius:14px;
            color:#fff;
            font-weight:600;
            transition:0.3s;
        }

        .cart-btn{
            background:#111;
        }

        .buy-btn{
            background:#ff9800;
        }

        .cart-btn:hover{
            background:#000;
        }

        .buy-btn:hover{
            background:#f57c00;
        }

        /* ======================================================
        BANNERS
        ====================================================== */

        .product-banner{
            height:420px;
            object-fit:cover;
            border-radius:20px;
        }

        /* ======================================================
        PREMIUM PRODUCT INFORMATION
        ====================================================== */

        .premium-spec-wrapper{
            background:#fff;
            border-radius:28px;
            padding:35px;
            box-shadow:0 4px 24px rgba(0,0,0,0.05);
        }

        .premium-spec-header{
            margin-bottom:35px;
            border-bottom:1px solid #ececec;
            padding-bottom:20px;
        }

        .premium-spec-title{
            font-size:42px;
            font-weight:800;
            color:#111827;
            margin-bottom:12px;
        }

        .premium-spec-subtitle{
            font-size:18px;
            color:#6b7280;
            margin-bottom:0;
        }

        .premium-spec-card{
            background:#fff;
            border:1px solid #ececec;
            border-radius:22px;
            overflow:hidden;
            transition:0.3s ease;
            height:100%;
        }

        .premium-spec-card:hover{
            transform:translateY(-4px);
            box-shadow:0 8px 28px rgba(0,0,0,0.08);
        }

        .premium-spec-card-header{
            display:flex;
            align-items:center;
            gap:16px;
            padding:22px 24px;
            border-bottom:1px solid #ececec;
        }

        .premium-spec-icon{
            width:54px;
            height:54px;
            border-radius:50%;
            background:#fff4de;
            display:flex;
            align-items:center;
            justify-content:center;
            color:#d97706;
            font-size:22px;
        }

        .premium-spec-group-title{
            margin:0;
            font-size:28px;
            font-weight:700;
            color:#111827;
        }

        .premium-spec-row{
            display:grid;
            grid-template-columns:1fr 1fr;
            border-bottom:1px solid #f1f1f1;
            transition:0.3s;
        }

        .premium-spec-row:last-child{
            border-bottom:none;
        }

        .premium-spec-row:hover{
            background:#fafafa;
        }

        .premium-spec-label{
            padding:18px 24px;
            color:#374151;
            font-weight:500;
        }

        .premium-spec-value{
            padding:18px 24px;
            color:#111827;
            font-weight:600;
        }

        /* ======================================================
        SERVICE STRIP
        ====================================================== */

        .premium-service-strip{
            margin-top:35px;
            border:1px solid #ececec;
            border-radius:22px;
            overflow:hidden;
            display:grid;
            grid-template-columns:repeat(4,1fr);
            background:#fff;
        }

        .premium-service-box{
            display:flex;
            align-items:center;
            gap:18px;
            padding:26px;
            border-right:1px solid #ececec;
        }

        .premium-service-box:last-child{
            border-right:none;
        }

        .premium-service-icon{
            font-size:34px;
            color:#f97316;
        }

        .premium-service-title{
            font-size:20px;
            font-weight:700;
            color:#111827;
        }

        .premium-service-subtitle{
            font-size:15px;
            color:#6b7280;
        }

        /* ======================================================
        REVIEW SUMMARY
        ====================================================== */

        .review-summary-card{
            background:#fff;
            border-radius:20px;
            padding:28px;
            box-shadow:0 4px 18px rgba(0,0,0,0.06);
            position:sticky;
            top:100px;
        }

        .review-main-rating{
            font-size:58px;
            font-weight:700;
        }

        .review-stars{
            color:#ff9800;
            font-size:20px;
        }

        .rating-progress{
            height:8px;
            border-radius:30px;
            overflow:hidden;
            background:#ececec;
        }

        .rating-progress .progress-bar{
            background:#ff9800;
        }

        /* ======================================================
        REVIEW CARD
        ====================================================== */

        .review-card{
            background:#fff;
            border-radius:24px;
            padding:24px;
            margin-bottom:18px;
            box-shadow:0 3px 14px rgba(0,0,0,0.05);
        }

        .review-left-section{
            padding-right:20px;
        }

        .review-right-section{
            border-left:1px solid #ececec;
            padding-left:20px;
        }

        .review-user-row{
            display:flex;
            align-items:flex-start;
            gap:14px;
            margin-bottom:14px;
        }

        .review-profile-circle{
            width:58px;
            height:58px;
            border-radius:50%;
            overflow:hidden;
            background:#eef2ff;
            flex-shrink:0;
        }

        .review-user-image{
            width:100%;
            height:100%;
            object-fit:cover;
        }

        .review-user-name{
            font-size:17px;
            font-weight:700;
            color:#111;
            margin-bottom:4px;
        }

        .review-date-rating{
            display:flex;
            align-items:center;
            gap:14px;
            flex-wrap:wrap;
            margin-bottom:8px;
        }

        .review-date{
            font-size:13px;
            color:#777;
        }

        .review-rating-row{
            display:flex;
            align-items:center;
            gap:8px;
        }

        .dynamic-stars{
            display:flex;
            gap:2px;
            color:#ff9800;
            font-size:16px;
        }

        .review-rating-value{
            font-size:14px;
            font-weight:700;
            color:#333;
        }

        .review-variant{
            display:inline-flex;
            align-items:center;
            background:#f3f4ff;
            color:#4b44d4;
            padding:5px 12px;
            border-radius:30px;
            font-size:12px;
            font-weight:600;
        }

        .review-content-text{
            font-size:15px;
            line-height:1.8;
            color:#444;
            margin-bottom:18px;
        }

        .review-actions{
            display:flex;
            gap:12px;
        }

        .review-action-btn{
            border:none;
            background:#f4f4f4;
            padding:10px 16px;
            border-radius:14px;
            transition:0.25s;
        }

        .review-action-btn:hover{
            background:#111;
            color:#fff;
        }

        .review-action-btn.active{
            background:#111;
            color:#fff;
        }

        /* ======================================================
        REVIEW MEDIA
        ====================================================== */

        .review-media-carousel{
            position:relative;
            display:flex;
            align-items:center;
            justify-content:center;
            gap:10px;
        }

        .review-media-slider{
            width:135px;
            overflow:hidden;
        }

        .review-media-track{
            display:flex;
            transition:0.35s ease;
        }

        .review-media-image{
            width:135px;
            height:135px;
            object-fit:cover;
            border-radius:18px;
            flex-shrink:0;
            cursor:pointer;
        }

        .review-media-nav{
            width:34px;
            height:34px;
            border:none;
            border-radius:50%;
            background:#fff;
            box-shadow:0 2px 10px rgba(0,0,0,0.1);
        }

        .mini-product-rating{
            text-align:center;
            margin-top:12px;
            color:#ff7a00;
            font-weight:700;
            font-size:20px;
        }

        /* ======================================================
        MODAL
        ====================================================== */

        .review-modal-image{
            width:100%;
            border-radius:14px;
        }

        /* ======================================================
        RESPONSIVE
        ====================================================== */

        @media(max-width:1200px){

            .premium-service-strip{
                grid-template-columns:repeat(2,1fr);
            }

        }

        @media(max-width:991px){

            .review-right-section{
                border-left:none;
                border-top:1px solid #ececec;
                margin-top:20px;
                padding-top:20px;
                padding-left:0;
            }

        }

        @media(max-width:768px){

            .premium-spec-row{
                grid-template-columns:1fr;
            }

            .premium-service-strip{
                grid-template-columns:1fr;
            }

        }

        @media(max-width:576px){

            .product-main-image{
                height:340px;
            }

            .premium-spec-title{
                font-size:28px;
            }

            .review-media-image{
                width:100px;
                height:100px;
            }

            .review-media-slider{
                width:100px;
            }

        }
/* ======================================================
AMAZON ATTRIBUTE INFORMATION SECTION
====================================================== */

.amazon-attribute-wrapper{
    background:#fff;
    border-radius:26px;
    padding:35px;
    box-shadow:0 4px 24px rgba(0,0,0,0.05);
}

.amazon-attribute-header{
    margin-bottom:35px;
}

.amazon-attribute-title{
    font-size:42px;
    font-weight:800;
    color:#111827;
    margin-bottom:10px;
}

.amazon-attribute-subtitle{
    color:#6b7280;
    font-size:17px;
    margin-bottom:0;
}

/* ======================================================
ATTRIBUTE CARD
====================================================== */

.amazon-attribute-card{
    border:1px solid #e5e7eb;
    border-radius:20px;
    overflow:hidden;
    background:#fff;
    transition:0.3s;
}

.amazon-attribute-card:hover{
    box-shadow:0 8px 24px rgba(0,0,0,0.06);
}

.amazon-attribute-card-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 24px;
    background:#f9fafb;
    cursor:pointer;
    user-select:none;
}

.amazon-attribute-group-title{
    font-size:28px;
    font-weight:700;
    color:#111827;
    margin:0;
}

.amazon-attribute-arrow{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 2px 10px rgba(0,0,0,0.06);
    transition:0.3s;
}

.amazon-attribute-card.active
.amazon-attribute-arrow{
    transform:rotate(180deg);
}

/* ======================================================
BODY
====================================================== */

.amazon-attribute-card-body{
    display:block;
}

.amazon-attribute-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    border-top:1px solid #f1f1f1;
    transition:0.3s;
}

.amazon-attribute-row:hover{
    background:#fafafa;
}

.amazon-attribute-label{
    padding:16px 22px;
    font-size:15px;
    font-weight:500;
    color:#374151;
}

.amazon-attribute-value{
    padding:16px 22px;
    font-size:15px;
    font-weight:600;
    color:#111827;
}

/* ======================================================
RESPONSIVE
====================================================== */

@media(max-width:991px){

    .amazon-attribute-title{
        font-size:34px;
    }

    .amazon-attribute-group-title{
        font-size:24px;
    }

}

@media(max-width:768px){

    .amazon-attribute-wrapper{
        padding:24px;
    }

    .amazon-attribute-row{
        grid-template-columns:1fr;
    }

}

@media(max-width:576px){

    .amazon-attribute-title{
        font-size:28px;
    }

    .amazon-attribute-group-title{
        font-size:20px;
    }

    .amazon-attribute-card-header{
        padding:16px 18px;
    }

    .amazon-attribute-label,
    .amazon-attribute-value{
        padding:14px 18px;
        font-size:14px;
    }

}
/* ======================================================
VARIANT SWITCHING ENGINE
====================================================== */

.variant-switcher{
    position:relative;
    background:#fff8d7;
    border-radius:18px;
    padding:16px;
    cursor:pointer;
    border:2px solid transparent;
    transition:0.3s;
    overflow:hidden;
    min-height:120px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.variant-switcher:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 22px rgba(0,0,0,0.08);
}

.variant-switcher.active{
    border-color:#ff9800;
    background:#fff3cd;
    box-shadow:0 10px 28px rgba(255,152,0,0.18);
}

.variant-switcher.active::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#ff9800;
}

.variant-group-name{
    font-size:13px;
    font-weight:600;
    color:#666;
    margin-bottom:6px;
    text-transform:uppercase;
    letter-spacing:0.5px;
}

.variant-value{
    font-size:20px;
    font-weight:700;
    color:#111827;
    margin-bottom:10px;
}

.variant-stock{
    font-size:13px;
    color:#2e7d32;
    font-weight:600;
}

/* ======================================================
LIVE STATUS
====================================================== */

.live-product-status{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:25px;
}

.live-stock-status{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    color:#111827;
}

.status-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#2e7d32;
    animation:pulseStock 1.5s infinite;
}

@keyframes pulseStock{

    0%{
        transform:scale(1);
        opacity:1;
    }

    50%{
        transform:scale(1.4);
        opacity:0.5;
    }

    100%{
        transform:scale(1);
        opacity:1;
    }

}
/* ======================================================
AMAZON IMAGE ZOOM ENGINE
====================================================== */

.product-image-viewer{
    position:relative;
}

.image-zoom-container{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    background:#fff;
    cursor:crosshair;
}

.product-main-image{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:24px;
    display:block;
    transition:0.1s;
}

/* ======================================================
ZOOM LENS
====================================================== */

.zoom-lens{
    position:absolute;
    width:180px;
    height:180px;
    border:2px solid rgba(255,255,255,0.9);
    background:rgba(255,255,255,0.18);
    backdrop-filter:blur(3px);
    box-shadow:0 0 18px rgba(0,0,0,0.25);
    border-radius:18px;
    pointer-events:none;
    display:none;
    z-index:20;
}

/* ======================================================
ZOOM RESULT
====================================================== */

.zoom-result{
    position:absolute;
    top:0;
    left:105%;
    width:520px;
    height:650px;
    border-radius:24px;
    background-repeat:no-repeat;
    background-color:#fff;
    box-shadow:0 10px 40px rgba(0,0,0,0.18);
    overflow:hidden;
    display:none;
    z-index:999;
}

/* ======================================================
THUMBNAILS
====================================================== */

.thumbnail-slider{
    display:flex;
    gap:12px;
    overflow-x:auto;
    margin-top:18px;
    padding-bottom:5px;
}

.thumbnail-slider::-webkit-scrollbar{
    height:4px;
}

.thumbnail-slider::-webkit-scrollbar-thumb{
    background:#ccc;
    border-radius:20px;
}

.thumbnail-image{
    width:95px;
    height:95px;
    object-fit:cover;
    border-radius:18px;
    cursor:pointer;
    border:3px solid transparent;
    transition:0.3s;
    flex-shrink:0;
    background:#fff;
}

.thumbnail-image:hover{
    transform:translateY(-3px);
}

.thumbnail-image.active{
    border-color:#ff9800;
    box-shadow:0 6px 18px rgba(255,152,0,0.25);
}

/* ======================================================
RESPONSIVE
====================================================== */

@media(max-width:1400px){

    .zoom-result{
        width:420px;
    }

}

@media(max-width:1200px){

    .zoom-result{
        display:none !important;
    }

}

@media(max-width:768px){

    .product-main-image{
        height:420px;
    }

    .thumbnail-image{
        width:78px;
        height:78px;
    }

}

@media(max-width:576px){

    .product-main-image{
        height:340px;
    }

    .thumbnail-image{
        width:68px;
        height:68px;
        border-radius:14px;
    }

}
/* ======================================================
MOBILE IMAGE VIEWER
====================================================== */

.mobile-viewer-image{
    width:100%;
    max-width:900px;
    max-height:90vh;
    object-fit:contain;
}

/* ======================================================
DISABLE DESKTOP ZOOM ON MOBILE
====================================================== */

@media(max-width:1200px){

    .zoom-result{
        display:none !important;
    }

    .zoom-lens{
        display:none !important;
    }

    .image-zoom-container{
        cursor:pointer;
    }

}

/* From product-details_goood.php */

        body{
            background:#f8f9fa;
        }

        /* ======================================================
        PRODUCT TOP SECTION
        ====================================================== */

        .product-main-image{
            width:100%;
            height:600px;
            object-fit:cover;
            border-radius:18px;
            background:#fff;
        }

        .thumbnail-slider{
            display:flex;
            gap:10px;
            overflow-x:auto;
            margin-top:15px;
        }

        .thumbnail-slider::-webkit-scrollbar{
            height:4px;
        }

        .thumbnail-slider::-webkit-scrollbar-thumb{
            background:#ccc;
            border-radius:20px;
        }

        .thumbnail-image{
            width:90px;
            height:90px;
            object-fit:cover;
            border-radius:14px;
            cursor:pointer;
            border:2px solid transparent;
            transition:0.25s;
        }

        .thumbnail-image.active{
            border-color:#111;
        }

        .product-info-box{
            background:#fff;
            border-radius:20px;
            padding:28px;
            box-shadow:0 4px 18px rgba(0,0,0,0.05);
        }

        .product-price{
            font-size:38px;
            font-weight:700;
            color:#e53935;
        }

        .product-old-price{
            font-size:22px;
            text-decoration:line-through;
            color:#999;
        }

        .variant-box{
            background:#fff8d7;
            border:1px solid #eee;
            border-radius:14px;
            padding:12px;
            text-align:center;
            transition:0.25s;
            cursor:pointer;
            margin-bottom:12px;
        }

        .variant-box:hover{
            background:#ffe082;
        }

        .cart-btn,
        .buy-btn{
            width:100%;
            padding:14px;
            border:none;
            border-radius:14px;
            color:#fff;
            font-weight:600;
        }

        .cart-btn{
            background:#111;
        }

        .buy-btn{
            background:#ff9800;
        }

        /* ======================================================
        BANNERS
        ====================================================== */

        .product-banner{
            height:420px;
            object-fit:cover;
            border-radius:20px;
        }

        /* ======================================================
        SPECIFICATIONS
        ====================================================== */

        .spec-card{
            background:#fff;
            border-radius:20px;
            padding:28px;
            box-shadow:0 4px 18px rgba(0,0,0,0.05);
        }

        .spec-table tr td{
            padding:14px;
            border-bottom:1px solid #eee;
        }

        /* ======================================================
        REVIEW SUMMARY
        ====================================================== */

        .review-summary-card{
            background:#fff;
            border-radius:20px;
            padding:28px;
            box-shadow:0 4px 18px rgba(0,0,0,0.06);
            position:sticky;
            top:100px;
        }

        .review-main-rating{
            font-size:58px;
            font-weight:700;
            line-height:1;
        }

        .review-stars{
            color:#ff9800;
            font-size:20px;
        }

        .rating-progress{
            height:8px;
            border-radius:30px;
            overflow:hidden;
            background:#ececec;
        }

        .rating-progress .progress-bar{
            background:#ff9800;
        }

        /* ======================================================
        PRECISE REVIEW CARD
        ====================================================== */

        .review-card{
            background:#fff;
            border-radius:24px;
            padding:24px;
            margin-bottom:18px;
            box-shadow:0 3px 14px rgba(0,0,0,0.05);
        }

        .review-left-section{
            padding-right:20px;
        }

        .review-right-section{
            border-left:1px solid #ececec;
            padding-left:20px;
        }

        /* ======================================================
        USER
        ====================================================== */

        .review-user-row{
            display:flex;
            align-items:flex-start;
            gap:14px;
            margin-bottom:14px;
        }

        .review-profile-circle{
            width:58px;
            height:58px;
            border-radius:50%;
            overflow:hidden;
            flex-shrink:0;
            background:#eef2ff;
        }

        .review-user-image{
            width:100%;
            height:100%;
            object-fit:cover;
        }

        .review-user-name{
            font-size:17px;
            font-weight:700;
            color:#111;
            margin-bottom:4px;
        }

        .review-date-rating{
            display:flex;
            align-items:center;
            gap:14px;
            flex-wrap:wrap;
            margin-bottom:8px;
        }

        .review-date{
            font-size:13px;
            color:#777;
        }

        .review-rating-row{
            display:flex;
            align-items:center;
            gap:8px;
        }

        .dynamic-stars{
            display:flex;
            gap:2px;
            color:#ff9800;
            font-size:16px;
        }

        .review-rating-value{
            font-size:14px;
            font-weight:700;
            color:#333;
        }

        .review-variant{
            display:inline-flex;
            align-items:center;
            background:#f3f4ff;
            color:#4b44d4;
            padding:5px 12px;
            border-radius:30px;
            font-size:12px;
            font-weight:600;
        }

        /* ======================================================
        REVIEW TEXT
        ====================================================== */

        .review-content-text{
            font-size:15px;
            line-height:1.8;
            color:#444;
            margin-bottom:18px;
        }

        /* ======================================================
        ACTIONS
        ====================================================== */

        .review-actions{
            display:flex;
            gap:12px;
        }

        .review-action-btn{
            border:none;
            background:#f4f4f4;
            padding:10px 16px;
            border-radius:14px;
            transition:0.25s;
            font-size:14px;
            font-weight:500;
        }

        .review-action-btn:hover{
            background:#111;
            color:#fff;
        }

        .review-action-btn.active{
            background:#111;
            color:#fff;
        }

        /* ======================================================
        RIGHT REVIEW MEDIA
        ====================================================== */

        .review-media-carousel{
            position:relative;
            display:flex;
            align-items:center;
            justify-content:center;
            gap:10px;
        }

        .review-media-slider{
            width:135px;
            overflow:hidden;
        }

        .review-media-track{
            display:flex;
            transition:0.35s ease;
        }

        .review-media-image{
            width:135px;
            height:135px;
            object-fit:cover;
            border-radius:18px;
            flex-shrink:0;
            cursor:pointer;
        }

        .review-media-nav{
            width:34px;
            height:34px;
            border:none;
            border-radius:50%;
            background:#fff;
            box-shadow:0 2px 10px rgba(0,0,0,0.1);
            transition:0.25s;
            flex-shrink:0;
        }

        .review-media-nav:hover{
            background:#111;
            color:#fff;
        }

        .mini-product-rating{
            text-align:center;
            margin-top:12px;
            color:#ff7a00;
            font-weight:700;
            font-size:20px;
        }

        /* ======================================================
        RELATED PRODUCTS
        ====================================================== */

        .related-card{
            border:none;
            border-radius:18px;
            overflow:hidden;
            background:#fff;
            box-shadow:0 2px 10px rgba(0,0,0,0.05);
            transition:0.25s;
            position:relative;
        }

        .related-card:hover{
            transform:translateY(-4px);
        }

        .related-image{
            height:260px;
            object-fit:cover;
        }

        .wishlist-btn{
            position:absolute;
            top:10px;
            right:10px;
            width:38px;
            height:38px;
            border:none;
            border-radius:50%;
            background:#fff;
        }

        /* ======================================================
        MODAL
        ====================================================== */

        .review-modal-image{
            width:100%;
            border-radius:14px;
        }

        /* ======================================================
        MOBILE
        ====================================================== */

        @media(max-width:991px){

            .review-right-section{
                border-left:none;
                border-top:1px solid #ececec;
                margin-top:20px;
                padding-top:20px;
                padding-left:0;
            }

        }

        @media(max-width:576px){

            .product-main-image{
                height:340px;
            }

            .review-card{
                padding:18px;
            }

            .review-profile-circle{
                width:48px;
                height:48px;
            }

            .review-content-text{
                font-size:14px;
            }

            .review-media-image{
                width:100px;
                height:100px;
            }

            .review-media-slider{
                width:100px;
            }

        }

    