/* Shared section CSS - loaded in head to prevent navigation FOUC */

/* ===== components/hero-section.php ===== */
/* =========================================
SECTION
========================================= */
.modern-hero-section{
    width:100%;

    padding:18px 0 10px;

    overflow:hidden;

    background:#ffffff;
}



/* =========================================
HERO WRAPPER
========================================= */
.hero-slider-wrapper{
    position:relative;

    width:100%;

    height:540px;

    border-radius:20px;

    overflow:hidden;

    background:#f5f5f5;
}



/* =========================================
SLIDER TRACK
========================================= */
.hero-slider-track{
    position:relative;

    width:100%;

    height:540px;
}



/* =========================================
HERO SLIDE
========================================= */
.hero-slide{
    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    opacity:0;

    visibility:hidden;

    transition:1s ease;
}



/* =========================================
ACTIVE SLIDE
========================================= */
.hero-slide.active{
    opacity:1;

    visibility:visible;

    z-index:2;
}



/* =========================================
SLIDE IMAGE
========================================= */
.hero-slide a{
    display:block;
    width:100%;
    height:100%;
}

.hero-slide img{
    width:100%;

    height:100%;

    object-fit:cover;

    transform:scale(1);

    transition:4s ease;
}



/* =========================================
ZOOM ANIMATION
========================================= */
.hero-slide.active img{
    transform:scale(1.07);
}



/* =========================================
NAV BUTTON
========================================= */
.hero-nav{
    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,0.95);

    color:#111;

    font-size:16px;

    cursor:pointer;

    z-index:5;

    background:rgba(255,255,255,.95);

    transition:0.3s ease;
}



/* =========================================
BUTTON HOVER
========================================= */
.hero-nav:hover{
    background:#f4a51c;

    color:#fff;

    transform:translateY(-50%) scale(1.08);
}



/* =========================================
PREV
========================================= */
.hero-prev{
    left:20px;
}



/* =========================================
NEXT
========================================= */
.hero-next{
    right:20px;
}



/* =========================================
DOTS
========================================= */
.hero-dots{
    position:absolute;

    bottom:22px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    align-items:center;

    gap:10px;

    z-index:5;
}



/* =========================================
DOT
========================================= */
.hero-dot{
    width:10px;

    height:10px;

    border-radius:50%;

    background:rgba(255,255,255,0.6);

    cursor:pointer;

    transition:0.3s ease;
}



/* =========================================
ACTIVE DOT
========================================= */
.hero-dot.active{
    width:34px;

    border-radius:30px;

    background:#f4a51c;
}



/* =========================================
RIGHT SIDE WRAPPER
========================================= */
.desktop-side-banners{
    display:flex;

    flex-direction:column;
}

.right-banner-wrapper{
    display:flex;

    flex-direction:column;

    gap:16px;

    flex:1 1 auto;

    width:100%;

    height:540px;

    min-height:0;
}



/* =========================================
SIDE BANNER
========================================= */
.side-banner{
    position:relative;

    overflow:hidden;

    border-radius:20px;

    flex:1 1 0;

    min-height:0;

    height:0;

    background:#f5f5f5;

    cursor:pointer;

    isolation:isolate;
}



/* =========================================
SIDE IMAGE
========================================= */
.side-banner a{
    display:block;
    width:100%;
    height:100%;
}

.side-banner img{
    display:block;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    transform:scale(1) translateZ(0);

    filter:brightness(1) saturate(1);

    backface-visibility:hidden;

    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.55s ease;
}



/* =========================================
HOVER: SMOOTH ZOOM
========================================= */
.side-banner:hover img{
    transform:scale(1.08) translateZ(0);

    filter:brightness(1.06) saturate(1.08);
}



/* =========================================
SOFT DEPTH OVERLAY
========================================= */
.side-banner::after{
    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        180deg,
        rgba(0,0,0,0) 42%,
        rgba(0,0,0,0.18) 100%
    );

    opacity:0;

    pointer-events:none;

    z-index:1;

    transition:opacity 0.5s ease;
}

.side-banner:hover::after{
    opacity:1;
}



/* =========================================
SHINE SWEEP
========================================= */
.side-banner::before{
    content:"";

    position:absolute;

    top:0;

    left:0;

    width:42%;

    height:100%;

    background:linear-gradient(
        105deg,
        transparent 0%,
        rgba(255,255,255,0.08) 38%,
        rgba(255,255,255,0.48) 50%,
        rgba(255,255,255,0.08) 62%,
        transparent 100%
    );

    transform:translateX(-220%) skewX(-18deg);

    pointer-events:none;

    z-index:2;

    transition:transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}



/* =========================================
SHINE HOVER
========================================= */
.side-banner:hover::before{
    transform:translateX(280%) skewX(-18deg);
}



/* =========================================
TABLET VIEW
HIDE RIGHT BANNERS
========================================= */
@media(max-width:991px){

    .desktop-side-banners{
        display:none;
    }

    .hero-slider-wrapper{
        height:430px;
    }

}



/* =========================================
MOBILE VIEW
========================================= */
@media(max-width:576px){

    .modern-hero-section{
        padding:10px 0;
    }

    .hero-slider-wrapper{
        height:220px;
        border-radius:14px;
    }

    .hero-slide img{
        object-fit: cover;
        object-position: center;
    }

    .hero-slide.active img{
        transform: none;
    }

    .hero-nav{
        width:38px;

        height:38px;

        font-size:14px;
    }

    .hero-prev{
        left:10px;
    }

    .hero-next{
        right:10px;
    }

    .hero-dots{
        bottom:12px;
    }

}


/* =========================================
TABLET VIEW
========================================= */
@media(max-width:991px){

    .hero-slider-track{
        height:430px;
    }

}



/* =========================================
MOBILE VIEW
========================================= */
@media(max-width:576px){

    .hero-slider-track{
        height:220px;
    }

}

/* ===== components/get-category.php ===== */
/* ==========================
SECTION
========================== */
.top-category-section{
   padding:36px 0 40px;
    background:#f7f7f7;
}

/* ==========================
WRAPPER
========================== */
.top-category-wrapper{
    display:flex;
    align-items:center;
    gap:30px;
}

/* ==========================
LEFT CONTENT
========================== */
.top-category-content{
    width:420px;
    min-width:420px;
}

.top-category-content h1{
    font-size:32px;
    font-weight:500;
    line-height:1.2;
    color:#111827;
   margin:0 0 15px;
    
}

.top-category-content p{
    font-size:15px;
    line-height:1.8;
    color:#6b7280;
    margin:0;
}


/* ==========================
CARD
========================== */
.category-card{
    background:#ffffff;
    border:1px solid #ececec;
    border-radius:14px;

    width:100%;
    aspect-ratio:1/1;

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

    text-align:center;
    text-decoration:none;

    transition:.3s ease;
    padding:15px;
}

.category-card:hover{
    transform:translateY(-5px);
    border-color:#f4a51c;
    box-shadow:0 12px 25px rgba(0,0,0,.08);
}

.category-card img{
    width:60px;
    height:60px;
    object-fit:contain;
    margin-bottom:12px;
}

.category-card p{
    color:#111827;
    font-size:14px;
    font-weight:600;
    margin:0;
}

.category-grid{
    flex:1;
    display:grid;
    grid-template-columns:repeat(6,minmax(100px,1fr));
    gap:16px;
}

/* ==========================
LAPTOP
========================== */
@media(max-width:1200px){

    .top-category-content{
        width:300px;
        min-width:260px;
    }

    .top-category-content h1{
        font-size:28px;
    }

    .category-grid{
        grid-template-columns:repeat(4,1fr);
    }

}

/* ==========================
TABLET
========================== */
@media(max-width:991px){

    .top-category-section{
        padding:32px 0 32px;
    }

    .top-category-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .top-category-content{
        width:100%;
        min-width:100%;
    }

    .category-grid{
        width:100%;
        grid-template-columns:repeat(3,1fr);
    }

}

/* ==========================
MOBILE
========================== */
@media(max-width:576px){

    .top-category-section{
        padding:28px 0;
    }

    .top-category-content h1{
        font-size:28px;
    }

    .category-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .category-card{
        padding:15px 8px;
    }

    .category-card img{
        width:42px;
        height:42px;
    }

   .category-card p{
    font-size: 13px;
}

}



/* ==========================
SMALL MOBILE
========================== */
@media(max-width:380px){

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

}

/* ===== components/special-offer-section.php ===== */
.special-offer-home {
    padding: 28px 0 36px;
    background: #fff;
    overflow: visible;
    position: relative;
    z-index: 28;
}

.so-home-layout {
    display: flex;
    align-items: stretch;
    gap: 32px;
}

.so-sale-col {
    width: 32%;
    flex-shrink: 0;
    min-width: 0;
}

.so-offer-col {
    width: 68%;
    min-width: 0;
    overflow: visible;
}

.so-sale-box {
    height: 100%;
    border: 1px solid #ff9900;
    background: #fff;
    padding: 18px 20px 16px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.so-sale-head,
.so-offer-head {
    display: flex;
    align-items: center;
    gap: 16px;
}

.so-sale-head {
    justify-content: space-between;
    margin-bottom: 8px;
}

.so-sale-head h2,
.so-offer-title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1a1a;
    white-space: nowrap;
}

.so-offer-title {
    position: relative;
    padding-bottom: 8px;
}

.so-offer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #ff9900;
}

.so-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.so-arrow {
    width: 26px;
    height: 26px;
    border: 0;
    background: none;
    color: #222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    padding: 0;
}

.so-arrow:hover {
    color: #ff9900;
}

.so-sale-slider {
    flex: 1 1 auto;
    min-height: 240px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.so-sale-slide {
    display: none;
}

.so-sale-slide.is-active {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
}

.special-offer-home .so-sale-col .product-card-holder {
    width: 100%;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

.special-offer-home .so-sale-col .product-card {
    background: #fff;
    position: relative;
    width: 100%;
    border: 0;
    box-shadow: none;
    padding: 8px 10px 10px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
}

.special-offer-home .so-sale-col .product-image-wrap {
    position: relative;
    overflow: hidden;
    background: #fff;
    flex: 1 1 auto;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.special-offer-home .so-sale-col .product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px 18px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.special-offer-home .so-sale-col .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: contain;
}

.special-offer-home .so-sale-col .product-card-holder:hover .main-img {
    opacity: 0;
    transform: scale(0.95);
}

.special-offer-home .so-sale-col .product-card-holder:hover .hover-img {
    opacity: 1;
    transform: scale(1.05);
}

.special-offer-home .so-sale-col .product-badge {
    display: none;
}

.special-offer-home .so-sale-col .product-content {
    padding-top: 6px;
    text-align: center;
}

.special-offer-home .so-sale-col .product-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
    line-height: 1.4;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.special-offer-home .so-sale-col .product-title:hover {
    color: #ff9900;
}

.special-offer-home .so-sale-col .product-category {
    font-size: 13px;
    color: #9a9a9a;
    margin-bottom: 8px;
    display: block;
}

.special-offer-home .so-sale-col .product-price {
    font-size: 20px;
    font-weight: 700;
    color: #ff9900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.special-offer-home .so-sale-col .product-price .old-price {
    color: #bdbdbd;
    font-weight: 500;
    font-size: 14px;
    text-decoration: line-through;
}

.special-offer-home .so-sale-col .hover-details-wrap {
    display: none;
}

.so-sale-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid #ececec;
}

.so-time-box {
    text-align: center;
}

.so-time-box strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #222;
    line-height: 1.1;
    margin-bottom: 4px;
}

.so-time-box span {
    font-size: 12px;
    color: #888;
    text-transform: capitalize;
}

.so-offer-head {
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8e8e8;
    flex-wrap: wrap;
}

.so-offer-filters {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.so-filter-tab {
    background: none;
    border: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b0b0b0;
    cursor: pointer;
    font-family: inherit;
}

.so-filter-tab:hover,
.so-filter-tab.active {
    color: #ff9900;
}

.so-offer-nav {
    margin-left: auto;
}

.so-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 16px;
    overflow: visible;
}

.special-offer-home .so-offer-col .product-card-holder {
    width: 100%;
    position: relative;
    height: auto;
}

.special-offer-home .so-offer-col .product-card {
    background: #fff;
    position: relative;
    width: 100%;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    z-index: 1;
    padding: 0 10px 12px;
    border: 1px solid transparent;
    box-sizing: border-box;
}

.special-offer-home .so-offer-col .product-image-wrap {
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
    border-radius: 2px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.special-offer-home .so-offer-col .product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.special-offer-home .so-offer-col .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: contain;
}

.special-offer-home .so-offer-col .product-card-holder:hover .main-img {
    opacity: 0;
    transform: scale(0.95);
}

.special-offer-home .so-offer-col .product-card-holder:hover .hover-img {
    opacity: 1;
    transform: scale(1.05);
}

.special-offer-home .so-offer-col .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #2e7d32;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 3;
}

.special-offer-home .so-offer-col .product-badge.hot {
    background: #ff3333;
}

.special-offer-home .so-offer-col .product-badge.sale {
    background: #ff9900;
}

.special-offer-home .so-offer-col .product-badge + .product-badge.sale {
    top: 36px;
}

.special-offer-home .so-offer-col .product-content {
    padding: 12px 4px 0;
    text-align: center;
}

.special-offer-home .so-offer-col .product-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
    line-height: 1.4;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.special-offer-home .so-offer-col .product-title:hover {
    color: #ff9900;
}

.special-offer-home .so-offer-col .product-category {
    font-size: 12px;
    color: #9a9a9a;
    margin-bottom: 6px;
    display: block;
}

.special-offer-home .so-offer-col .product-price {
    font-size: 15px;
    font-weight: 700;
    color: #ff9900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.special-offer-home .so-offer-col .product-price .old-price {
    color: #bdbdbd;
    font-weight: 500;
    font-size: 13px;
    text-decoration: line-through;
}

.special-offer-home .so-offer-col .hover-details-wrap {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.special-offer-home .so-offer-col .product-short-desc {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.special-offer-home .so-offer-col .actions-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
}

.special-offer-home .so-offer-col .action-icon-btn {
    color: #ff9900;
    font-size: 16px;
    text-decoration: none;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex: 0 0 28px;
}

.special-offer-home .so-offer-col .action-icon-btn:hover,
.special-offer-home .so-offer-col .action-icon-btn.wishlist-btn:hover i {
    color: #e08700;
}

.special-offer-home .so-offer-col .action-icon-btn.wishlist-btn.active,
.special-offer-home .so-offer-col .action-icon-btn.wishlist-btn.active i {
    color: #e63946;
}

.special-offer-home .so-offer-col .add-to-cart-btn {
    background: #ff9900;
    color: #fff;
    border: none;
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1;
    white-space: nowrap;
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: inherit;
    min-width: 0;
}

.special-offer-home .so-offer-col .add-to-cart-btn:hover {
    background: #e08700;
    color: #fff;
}

.so-offer-empty {
    text-align: center;
    color: #888;
    margin: 20px 0 0;
    font-size: 14px;
}

@media (min-width: 992px) {
    .special-offer-home .so-offer-col .product-card-holder {
        height: 320px;
    }

    .special-offer-home .so-offer-col .product-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .special-offer-home .so-offer-col .product-card-holder:hover {
        z-index: 50;
    }

    .special-offer-home .so-offer-col .product-card-holder:hover .product-card {
        z-index: 50;
        background: #fff;
        border-color: #eee;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
        transform: translateY(-5px);
        padding-bottom: 14px;
    }

    .special-offer-home .so-offer-col .product-card-holder:hover .hover-details-wrap {
        max-height: none;
        opacity: 1;
        overflow: visible;
        margin-top: 12px;
        padding: 10px 8px 4px;
        border-top: 1px solid #f5f5f5;
    }
}

@media (max-width: 1199px) {
    .so-home-layout {
        gap: 22px;
    }

    .so-sale-col {
        width: 34%;
    }

    .so-offer-col {
        width: 66%;
    }

    .so-time-box strong {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .special-offer-home {
        padding: 24px 0 28px;
    }

    .so-home-layout {
        flex-direction: column;
    }

    .so-sale-col,
    .so-offer-col {
        width: 100%;
    }

    .so-sale-box {
        max-width: 420px;
        margin: 0 auto;
        min-height: 520px;
    }

    .so-offer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .special-offer-home .so-offer-col .hover-details-wrap {
        opacity: 1;
        max-height: none;
        overflow: visible;
        margin-top: 10px;
        padding: 10px 4px 0;
        border-top: 1px solid #f5f5f5;
    }

    .special-offer-home .so-offer-col .product-short-desc {
        display: none;
    }

    .special-offer-home .so-offer-col .product-card {
        border: 1px solid #eee;
        padding: 8px 8px 12px;
    }

    .special-offer-home .so-offer-col .add-to-cart-btn {
        font-size: 11px;
        padding: 9px 10px;
        line-height: 1.3;
        min-height: 36px;
        letter-spacing: 0;
    }
}

@media (max-width: 767px) {
    .special-offer-home {
        padding: 24px 0 28px;
    }

    .so-offer-head {
        gap: 10px;
    }

    .so-offer-title,
    .so-sale-head h2 {
        font-size: 16px;
    }

    .so-filter-tab {
        font-size: 12px;
    }

    .so-offer-filters {
        gap: 14px;
    }

    .so-offer-nav {
        margin-left: 0;
    }

    .so-offer-grid {
        gap: 12px 10px;
    }

    .special-offer-home .so-offer-col .product-title {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 13px;
        min-height: 36px;
    }

    .special-offer-home .action-icon-btn[title="Quick View"] {
        display: none;
    }

    .special-offer-home .action-icon-btn.wishlist-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 4;
        width: 34px;
        height: 34px;
        flex: none;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
        font-size: 14px;
    }

    .special-offer-home .add-to-cart-btn,
    .special-offer-home .so-offer-col .add-to-cart-btn {
        width: 100%;
        flex: 1 1 100%;
        min-height: 40px;
        padding: 10px 8px;
        font-size: 12px;
        line-height: 1.3;
        letter-spacing: 0.2px;
        border-radius: 8px;
        white-space: nowrap;
        overflow: visible;
    }
}

@media (max-width: 480px) {
    .so-offer-filters {
        width: 100%;
        order: 3;
    }

    .so-offer-head {
        justify-content: space-between;
    }
}

/* ===== components/top-brands-slider.php ===== */
.brand-strip-section{
    padding: 28px 0;
    background:#fff;
}

.brand-strip{
    width:100%;
    overflow:hidden;

    border:1px solid #e5e7eb;
    border-radius:14px;

    padding:18px 0;
    background:#fff;
}

.brand-track{
    display:flex;
    align-items:center;
    gap:0; /* Gap zero kiya seamless animation ke liye */

    width:max-content;

    animation:brandMove 25s linear infinite; /* Speed thodi fast ki */
}

.brand-strip:hover .brand-track{
    animation-play-state:paused;
}

.brand-logo{
    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;
    padding: 0 25px; /* Spacing ab padding se handle hogi */
}

.brand-logo img{
    width:auto;
    max-width:140px;
    height:40px;

    object-fit:contain;

    transition:.3s ease;

    filter:grayscale(100%);
    opacity:.8;
}

.brand-logo:hover img{
    transform:scale(1.08);
    filter:none;
    opacity:1;
}

@keyframes brandMove{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* Tablet */
@media(max-width:992px){

    .brand-strip-section{
        padding: 24px 0;
    }

    .brand-track{
        animation-duration: 20s; /* Screen ke hisab se scroll speed optimize ki */
    }

    .brand-logo{
        padding: 0 20px; /* Gap ki jagah padding ki */
    }

    .brand-logo img{
        max-width:120px;
        height:36px;
    }

}

/* Mobile */
@media(max-width:768px){

    .brand-strip-section{
        padding: 22px 0;
    }

    .brand-track{
        animation-duration: 15s; /* Mobile par seamless scroll maintain rahega */
    }

    .brand-logo{
        padding: 0 15px; /* Gap ki jagah padding ki */
    }

    .brand-logo img{
        max-width:90px;
        height:28px;
    }

}

/* ===== components/all-products-section.php ===== */
.home-products-section {
    padding: 36px 0 28px;
    background: #fff;
    overflow: visible;
    position: relative;
    z-index: 30;
}

.home-products-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e8e8e8;
    flex-wrap: wrap;
}

.home-products-title {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 8px;
    white-space: nowrap;
}

.home-products-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #ff9900;
}

.home-products-filters {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.home-filter-tab {
    background: none;
    border: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #555;
    cursor: pointer;
    font-family: inherit;
}

.home-filter-tab:hover,
.home-filter-tab.active {
    color: #ff9900;
}

.home-products-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
}

.home-products-arrow {
    width: 28px;
    height: 28px;
    border: 0;
    background: none;
    color: #222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
}

.home-products-arrow:hover {
    color: #ff9900;
}

.home-products-viewport {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.home-products-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 22px;
    width: 100%;
    padding: 4px 0;
    overflow: visible;
    transition: transform 0.35s ease;
    box-sizing: border-box;
}

.home-products-section .product-card-holder {
    flex: 0 0 calc((100% - 88px) / 5);
    width: calc((100% - 88px) / 5);
    max-width: calc((100% - 88px) / 5);
    position: relative;
    height: auto;
    min-width: 0;
}

.home-products-section .product-card {
    background: #fff;
    position: relative;
    width: 100%;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    z-index: 1;
    padding: 10px 10px 14px;
    border: 1px solid transparent;
    box-sizing: border-box;
}

.home-products-section .product-image-wrap {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
    border-radius: 4px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.home-products-section .product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.home-products-section .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: contain;
}

@media (min-width: 992px) {
    .home-products-viewport {
        overflow-x: clip;
        overflow-y: visible;
        padding-bottom: 150px;
        margin-bottom: -130px;
    }

    .home-products-section .product-card-holder {
        height: 355px;
    }

    .home-products-section .product-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .home-products-section .product-card-holder:hover {
        z-index: 50;
    }

    .home-products-section .product-card-holder:hover .product-card {
        z-index: 50;
        background: #fff;
        border-color: #eee;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
        transform: translateY(-5px);
        padding-bottom: 16px;
    }

    .home-products-section .product-card-holder:hover .hover-details-wrap {
        max-height: none;
        opacity: 1;
        overflow: visible;
        margin-top: 12px;
        padding: 10px 6px 4px;
        border-top: 1px solid #f5f5f5;
    }
}

.home-products-section .product-card-holder:hover .main-img {
    opacity: 0;
    transform: scale(0.95);
}

.home-products-section .product-card-holder:hover .hover-img {
    opacity: 1;
    transform: scale(1.05);
}

.home-products-section .product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #2e7d32;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 3;
}

.home-products-section .product-badge.hot {
    background: #ff3333;
}

.home-products-section .product-badge.sale {
    background: #ff9900;
    top: 18px;
}

.home-products-section .product-badge + .product-badge.sale {
    top: 42px;
}

.home-products-section .product-content {
    padding: 15px 6px 0;
    text-align: center;
}

.home-products-section .product-title {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
    line-height: 1.4;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-products-section .product-title:hover {
    color: #ff9900;
}

.home-products-section .product-category {
    font-size: 12px;
    color: #9a9a9a;
    margin-bottom: 8px;
    display: block;
}

.home-products-section .product-price {
    font-size: 15px;
    font-weight: 700;
    color: #ff9900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.home-products-section .product-price .old-price {
    color: #bdbdbd;
    font-weight: 500;
    font-size: 13px;
    text-decoration: line-through;
}

.home-products-section .hover-details-wrap {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.home-products-section .product-short-desc {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-products-section .actions-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
}

.home-products-section .action-icon-btn {
    color: #ff9900;
    font-size: 16px;
    text-decoration: none;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex: 0 0 28px;
}

.home-products-section .action-icon-btn:hover,
.home-products-section .action-icon-btn.wishlist-btn:hover i {
    color: #e08700;
}

.home-products-section .action-icon-btn.wishlist-btn.active,
.home-products-section .action-icon-btn.wishlist-btn.active i {
    color: #e63946;
}

.home-products-section .add-to-cart-btn {
    background: #ff9900;
    color: #fff;
    border: none;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1;
    white-space: nowrap;
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: inherit;
    min-width: 0;
}

.home-products-section .add-to-cart-btn:hover {
    background: #e08700;
    color: #fff;
}

.home-products-empty {
    text-align: center;
    color: #888;
    margin: 20px 0 0;
    font-size: 14px;
}

@media (max-width: 1199px) {
    .home-products-section .product-card-holder {
        flex: 0 0 calc((100% - 66px) / 4);
        width: calc((100% - 66px) / 4);
        max-width: calc((100% - 66px) / 4);
    }
}

@media (max-width: 991px) {
    .home-products-section {
        padding: 32px 0 24px;
    }

    .home-products-header {
        gap: 12px;
    }

    .home-products-section .product-card-holder {
        flex: 0 0 calc((100% - 44px) / 3);
        width: calc((100% - 44px) / 3);
        max-width: calc((100% - 44px) / 3);
    }

    .home-products-section .hover-details-wrap {
        opacity: 1;
        max-height: none;
        overflow: visible;
        margin-top: 12px;
        padding: 10px 6px 0;
        border-top: 1px solid #f5f5f5;
    }

    .home-products-section .product-short-desc {
        display: none;
    }

    .home-products-viewport {
        overflow-x: auto;
        overflow-y: visible;
        clip-path: none;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .home-products-viewport::-webkit-scrollbar {
        display: none;
    }

    .home-products-slider {
        transform: none !important;
    }

    .home-products-section .product-card {
        border: 1px solid #eee;
        position: relative;
        padding-bottom: 12px;
    }

    .home-products-section .product-card-holder {
        height: auto;
    }

    .home-products-section .add-to-cart-btn {
        font-size: 11px;
        padding: 9px 10px;
        line-height: 1.3;
        min-height: 36px;
        letter-spacing: 0;
    }
}

@media (max-width: 767px) {
    .home-products-header {
        gap: 10px;
        justify-content: space-between;
    }

    .home-products-title {
        font-size: 18px;
    }

    .home-products-filters {
        width: 100%;
        order: 3;
        gap: 14px;
    }

    .home-products-nav {
        margin-left: 0;
    }

    .home-products-slider {
        gap: 12px;
    }

    .home-products-section .product-card-holder {
        flex: 0 0 calc((100% - 12px) / 2);
        width: calc((100% - 12px) / 2);
        max-width: calc((100% - 12px) / 2);
    }

    .home-products-section .product-card {
        padding: 8px 8px 12px;
    }

    .home-products-section .product-title {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 13px;
        min-height: 36px;
        line-height: 1.35;
    }

    .home-products-section .actions-row {
        gap: 0;
    }

    .home-products-section .action-icon-btn[title="Quick View"] {
        display: none;
    }

    .home-products-section .action-icon-btn.wishlist-btn {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 4;
        width: 34px;
        height: 34px;
        flex: none;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
        font-size: 14px;
    }

    .home-products-section .add-to-cart-btn {
        width: 100%;
        flex: 1 1 100%;
        min-height: 40px;
        padding: 10px 8px;
        font-size: 12px;
        line-height: 1.3;
        letter-spacing: 0.2px;
        border-radius: 8px;
        white-space: nowrap;
        overflow: visible;
    }

    .home-filter-tab {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .home-products-section {
        padding: 28px 0 24px;
    }

    .home-products-section .add-to-cart-btn {
        min-height: 42px;
        font-size: 12px;
        padding: 11px 8px;
    }
}

/* ===== components/double-banner.php ===== */
/* ===========================
SECTION
=========================== */

.promo-banner-section{
    padding:20px 0 24px;
    margin: 0;
    position: relative;
    z-index: 26;
}

/* ===========================
GRID
=========================== */

.promo-banner-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    align-items: stretch;
}

/* ===========================
BANNER
=========================== */

.promo-banner{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:12px;
    height:auto;
    background:transparent;
    cursor:pointer;
    isolation:isolate;
    transform:translateY(0);
    box-shadow:0 8px 22px rgba(17,17,17,0.06);
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.55s ease;
}

/* ===========================
IMAGE
=========================== */

.promo-banner img{
    width:100%;
    height:auto;
    max-width:100%;
    object-fit:contain;
    object-position:center;
    display:block;
    transform:scale(1) translateZ(0);
    filter:brightness(1) saturate(1);
    backface-visibility:hidden;
    border-radius:12px;
    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.55s ease;
}



/* ===========================
HOVER EFFECTS
=========================== */

.promo-banner:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(17,17,17,0.14);
}

.promo-banner:hover img{
    transform:scale(1.06) translateZ(0);
    filter:brightness(1.05) saturate(1.08);
}

.promo-banner::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:12px;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,0) 45%,
        rgba(0,0,0,0.16) 100%
    );
    opacity:0;
    pointer-events:none;
    z-index:1;
    transition:opacity 0.5s ease;
}

.promo-banner:hover::after{
    opacity:1;
}

.promo-banner::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:42%;
    height:100%;
    background:linear-gradient(
        105deg,
        transparent 0%,
        rgba(255,255,255,0.08) 38%,
        rgba(255,255,255,0.48) 50%,
        rgba(255,255,255,0.08) 62%,
        transparent 100%
    );
    transform:translateX(-220%) skewX(-18deg);
    pointer-events:none;
    z-index:3;
    transition:transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.promo-banner:hover::before{
    transform:translateX(280%) skewX(-18deg);
}

/* ===========================
TABLET
=========================== */

@media(max-width:992px){

    .promo-banner-section{
        padding:18px 0;
        margin:0;
    }

    .promo-banner,
    .promo-banner img{
        height:auto;
    }

}

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

@media(max-width:768px){

    .promo-banner-section{
        padding:16px 0 20px;
        margin:0;
    }

    .promo-banner-grid{
        grid-template-columns:1fr;
        gap:12px;
    }

    .promo-banner{
        height:auto;
        overflow:hidden;
        box-shadow:none;
        transform:none;
    }

    .promo-banner img{
        width:100%;
        height:auto;
        max-height:none;
        object-fit:contain;
        transform:none;
        filter:none;
    }

    .promo-banner:hover{
        transform:none;
        box-shadow:none;
    }

    .promo-banner:hover img{
        transform:none;
        filter:none;
    }

    .promo-banner:hover::before,
    .promo-banner:hover::after{
        transform:translateX(-220%) skewX(-18deg);
        opacity:0;
    }

}

/* ===== components/hotspot-section.php ===== */
.hotspot-section{
    width:100%;
    padding:40px 0;
    position:relative;
    z-index:25;
    overflow:visible;
}

.hotspot-inner{
    display:flex;
    align-items:stretch;
    overflow:visible;
}

.hotspot-left{
    width:30%;
    background:#f7f7f7;
    padding:50px 40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    min-width:0;
}

.hotspot-left h2{
    font-size:42px;
    margin:0 0 15px;
    color:#222;
}

.hotspot-left p{
    color:#666;
    line-height:28px;
    margin:0 0 30px;
}

.hotspot-countdown{
    display:flex;
    justify-content:space-between;
    gap:8px;
    width:100%;
}

.hotspot-time-box{
    flex:1;
    min-width:0;
    padding:12px 5px;
    border:1px solid #e5e5e5;
    border-radius:4px;
    text-align:center;
    background:#fff;
}

.hotspot-time-box:hover{
    border-color:#f5a623;
}

.hotspot-time-box h3{
    font-size:38px;
    font-weight:600;
    line-height:1;
    margin:0 0 6px;
    color:#222;
}

.hotspot-time-box span{
    font-size:13px;
    color:#888;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.hotspot-right{
    width:70%;
    position:relative;
    min-width:0;
    overflow:visible;
}

.hotspot-main-image{
    width:100%;
    height:650px;
    object-fit:cover;
    display:block;
}

.hotspot-section .hotspot{
    position:absolute;
    z-index:5;
}

.hotspot1{
    top:28%;
    left:22%;
}

.hotspot2{
    top:40%;
    left:65%;
}

.hotspot3{
    top:78%;
    left:50%;
}

.hotspot-pin{
    width:22px;
    height:22px;
    background:#f5a623;
    border-radius:50%;
    cursor:pointer;
    position:relative;
    z-index:2;
}

.hotspot-pin::before{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:22px;
    height:22px;
    border:2px solid #f5a623;
    border-radius:50%;
    transform:translate(-50%,-50%);
    animation:hotspotPulse 1.8s infinite;
}

@keyframes hotspotPulse{
    0%{
        transform:translate(-50%,-50%) scale(1);
        opacity:1;
    }
    100%{
        transform:translate(-50%,-50%) scale(3);
        opacity:0;
    }
}

.hotspot-product-popup{
    position:absolute;
    width:250px;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.3s ease;
    z-index:8;
}

.hotspot1 .hotspot-product-popup{
    top:50%;
    left:34px;
    transform:translateY(-50%);
    padding-left:8px;
}

.hotspot2 .hotspot-product-popup{
    top:50%;
    right:34px;
    left:auto;
    transform:translateY(-50%);
    padding-right:8px;
}

.hotspot3 .hotspot-product-popup{
    bottom:34px;
    left:50%;
    transform:translateX(-50%);
    padding-bottom:10px;
}

.hotspot-section .hotspot:hover,
.hotspot-section .hotspot.is-open{
    z-index:20;
}

.hotspot-section .hotspot:hover .hotspot-product-popup,
.hotspot-section .hotspot.is-open .hotspot-product-popup{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.hotspot-section .product-card-holder{
    width:100%;
    position:relative;
    height:auto;
}

.hotspot-section .product-card{
    background:#fff;
    position:relative;
    width:100%;
    border-radius:4px;
    display:flex;
    flex-direction:column;
    padding:10px 10px 14px;
    border:1px solid #eee;
    box-shadow:0 18px 40px rgba(0,0,0,0.14);
    box-sizing:border-box;
}

.hotspot-section .product-image-wrap{
    position:relative;
    overflow:hidden;
    background:#f8f8f8;
    border-radius:4px;
    aspect-ratio:1 / 1;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
}

.hotspot-section .product-image{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:8px;
    transition:opacity .4s ease, transform .4s ease;
}

.hotspot-section .hover-img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    object-fit:contain;
}

.hotspot-section .product-card-holder:hover .main-img{
    opacity:0;
    transform:scale(.95);
}

.hotspot-section .product-card-holder:hover .hover-img{
    opacity:1;
    transform:scale(1.05);
}

.hotspot-section .product-badge{
    position:absolute;
    top:16px;
    left:16px;
    background:#2e7d32;
    color:#fff;
    font-size:10px;
    font-weight:700;
    padding:3px 8px;
    text-transform:uppercase;
    border-radius:2px;
    z-index:3;
}

.hotspot-section .product-badge.hot{
    background:#ff3333;
}

.hotspot-section .product-badge.sale{
    background:#ff9900;
}

.hotspot-section .product-badge + .product-badge.sale{
    top:40px;
}

.hotspot-section .product-content{
    padding:12px 6px 0;
    text-align:left;
}

.hotspot-section .product-title{
    font-size:14px;
    font-weight:700;
    color:#111;
    margin-bottom:4px;
    line-height:1.4;
    text-decoration:none;
    display:block;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.hotspot-section .product-title:hover{
    color:#ff9900;
}

.hotspot-section .product-category{
    font-size:12px;
    color:#9a9a9a;
    margin-bottom:6px;
    display:block;
}

.hotspot-section .product-price{
    font-size:15px;
    font-weight:700;
    color:#ff9900;
    display:flex;
    align-items:center;
    gap:8px;
}

.hotspot-section .product-price .old-price{
    color:#bdbdbd;
    font-weight:500;
    font-size:13px;
    text-decoration:line-through;
}

.hotspot-section .hover-details-wrap{
    opacity:1;
    max-height:none;
    overflow:visible;
    margin-top:10px;
    padding-top:10px;
    border-top:1px solid #f5f5f5;
    text-align:center;
}

.hotspot-section .product-short-desc{
    font-size:12px;
    color:#777;
    line-height:1.5;
    margin-bottom:12px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.hotspot-section .actions-row{
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    width:100%;
}

.hotspot-section .action-icon-btn{
    color:#ff9900;
    font-size:16px;
    text-decoration:none;
    width:28px;
    height:28px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:none;
    border:none;
    padding:0;
    cursor:pointer;
    flex:0 0 28px;
}

.hotspot-section .action-icon-btn:hover,
.hotspot-section .action-icon-btn.wishlist-btn:hover i{
    color:#e08700;
}

.hotspot-section .action-icon-btn.wishlist-btn.active,
.hotspot-section .action-icon-btn.wishlist-btn.active i{
    color:#e63946;
}

.hotspot-section .add-to-cart-btn{
    background:#ff9900;
    color:#fff;
    border:none;
    padding:8px 10px;
    font-size:11px;
    font-weight:700;
    border-radius:20px;
    text-transform:uppercase;
    letter-spacing:.3px;
    line-height:1;
    white-space:nowrap;
    flex:1 1 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-family:inherit;
    min-width:0;
}

.hotspot-section .add-to-cart-btn:hover{
    background:#e08700;
    color:#fff;
}

@media(max-width:1199px){
    .hotspot-left{
        padding:40px 24px;
    }

    .hotspot-left h2{
        font-size:34px;
    }

    .hotspot-time-box h3{
        font-size:28px;
    }

    .hotspot-main-image{
        height:560px;
    }

    .hotspot-product-popup{
        width:230px;
    }
}

@media(max-width:991px){
    .hotspot-section{
        padding:36px 0;
    }

    .hotspot-inner{
        flex-direction:column;
    }

    .hotspot-left,
    .hotspot-right{
        width:100%;
    }

    .hotspot-left{
        text-align:center;
        padding:36px 24px;
    }

    .hotspot-main-image{
        height:480px;
    }
}

@media(max-width:768px){
    .hotspot-section{
        padding:32px 0;
    }

    .hotspot-left{
        padding:28px 16px;
    }

    .hotspot-left h2{
        font-size:28px;
    }

    .hotspot-left p{
        line-height:1.6;
        font-size:15px;
        margin-bottom:22px;
    }

    .hotspot-countdown{
        display:grid;
        grid-template-columns:repeat(4,1fr);
        gap:8px;
    }

    .hotspot-time-box h3{
        font-size:22px;
    }

    .hotspot-main-image{
        height:360px;
    }

    .hotspot-product-popup{
        width:200px;
    }

    .hotspot-section .product-short-desc{
        display:none;
    }

    .hotspot-section .action-icon-btn[title="Quick View"]{
        display:none;
    }

    .hotspot-section .action-icon-btn.wishlist-btn{
        position:absolute;
        top:10px;
        right:10px;
        z-index:4;
        width:32px;
        height:32px;
        flex:none;
        background:#fff;
        border-radius:50%;
        box-shadow:0 2px 8px rgba(0,0,0,0.12);
        font-size:13px;
    }

    .hotspot-section .add-to-cart-btn{
        width:100%;
        flex:1 1 100%;
        min-height:38px;
        font-size:11px;
        padding:9px 8px;
        line-height:1.3;
        letter-spacing:0;
        border-radius:8px;
        overflow:visible;
    }
}

@media(max-width:576px){
    .hotspot-countdown{
        grid-template-columns:repeat(2,1fr);
    }

    .hotspot-main-image{
        height:280px;
    }

    .hotspot-product-popup{
        width:180px;
    }

    .hotspot2 .hotspot-product-popup{
        right:0;
    }

    .hotspot1 .hotspot-product-popup{
        left:28px;
    }
}

/* ===== components/feature-steps.php ===== */
/* =========================================
SECTION
========================================= */

.feature-steps-section{
    padding: 40px 0;
    background:#f7f7f7;
}

/* =========================================
GRID
========================================= */

.feature-steps-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* =========================================
ITEM
========================================= */

.feature-step{
    display:flex;
    align-items:flex-start;
    gap:16px;
}

/* =========================================
NUMBER
========================================= */

.step-number{
    font-size:52px;
    font-weight:700;
    line-height:1;
    color:#f4a51c;
    flex-shrink:0;
}

/* =========================================
CONTENT
========================================= */

.step-content h3{
    margin:0 0 8px;
    font-size:22px;
    font-weight:600;
    color:#222;
    line-height:1.3;
}

.step-content p{
    margin:0;
    font-size:14px;
    line-height:1.7;
    color:#7a7a7a;
}

/* =========================================
LAPTOP
========================================= */

@media(max-width:1200px){

    .feature-steps-grid{
        gap:16px;
    }

    .step-number{
        font-size:46px;
    }

    .step-content h3{
        font-size:20px;
    }

}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

    .feature-steps-section{
        padding:32px 0;
    }

    .feature-steps-grid{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

}

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

@media(max-width:576px){

    .feature-steps-section{
        padding:28px 0;
    }

    .feature-steps-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .feature-step{
        gap:12px;
    }

    .step-number{
        font-size:40px;
    }

    .step-content h3{
        font-size:18px;
        margin-bottom:5px;
    }

    .step-content p{
        font-size:13px;
        line-height:1.6;
    }

}

/* ===== components/testimonials.php ===== */
.testimonial-section {
    width: 100%;
    padding: 56px 0;
    background: #f8f8f8;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.testimonial-heading {
    text-align: center;
    margin-bottom: 36px;
}

.testimonial-eyebrow {
    margin: 0 0 14px;
    color: #f4a51c;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.testimonial-heading h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.testimonial-heading h2::before,
.testimonial-heading h2::after {
    content: "";
    flex: 1;
    max-width: 180px;
    height: 1px;
    background: #dcdcdc;
}

.testimonial-heading h2 > span {
    flex-shrink: 0;
}

.testimonial-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc((100% - 60px) / 3);
    width: calc((100% - 60px) / 3);
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-sizing: border-box;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-user img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-user-info h4 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.testimonial-user-info > span {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 4px;
}

.testimonial-user-info .stars {
    color: #f4b400;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1;
}

.testimonial-quote {
    position: relative;
    background: #fff;
    padding: 28px 26px;
    margin-top: 6px;
}

.testimonial-quote::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

.testimonial-quote p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.85;
}

/* Integrated line + tiny arrows (not separate button blocks) */
.testimonial-nav-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    width: 100%;
}

.testimonial-nav-line[hidden] {
    display: none !important;
}

.testimonial-nav-rule {
    flex: 1;
    height: 1px;
    background: #ddd;
}

.testimonial-arrow {
    flex-shrink: 0;
    width: auto;
    height: auto;
    padding: 4px 2px;
    border: 0;
    background: transparent;
    color: #b0b0b0;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
    color: #f4a51c;
    outline: none;
}

@media (max-width: 991px) {
    .testimonial-section {
        padding: 44px 0;
    }

    .testimonial-heading {
        margin-bottom: 28px;
    }

    .testimonial-heading h2 {
        font-size: 24px;
        gap: 16px;
    }

    .testimonial-heading h2::before,
    .testimonial-heading h2::after {
        max-width: 80px;
    }

    .testimonial-card {
        flex: 0 0 calc((100% - 24px) / 2);
        width: calc((100% - 24px) / 2);
    }

    .testimonial-slider {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 36px 0;
    }

    .testimonial-heading {
        margin-bottom: 24px;
    }

    .testimonial-heading h2 {
        font-size: 20px;
        gap: 12px;
    }

    .testimonial-heading h2::before,
    .testimonial-heading h2::after {
        max-width: 40px;
    }

    .testimonial-card {
        flex: 0 0 100%;
        width: 100%;
    }

    .testimonial-slider {
        gap: 0;
    }

    .testimonial-nav-line {
        margin-top: 22px;
    }
}

@media (max-width: 480px) {
    .testimonial-heading h2 {
        font-size: 18px;
    }

    .testimonial-user img {
        width: 60px;
        height: 60px;
    }

    .testimonial-quote {
        padding: 22px 18px;
    }
}

/* ===== components/top-brands.php ===== */
.top-brand-section{
    width:100%;
    padding:48px 0;
}

.brand-container{
    width:100%;
    margin:0;
    background:#fff;
    border:1px solid #ececec;
    border-radius:20px;
    padding:30px;
    overflow:hidden;
}

.brand-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:30px;
}

.brand-header h3{
    margin:0;
    color:#111827;
    font-size:clamp(22px,4vw,42px);
    font-weight:600;
    line-height:1.2;
}

.brand-nav{
    display:flex;
    gap:12px;
}

.brand-nav button{
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#f5f5f5;
    cursor:pointer;
    transition:.3s;
}

.brand-nav button:hover{
    background:#f4a51c;
    color:#fff;
}

.brand-slider-wrapper{
    overflow:hidden;
    width:100%;
}

.brand-slider{
    display:flex;
    gap:20px;
    transition:transform .5s ease;
}

.brand-item{
    flex:0 0 calc((100% - 100px)/6);
    max-width:calc((100% - 100px)/6);
    height:90px;
    border:1px solid #ececec;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:15px;
    background:#fff;
}

.brand-item img{
    max-width:100%;
    max-height:45px;
    object-fit:contain;
    transition:.3s;
}

.brand-item:hover img{
    transform:scale(1.05);
}

/* Tablet */

@media(max-width:991px){

    .top-brand-section{
        padding:36px 0;
    }

    .brand-item{
        flex:0 0 calc((100% - 60px)/4);
        max-width:calc((100% - 60px)/4);
    }

}

/* Mobile */

@media(max-width:768px){

    .top-brand-section{
        padding:32px 0;
    }

    .brand-container{
        padding:20px;
    }

    .brand-header{
        display:flex;
        align-items:center;
        justify-content:space-between;
        flex-direction:row;
        gap:12px;
        margin-bottom:20px;
    }

    .brand-header h3{
        font-size:18px;
        line-height:1.3;
        margin:0;
        flex:1;
    }

    .brand-nav{
        flex-shrink:0;
        gap:8px;
    }

    .brand-nav button{
        width:38px;
        height:38px;
    }

    .brand-item{
        flex:0 0 calc((100% - 20px)/2);
        max-width:calc((100% - 20px)/2);
        height:80px;
    }

}
/* Small Mobile */

@media(max-width:480px){

    .brand-nav button{
        width:40px;
        height:40px;
    }

    .brand-item{
        height:75px;
    }

}

/* ===== components/cart-drawer.php ===== */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10050;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.cart-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 100%;
    height: 100%;
    height: 100dvh;
    background: #ffffff;
    z-index: 10051;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s ease;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
    font-family: 'Open Sans', 'Poppins', sans-serif;
}
.cart-drawer.open {
    transform: translateX(0);
    visibility: visible;
}
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 18px 22px;
    border-bottom: 1px solid #eeeeee;
    flex-shrink: 0;
}
.cart-drawer-close {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: none;
    padding: 0;
    color: #9a9a9a;
    font-size: 13px;
    cursor: pointer;
    line-height: 1;
}
.cart-drawer-close:hover {
    color: #333333;
}
.cart-drawer-close-x {
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
}
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}
.cart-drawer-empty {
    padding: 48px 22px;
    text-align: center;
    color: #888888;
    font-size: 14px;
}
.cart-drawer-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid #eeeeee;
    position: relative;
}
.cart-drawer-thumb {
    width: 70px;
    height: 80px;
    object-fit: contain;
    background: #fafafa;
    flex-shrink: 0;
}
.cart-drawer-item-info {
    flex: 1;
    min-width: 0;
    padding-right: 18px;
}
.cart-drawer-item-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    text-decoration: none;
    margin-bottom: 10px;
    line-height: 1.35;
}
.cart-drawer-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e2e2e2;
    height: 32px;
    margin-bottom: 8px;
}
.cart-drawer-qty button {
    width: 28px;
    height: 30px;
    border: none;
    background: none;
    color: #777777;
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
}
.cart-drawer-qty button:hover {
    color: #111111;
}
.cart-drawer-qty span {
    min-width: 28px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #333333;
}
.cart-drawer-item-price {
    color: #f3a628;
    font-size: 13px;
    font-weight: 600;
}
.cart-drawer-remove {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 22px;
    height: 22px;
    border: none;
    background: none;
    color: #c5c5c5;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}
.cart-drawer-remove:hover {
    color: #ff4444;
}
.cart-drawer-footer {
    flex-shrink: 0;
    padding: 18px 22px 22px;
    border-top: 1px solid #eeeeee;
    background: #ffffff;
}
.cart-drawer-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 15px;
    color: #333333;
}
.cart-drawer-subtotal strong {
    color: #f3a628;
    font-size: 18px;
    font-weight: 700;
}
.cart-drawer-shipping-msg {
    margin: 0 0 10px;
    font-size: 13px;
    color: #666666;
    line-height: 1.4;
}
.cart-drawer-progress {
    height: 8px;
    background: #f0f0f0;
    overflow: hidden;
    margin-bottom: 16px;
}
.cart-drawer-progress-fill {
    height: 100%;
    width: 0;
    background: repeating-linear-gradient(
        45deg,
        #f3a628,
        #f3a628 8px,
        #e99b1c 8px,
        #e99b1c 16px
    );
    transition: width 0.4s ease;
}
.cart-drawer-view-btn,
.cart-drawer-checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 13px 16px;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cart-drawer-view-btn {
    background: #ffffff;
    color: #242424;
    border: 1px solid #dddddd;
    margin-bottom: 10px;
}
.cart-drawer-view-btn:hover {
    background: #f7f7f7;
    color: #242424;
}
.cart-drawer-checkout-btn {
    background: #f3a628;
    color: #ffffff;
    border: 1px solid #f3a628;
}
.cart-drawer-checkout-btn:hover {
    background: #da911b;
    border-color: #da911b;
    color: #ffffff;
}
body.cart-drawer-open {
    overflow: hidden;
}
@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
    }
}

/* ===== components/faq-section.php ===== */
/* =========================================
Google Font
========================================= */
/* =========================================
FAQ Inner Content
========================================= */
.faq-section{
    padding:56px 0;
}

.faq-inner{
    width:100%;
}



/* =========================================
FAQ Heading
========================================= */
.faq-heading{
    width:100%;
    margin:0 auto 36px;
    text-align:center;
}




/* =========================================
Small Heading
========================================= */
.faq-heading span{
    color:#d89022;

    font-size:13px;
     
    font-weight:500;

    letter-spacing:1px;

    text-transform:uppercase;
}



/* =========================================
Title Row
========================================= */
.faq-title-row{
    width:100%;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:25px;

    margin-top:15px;
}


/* =========================================
Heading Lines
========================================= */
.faq-line{
    flex:1;

    height:1px;

    background:#dddddd;
}



/* =========================================
Main Title
========================================= */
.faq-title-row h2{
    margin:0;

    font-size:36px;

    font-weight:700;

    color:#111;

    white-space:nowrap;

}

/* =========================================
FAQ Wrapper
========================================= */
.faq-wrapper{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:22px;
}


/* =========================================
FAQ Item
========================================= */
.faq-item{
    width:100%;

    background:#ffffff;

    border-radius:3px;

    overflow:hidden;

    box-shadow:0 3px 14px rgba(0,0,0,0.07);

    transition:0.3s ease;
}



/* =========================================
FAQ Hover
========================================= */
.faq-item:hover{
    transform:translateY(-2px);
}



/* =========================================
Question Area
========================================= */
.faq-question{
    width:100%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    padding:28px 30px;

    cursor:pointer;

    transition:0.3s ease;
}



/* =========================================
Question Hover Color
========================================= */
.faq-item:hover .faq-question h3{
    color:#d89022;
}



/* =========================================
Question Text
========================================= */
.faq-question h3{
    margin:0;

    font-size:17px;

    font-weight:500;

    color:#111;

    line-height:1.7;

    transition:0.3s ease;
}



/* =========================================
Plus Icon
========================================= */
.faq-question span{
    font-size:30px;

    color:#c5c5c5;

    font-weight:300;

    flex-shrink:0;

    transition:0.3s ease;
}



/* =========================================
FAQ Answer
========================================= */
.faq-answer{
    width:100%;

    max-height:0;

    overflow:hidden;

    transition:max-height 0.4s ease;
}



/* =========================================
Answer Text
========================================= */
.faq-answer p{
    margin:0;

    padding:0 30px 30px;

    color:#666;

    font-size:15px;

    line-height:1.9;
}



/* =========================================
Active FAQ
========================================= */
.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

.faq-item.active .faq-question h3{
    color:#d89022;
}



/* =========================================
Tablet Responsive
========================================= */
@media(max-width:991px){

    .faq-section{
        padding:44px 0;
    }

    .faq-heading{
        margin-bottom:28px;
    }

    .faq-title-row h2{
        font-size:28px;
   
    }

}



/* =========================================
Mobile Responsive
========================================= */
@media(max-width:768px){

    .faq-section{
        padding:36px 0;
    }

    .faq-heading{
        margin-bottom:28px;
    }

    .faq-title-row{
        gap:15px;
    }

    .faq-title-row h2{
        font-size:22px;
    }

    .faq-question{
        padding:22px 20px;
    }

    .faq-question h3{
        font-size:15px;
    }

    .faq-answer p{
        padding:0 20px 24px;

        font-size:14px;
    }

}



/* =========================================
Small Mobile Responsive
========================================= */
@media(max-width:480px){

    .faq-line{
        display:none;
    }

    .faq-title-row h2{
        font-size:20px;

        text-align:center;
    }

    .faq-question span{
        font-size:22px;
    }

}