:root {
    --primary: #000000;
    --accent: #ff3f6c;
    --white: #ffffff;
    --off-white: #f5f5f6;
    --gray-light: #f5f5f5;
    --gray-mid: #eaeaec;
    --gray-dark: #282c3f;
    --text-muted: #696b79;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 12px;
    --figma-pink: #ff3f6c;
    --figma-orange: #ff8e53;
    --figma-red: #ff4d4d;
    --trending-bg: #f8f8f8;
    --spotlight-orange: #ff6b35;
    --brand-bg-1: #ffebf0;
    --brand-bg-2: #fff0e6;
    --brand-bg-3: #ffe8f0;
    --brand-bg-4: #f8e8ff;
    --brand-bg-5: #e6f3ff;
    --brand-bg-6: #e6ffe6;
}
/* Safe area insets for modern phones */
:root {
    --safe-area-inset-top: env(safe-area-inset-top, 0px);
    --safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);
    --status-bar-height: 24px;
}

/* Header with safe area */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    padding-top: max(12px, var(--safe-area-inset-top));
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* ⭐ important */
    gap: 8px;
    padding: 8px 0;
    width: 100%;
}

/* Bottom Navigation with safe area */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(65px + var(--safe-area-inset-bottom));
    background: white;
    display: flex !important;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    z-index: 1000;
    padding-bottom: var(--safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
}

.nav-item-figma {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #666;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    flex: 1;
    min-height: 48px;
    padding: 4px 0;
}

.page-content {
    padding-bottom: calc(65px + var(--safe-area-inset-bottom));
    min-height: 100vh;
}

@media (max-width: 375px) {
    .mobile-bottom-nav {
        height: calc(58px + var(--safe-area-inset-bottom));
    }
    
    .page-content {
        padding-bottom: calc(58px + var(--safe-area-inset-bottom));
    }
    
    .nav-item-figma span {
        font-size: 10px;
    }
    
    .nav-icon-box {
        width: 22px;
        height: 22px;
    }
}

@media (min-width: 390px) and (max-width: 428px) {
    .mobile-bottom-nav {
        height: calc(70px + var(--safe-area-inset-bottom));
    }
    
    .page-content {
        padding-bottom: calc(70px + var(--safe-area-inset-bottom));
    }
}
@supports (padding: max(0px)) {
    .site-header {
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
    }
    
    .mobile-bottom-nav {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
}

@media (display-mode: standalone) {
    .site-header {
        padding-top: max(12px, var(--status-bar-height));
    }
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    outline: none; 
}

body {
    font-family: 'Inter', sans-serif;
    color: #000;
    background-color: var(--white);
    line-height: 1.4;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

.container { 
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 16px; 
}
.profile-page .container {
    padding: 20px;
}
.site-header .container {
    padding: 0 16px !important;
}

/* Section spacing */
.section-container {
    margin-bottom: 30px;
}

.section-header.centered {
    text-align: left;
    margin-bottom: 15px;
    margin-top: 10px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-transform: none;
    letter-spacing: -0.5px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
} */

.mobile-search-figma {
    flex: 1;
    position: relative;
    background: #f5f5f5;
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 45px;
}

.mobile-search-figma input {
    width: 100%;
    padding: 10px 0;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #666;
}

.search-icon-figma {
    margin-right: 8px;
    color: #999;
    font-size: 16px;
}

.header-icons-figma {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-icon-btn {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
}

/* Hero Slider */
.hero-section {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    margin-bottom: 0;
    min-height: 400px;
}

.hero-slider {
    width: 100%;
    height: 400px;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-img-figma {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slide-content-figma {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 30px;
    text-align: left;
    color: white;
}

.slide-content-figma h1 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.slide-content-figma p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    font-weight: 400;
}

.shop-now-btn {
    background: white;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.dot.active {
    background: white;
    width: 20px;
    border-radius: 10px;
}

/* Categories Pills */
.categories-pills-section {
    padding: 20px 0 10px;
}

.categories-pills {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 5px 0 15px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    justify-content: space-between;
}

.categories-pills::-webkit-scrollbar {
    display: none;
}

.pill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 70px;
    cursor: pointer;
}

.pill-img-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8f8f8;
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pill-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pill-item span {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* ========== WHAT'S TRENDING - PERFECT CARD ========== */
.trending-section {
    padding: 20px 16px;
    background: #ffffff !important;
    width: 100%;
}

.section-header.centered {
    margin-bottom: 20px;
    padding-left: 0;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000 !important;
    letter-spacing: -0.3px;
    margin: 0;
}

.trending-slider-container {
    width: 100%;
    position: relative;
}

.trending-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    padding-right: 16px;
}

.trending-slider::-webkit-scrollbar {
    display: none;
}

.trending-card {
    flex: 0 0 auto;
    width: 300px;
    min-width: 300px;
    height: auto;
    min-height: 130px;
    background: linear-gradient(135deg, #fff8f0, #fff) !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    border-radius: 16px;
    padding: 16px 16px 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: none !important;
    transition: all 0.2s ease;
}
.trending-card-content {
    flex: 1;
    min-width: 0;
}
.trending-main {
    font-size: 20px;
    font-weight: 700;
    color: #000000 !important;
    line-height: 1.3;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: -0.2px;
    white-space: normal;  
    word-wrap: break-word;

}
.trending-sub {
    font-size: 13px;
    font-weight: 400;
    color: #666666 !important;
    margin-bottom: 10px;
    line-height: 1.4;
    white-space: normal;
}
.shop-now-link {
    font-size: 13px;  /* 11px → 13px */
    font-weight: 600;
    color: #000000 !important;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-decoration: none;
    border-bottom: 1px solid #000000 !important;
    padding-bottom: 2px;
    display: inline-block;
    background: transparent !important;
}

.trending-img-wrap {
    width: 85px;  /* 70px → 85px */
    height: 85px;
    min-width: 85px;
    background: #f8f8f8 !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.trending-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* HOVER EFFECT */
.trending-card:hover {
    border-color: #cccccc !important;
}

/* AUTO-SCROLL BORDER HIGHLIGHT */
.trending-slider.scrolling .trending-card {
    border-width: 2px !important;
}

.trending-slider.scrolling .trending-card:nth-child(1) { border-color: #ff3f6c !important; }
.trending-slider.scrolling .trending-card:nth-child(2) { border-color: #ff0000 !important; }
.trending-slider.scrolling .trending-card:nth-child(3) { border-color: #0066ff !important; }
.trending-slider.scrolling .trending-card:nth-child(4) { border-color: #ff3f6c !important; }
.trending-slider.scrolling .trending-card:nth-child(5) { border-color: #ff0000 !important; }
.trending-slider.scrolling .trending-card:nth-child(6) { border-color: #0066ff !important; }

/* PULSE ANIMATION */
@keyframes pulse {
    0% { border-color: #ff3f6c; }
    50% { border-color: #ff8a8a; }
    100% { border-color: #ff3f6c; }
}

.trending-slider.scrolling .trending-card {
    animation: pulse 1s infinite;
}

/* ========== STYLE SPOTLIGHT - PERFECT GRID ========== */
/* ========== STYLE SPOTLIGHT - HORIZONTAL SCROLL ONLY ========== */
.style-spotlight-section {
    padding: 30px 16px;
    background: #ffffff;
    width: 100%;
    overflow: hidden;  /* IMPORTANT */
}

.style-spotlight-section .section-header.centered {
    margin-bottom: 20px;
    padding-left: 0;
}

.style-spotlight-section .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000 !important;
    letter-spacing: -0.3px;
    margin: 0;
}

/* HORIZONTAL SCROLL CONTAINER - FLEX NOW */
.spotlight-grid {
    display: flex !important;  /* GRID HATAO, FLEX LAO */
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    padding-right: 16px;
    flex-wrap: nowrap;  /* WRAP NAHI HONA CHAHIYE */
}

.spotlight-grid::-webkit-scrollbar {
    display: none;
}

/* SPOTLIGHT CARD - FIXED WIDTH */
.spotlight-item {
    flex: 0 0 auto;
    width: 160px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

/* IMAGE CONTAINER */
.spotlight-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f8f8;
    border: 1px solid #f0f0f0;
}

.spotlight-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RATING BADGE */
.spotlight-rating {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: rgba(255,255,255,0.95);
    padding: 3px 6px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: center;
    gap: 2px;
    border: 1px solid #f0f0f0;
}

.spotlight-rating::before {
    content: "★";
    color: #ff3f6c;
    font-size: 11px;
    margin-right: 2px;
}

/* BRAND NAME */
.spotlight-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* PRODUCT NAME */
.spotlight-info .product-name {
    font-size: 12px;
    font-weight: 400;
    color: #666;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* PRICE SECTION */
.spotlight-price {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.spotlight-price .current {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

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

/* ========== OTHER SECTIONS ========== */
.spring-bloom-banner {
    width: 100%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 20px;
    margin: 20px 0;
    padding: 20px;
    color: white;
    box-sizing: border-box;
}
.spring-bloom-banner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.banner-tag-script {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 5px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.code-btn-figma {
    background: white;
    color: #ff3f6c;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.spring-bloom-banner h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.flat-offer-text {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.code-btn-figma {
    background: white;
    color: #ff3f6c;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.brands-marquee {
    background: #fff8f0;
    border-top: 1px solid rgba(255,63,108,0.3);
    border-bottom: 1px solid rgba(255,63,108,0.3);
    padding: 12px 0;
    overflow: hidden;
    margin: 30px 0;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    font-size: 14px;
    font-weight: 600;
    color: #ff3f6c;
    text-transform: uppercase;
    padding: 0 25px;
    letter-spacing: 0.5px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* Brands Grid */
.brands-grid-figma {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.brand-card-figma {
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.brand-card-figma:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.brand-card-figma:nth-child(1) { background: #ffe8f0; }
.brand-card-figma:nth-child(2) { background: #fff0e0; }
.brand-card-figma:nth-child(3) { background: #f0e8ff; }
.brand-card-figma:nth-child(4) { background: #e0f0ff; }
.brand-card-figma:nth-child(5) { background: #e8fff0; }
.brand-card-figma:nth-child(6) { background: #fff0e8; }

.brand-card-figma h4 {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.brand-card-figma p {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

/* Product Grid */
.product-grid-figma {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.product-card-figma {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.p-img-figma {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f8f8f8;
    position: relative;
    padding: 15px;
}

.p-img-figma img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.p-rating-figma {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,0.9);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.p-info-figma {
    padding: 12px;
}

.p-info-figma h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.p-price-figma {
    display: flex;
    align-items: center;
    gap: 8px;
}

.p-price-figma .current {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.p-price-figma .old {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

/* Circular Product Grid */
.circular-product-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 5px 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.circular-product-grid::-webkit-scrollbar {
    display: none;
}

.circular-item {
    min-width: 110px;
    text-align: center;
}

.circular-img-wrap {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8f8f8;
    margin-bottom: 10px;
    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.circular-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circular-item h4 {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.circular-item p {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

/* Home Upgrade Banner */
.home-upgrade-banner {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    margin: 30px 0;
    padding: 30px 20px;
    text-align: left;
    color: white;
}

.upgrade-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.upgrade-content p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.price-tag-figma {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Trust Strip */
.trust-strip-figma {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.trust-card-figma {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon-circle svg {
    width: 28px;
    height: 28px;
    stroke: #ff3f6c;
    stroke-width: 1.5;
    fill: none;
}

.trust-card-figma h4 {
    font-size: 14px;
    font-weight: 700;
    color: #282c3f;
    margin: 0;
}

.trust-card-figma p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .trust-strip-figma {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 16px;
        padding: 20px;
        margin: 20px 0;
    }
    
    .trust-card-figma {
        flex: 1;
        min-width: calc(25% - 12px);
    }
}

@media screen and (max-width: 768px) {
    .trust-strip-figma {
        flex-wrap: wrap;
        gap: 12px;
        padding: 16px;
    }
    
    .trust-card-figma {
        flex: 1;
        min-width: calc(25% - 9px);
    }
    
    .trust-icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .trust-icon-circle svg {
        width: 24px;
        height: 24px;
    }
    
    .trust-card-figma h4 {
        font-size: 12px;
    }
    
    .trust-card-figma p {
        font-size: 10px;
    }
}

@media screen and (max-width: 480px) {
    .trust-strip-figma {
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px;
    }
    
    .trust-card-figma {
        flex: 1;
        min-width: calc(25% - 7.5px);
    }
    
    .trust-icon-circle {
        width: 45px;
        height: 45px;
    }
    
    .trust-icon-circle svg {
        width: 22px;
        height: 22px;
    }
    
    .trust-card-figma h4 {
        font-size: 11px;
    }
    
    .trust-card-figma p {
        font-size: 9px;
    }
}.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(65px + var(--safe-area-inset-bottom));
    background: white;
    display: flex !important;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    z-index: 1000;
    padding-bottom: var(--safe-area-inset-bottom);
}

.nav-item-figma {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #666;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
}

.nav-item-figma.active {
    color: #ff3f6c;
}

.nav-icon-box {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

@media screen and (min-width: 1025px) {
    .site-footer {
        background: #ffffff;
        padding: 50px 0 30px;
        margin-top: 60px;
        border-top: 1px solid #eaeaea;
    }
    
    .site-footer .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-col h4 {
        font-size: 18px;
        font-weight: 600;
        color: #111;
        margin-bottom: 20px;
    }
    
    .footer-tagline {
        font-size: 14px;
        color: #666;
        margin: 15px 0 20px;
        line-height: 1.5;
    }
    
    .footer-location {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 0;
        border-top: 1px solid #eaeaea;
        border-bottom: 1px solid #eaeaea;
    }
    
    .footer-location svg {
        width: 18px;
        height: 18px;
        color: #ff3f6c;
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    .footer-location span {
        font-size: 13px;
        color: #666;
        line-height: 1.5;
        flex: 1;
    }
    
    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-col ul li {
        margin-bottom: 12px;
    }
    
    .footer-col ul li a {
        text-decoration: none;
        color: #555;
        font-size: 14px;
        transition: color 0.2s;
    }
    
    .footer-col ul li a:hover {
        color: #ff3f6c;
    }
    
    .social-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .social-link-item {
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        transition: all 0.2s;
    }
    
    .social-link-item:hover {
        transform: translateX(5px);
    }
    
    .social-link-item:hover .social-icon {
        background: #ff3f6c;
    }
    
    .social-link-item:hover .social-icon svg {
        stroke: white;
    }
    
    .social-link-item:hover span {
        color: #ff3f6c;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #f5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }
    
    .social-icon svg {
        width: 16px;
        height: 16px;
        stroke: #666;
        transition: all 0.3s;
    }
    
    .social-link-item span {
        font-size: 13px;
        color: #555;
        transition: color 0.2s;
    }
    
    .contact-info {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .contact-info li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .contact-info svg {
        width: 18px;
        height: 18px;
        color: #ff3f6c;
        flex-shrink: 0;
    }
    
    .contact-info a {
        text-decoration: none;
        color: #555;
        font-size: 14px;
        word-break: break-all;
    }
    
    .contact-info a:hover {
        color: #ff3f6c;
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid #eaeaea;
    }
    
    .footer-bottom p {
        font-size: 13px;
        color: #888;
        margin: 0;
    }
}

@media screen and (max-width: 1024px) {
    .site-footer {
        display: none !important;
    }
}

@media screen and (max-width: 1024px) {
    .site-footer {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .trending-card {
        width: 280px;  
        min-width: 280px;
        height: 120px;  
        padding: 14px 14px 14px 18px;
    }
    
    .trending-main {
        font-size: 18px;  
        -webkit-line-clamp: 2;
    }
    
    .trending-sub {
        font-size: 13px; 
        margin-bottom: 8px;
    }
    
    .trending-img-wrap {
        width: 75px;  
        height: 75px;
        min-width: 75px;
        padding: 6px;
    }
    
    .shop-now-link {
        font-size: 12px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .trending-card {
        width: 270px;
        min-width: 270px;
    }
    
    .spotlight-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (min-width: 769px) {
    .spotlight-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .spotlight-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1400px) {
    .trending-card {
        width: 300px;
        min-width: 300px;
    }
    
    .trending-main {
        font-size: 20px;
    }
    
    .trending-img-wrap {
        width: 90px;
        height: 90px;
        min-width: 90px;
    }
}

@media (min-width: 768px) {
    .container { padding: 0 30px; }
    .hero-slider { height: 500px; }
    .product-grid-figma { grid-template-columns: repeat(3, 1fr); }
    .brands-grid-figma { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .mobile-bottom-nav { display: none !important; }
}

@media (min-width: 1024px) {
    .hero-slider { height: 600px; }
    .product-grid-figma { grid-template-columns: repeat(4, 1fr); }
    .brands-grid-figma { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: repeat(5, 1fr); }
}
/* Footer - Sirf Desktop pe dikhe */
.site-footer {
    display: block;  /* Desktop pe dikhega */
}

/* Mobile view mein footer chhupao */
@media (max-width: 768px) {
    .site-footer {
        display: none !important;  /* Mobile pe chhupa do */
    }
}
.category-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.category-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.category-popup-content {
    background: white;
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.category-popup-overlay.active .category-popup-content {
    transform: scale(1);
}

.category-popup-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-popup-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.category-popup-close {
    font-size: 28px;
    cursor: pointer;
    color: #999;
}

.category-popup-body {
    padding: 16px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.subcategory-card {
    cursor: pointer;
    text-align: center;
}

.subcategory-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f8f8f8;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subcategory-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.subcategory-name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.popup-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 15px;
}
/* .header-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
} */

.header-logo {
    flex-shrink: 0;
}

.header-logo a {
    display: block;
    text-decoration: none;
}

.site-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.mobile-search-figma {
    flex: 1;
    display: flex;
    align-items: center;
    background: #f5f5f6;
    border-radius: 20px;
    padding: 8px 12px;
    min-width: 0;
}

.header-icons-figma {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .header-container {
        gap: 8px;
    }
    
    .site-logo {
        height: 35px;
        max-width: 100px;
    }
    
    .mobile-search-figma {
        padding: 6px 10px;
    }
}
/* .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 12px;
} */

/* .logo-search-container {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 12px;
    background: #f5f5f6;
    border-radius: 30px;
    padding: 4px 4px 4px 12px;
    border: 1px solid #e0e0e0;
} */

.header-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.site-logo {
    height: 35px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
}

.search-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 8px;
}

.search-wrapper input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 14px;
    padding: 8px 0;
    min-width: 0;
}

.search-wrapper input::placeholder {
    color: #999;
}

.search-icon {
    color: #666;
    font-size: 18px;
    padding: 8px 12px;
    background: transparent;
    border-left: 1px solid #e0e0e0;
    cursor: pointer;
}

.header-icons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.header-icon-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo-search-container {
        padding: 4px 4px 4px 10px;
    }
    
    .site-logo {
        height: 30px;
        max-width: 80px;
    }
    
    .search-wrapper input {
        font-size: 13px;
    }
    
    .search-icon {
        font-size: 16px;
        padding: 6px 10px;
    }
    
    .header-icons {
        gap: 8px;
    }
    
    .header-icon-btn {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .logo-search-container {
        gap: 6px;
    }
    
    .site-logo {
        height: 25px;
        max-width: 70px;
    }
    
    .search-wrapper input {
        font-size: 12px;
    }
    
    .search-icon {
        font-size: 14px;
        padding: 4px 8px;
    }
}
/* .header-container {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    width: 100%;
} */

.back-btn-header {
    background: none;
    border: none;
    font-size: 20px;  /* Chota kiya */
    cursor: pointer;
    width: 32px;      /* Chota kiya */
    height: 32px;     /* Chota kiya */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #333;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}

.back-btn-header:hover {
    background: #f5f5f5;
}

.logo-search-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f5f5f6;
    border-radius: 30px;
    padding: 4px 8px;
    border: 1px solid #e0e0e0;
    min-width: 0;
}

.header-logo {
    flex-shrink: 0;
    margin-right: 4px;
}

.site-logo {
    height: 30px;  /* Chota kiya */
    width: auto;
    max-width: 80px;
    object-fit: contain;
}

.search-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 4px;
    min-width: 0;
}

.search-wrapper input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 13px;  /* Chota kiya */
    padding: 6px 0;
    min-width: 0;
    width: 100%;
}

.search-icon {
    color: #666;
    font-size: 16px;  /* Chota kiya */
    padding: 6px 8px;
    border-left: 1px solid #e0e0e0;
    cursor: pointer;
    flex-shrink: 0;
}

.header-icons {
    display: flex;
    gap: 6px;  /* Gap kam kiya */
    flex-shrink: 0;
}

.header-icon-btn {
    background: none;
    border: none;
    font-size: 18px;  /* Chota kiya */
    cursor: pointer;
    padding: 4px;
    color: #333;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile ke liye aur chota */
@media (max-width: 480px) {
    .header-container {
        gap: 6px;
        padding: 6px 0;
    }
    
    .back-btn-header {
        font-size: 18px;
        width: 28px;
        height: 28px;
    }
    
    .site-logo {
        height: 25px;
        max-width: 70px;
    }
    
    .logo-search-container {
        padding: 3px 3px 3px 8px;
    }
    
    .search-wrapper input {
        font-size: 12px;
        padding: 4px 0;
    }
    
    .search-icon {
        font-size: 14px;
        padding: 4px 6px;
    }
    
    .header-icon-btn {
        font-size: 16px;
        width: 28px;
        height: 28px;
    }
}
@media (max-width: 360px) {
    .header-logo {
        display: none; 
    }
    
    .back-btn-header {
        width: 28px;
        height: 28px;
    }
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.view-all-link {
    color: #ff3f6c;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding: 4px 12px;
    border: 1px solid #ff3f6c;
    border-radius: 20px;
    transition: all 0.2s;
}

.view-all-link:hover {
    background: #ff3f6c;
    color: white;
}
.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 8px 0 16px;
    scrollbar-width: thin;
    scrollbar-color: #ff3f6c #f0f0f0;
    -webkit-overflow-scrolling: touch;
}

.horizontal-scroll::-webkit-scrollbar {
    height: 4px;
}

.horizontal-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background: #ff3f6c;
    border-radius: 10px;
}

.product-card-horizontal {
    min-width: 160px;
    max-width: 160px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.2s;
    cursor: pointer;
    flex-shrink: 0;
}

.product-card-horizontal:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(255,63,108,0.15);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    background: #f8f8f8;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-rating {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 12px;
    backdrop-filter: blur(2px);
}

.product-info {
    padding: 10px;
}

.product-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: #282c3f;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-price .current {
    font-size: 14px;
    font-weight: 700;
    color: #282c3f;
}

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

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #282c3f;
    margin: 0;
}

.view-all-link {
    color: #ff3f6c;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding: 4px 12px;
    border: 1px solid #ff3f6c;
    border-radius: 20px;
    transition: all 0.2s;
}

.view-all-link:hover {
    background: #ff3f6c;
    color: white;
}

@media (max-width: 480px) {
    .product-card-horizontal {
        min-width: 140px;
        max-width: 140px;
    }
    
    .section-title {
        font-size: 18px;
    }
}
.nav-item-figma {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #666;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-item-figma.active {
    color: #ff3f6c;
}

.nav-icon-box {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon-box svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.nav-item-figma.active svg {
    stroke: #ff3f6c;
}

.nav-item-figma span {
    font-size: 11px;
    font-weight: 500;
}

@media (max-width: 480px) {
    .nav-icon-box {
        width: 22px;
        height: 22px;
    }
    
    .nav-item-figma span {
        font-size: 10px;
    }
}
/* ===== APP LOADER ===== */

#app-loader{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:#ffffff;
display:flex;
align-items:center;
justify-content:center;
z-index:999999;
flex-direction:column;
}

.loader-logo{
width:80px;
margin-bottom:20px;
}

.spinner{
width:40px;
height:40px;
border:4px solid #eaeaec;
border-top:4px solid #ff3f6c;
border-radius:50%;
animation:loader-spin 1s linear infinite;
}

@keyframes loader-spin{
0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}
}


/* ===== WEB HEADER ONLY ===== */
@media screen and (min-width: 1025px) {
    .web-header {
        display: block !important;
        background: white;
        border-bottom: 1px solid #f0f0f0;
    }
    .site-header .header-container {
        display: none !important;
    }
    .top-bar {
        background: #ff3f6c;
        color: white;
        padding: 8px 0;
        text-align: center;
        font-size: 12px;
    }
    .main-header {
        max-width: 1200px;
        margin: 0 auto;
        padding: 15px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo-area {
        display: flex;
        align-items: center;
        gap: 30px;
    }
    .logo {
        font-size: 22px;
        font-weight: 800;
        color: #000;
        text-decoration: none;
    }
    .nav-menu {
        display: flex;
        gap: 20px;
    }
    .nav-item {
        color: #333;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
    }
    .search-area {
        flex: 1;
        max-width: 350px;
        margin: 0 20px;
    }
    .search-box {
        display: flex;
        background: #f5f5f5;
        border-radius: 20px;
        overflow: hidden;
    }
    .search-box input {
        flex: 1;
        padding: 8px 12px;
        border: none;
        background: transparent;
    }
    .search-box button {
        padding: 8px 15px;
        background: #ff3f6c;
        color: white;
        border: none;
        cursor: pointer;
    }
    .header-actions {
        display: flex;
        gap: 15px;
    }
    .action-link {
        color: #333;
        text-decoration: none;
        font-size: 13px;
    }
     .trending-section {
        padding: 30px 0 !important;
        background: #ffffff !important;
    }
    
    .trending-section .section-header.centered {
        margin-bottom: 25px !important;
        text-align: left !important;
    }
    
    .trending-section .section-title {
        font-size: 28px !important;
        font-weight: 800 !important;
        color: #282c3f !important;
        margin-bottom: 0 !important;
    }
    
    .trending-slider-container {
        width: 100% !important;
        overflow: visible !important;
    }
    
    .trending-slider {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 25px !important;
        overflow: visible !important;
        padding: 0 !important;
        scroll-behavior: auto !important;
    }
    
    .trending-card {
        width: 100% !important;
        min-width: auto !important;
        margin: 0 !important;
        padding: 20px !important;
        border: 1px solid #eaeaea !important;
        border-radius: 16px !important;
        background: white !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 15px !important;
        transition: all 0.3s ease !important;
    }
    
    .trending-card:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
        border-color: #ff3f6c !important;
    }
    
    .trending-card-content {
        flex: 1 !important;
    }
    
    .trending-main {
        font-size: 18px !important;
        font-weight: 700 !important;
        color: #282c3f !important;
        margin-bottom: 6px !important;
        line-height: 1.3 !important;
    }
    
    .trending-sub {
        font-size: 13px !important;
        color: #696b79 !important;
        margin-bottom: 12px !important;
        line-height: 1.4 !important;
    }
    
    .shop-now-link {
        font-size: 12px !important;
        font-weight: 600 !important;
        color: #ff3f6c !important;
        text-decoration: none !important;
        border-bottom: 1px solid #ff3f6c !important;
        padding-bottom: 2px !important;
        display: inline-block !important;
        transition: all 0.2s !important;
    }
    
    .shop-now-link:hover {
        color: #e6355a !important;
        border-bottom-color: #e6355a !important;
    }
    
    .trending-img-wrap {
        width: 85px !important;
        height: 85px !important;
        min-width: 85px !important;
        background: #f8f8f8 !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 8px !important;
    }
    
    .trending-img-wrap img {
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
    }
}

/* Tablet ke liye 3 columns */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .trending-slider {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }
}

/* Small desktop ke liye 3 columns */
@media screen and (min-width: 1025px) and (max-width: 1200px) {
    .trending-slider {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Large desktop ke liye 4 columns */
@media screen and (min-width: 1201px) {
    .trending-slider {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}


@media screen and (max-width: 1024px) {
    .web-header {
        display: none !important;
    }
}
/* ===== FORCE HEADER SWITCH ===== */
@media screen and (max-width: 1024px) {
    .web-header {
        display: none !important;
    }
    .site-header .header-container {
        display: flex !important;
    }
}

@media screen and (min-width: 1025px) {
    .web-header {
        display: block !important;
    }
    .site-header .header-container {
        display: none !important;
    }
}
/* ===== AJIO STYLE MEGA MENU ===== */
@media screen and (min-width: 1025px) {
    .nav-item {
        position: relative;
        cursor: pointer;
    }
    
    .mega-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        z-index: 1000;
        display: none;
        border-top: 1px solid #f0f0f0;
        max-height: 500px;
        overflow-y: auto;
    }
    
    .mega-menu.open {
        display: block;
    }
    
    .mega-menu-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 25px 30px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }
    
    .mega-menu-col h3 {
        font-size: 14px;
        font-weight: 700;
        color: #282c3f;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid #ff3f6c;
        padding-bottom: 8px;
        display: inline-block;
    }
    
    .mega-menu-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mega-menu-col li {
        margin-bottom: 10px;
    }
    
    .mega-menu-col a {
        text-decoration: none;
        color: #696b79;
        font-size: 13px;
        transition: all 0.2s;
        display: inline-block;
    }
    
    .mega-menu-col a:hover {
        color: #ff3f6c;
        transform: translateX(3px);
    }
    
    .mega-menu-col .view-all {
        color: #ff3f6c;
        font-weight: 600;
        margin-top: 12px;
        font-size: 12px;
        text-transform: uppercase;
        display: inline-block;
    }
}

@media screen and (max-width: 1024px) {
    .mega-menu {
        display: none !important;
    }
}
/* ===== ALL CATEGORIES MEGA MENU ===== */
@media screen and (min-width: 1025px) {
    .all-categories-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        z-index: 1000;
        display: none;
        border-top: 1px solid #f0f0f0;
        max-height: 500px;
        overflow-y: auto;
    }
    
    .all-categories-menu.open {
        display: block;
    }
    
    .all-categories-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 25px 30px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }
    
    .all-categories-col h3 {
        font-size: 14px;
        font-weight: 700;
        color: #282c3f;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid #ff3f6c;
        padding-bottom: 8px;
        display: inline-block;
    }
    
    .all-categories-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .all-categories-col li {
        margin-bottom: 10px;
    }
    
    .all-categories-col a {
        text-decoration: none;
        color: #696b79;
        font-size: 13px;
        transition: all 0.2s;
        display: inline-block;
    }
    
    .all-categories-col a:hover {
        color: #ff3f6c;
        transform: translateX(3px);
    }
    
    .all-categories-col .view-all {
        color: #ff3f6c;
        font-weight: 600;
        margin-top: 10px;
        font-size: 12px;
        text-transform: uppercase;
        display: inline-block;
    }
    
    /* Trigger button */
    .categories-trigger {
        cursor: pointer;
        position: relative;
    }
    
    .categories-trigger:hover {
        color: #ff3f6c;
    }
}

@media screen and (max-width: 1024px) {
    .all-categories-menu {
        display: none !important;
    }
}
/* ===== WEB BANNER ONLY - APP PE KOI ASAR NAHI ===== */
/* ===== WEB BANNER ONLY - APP PE KOI ASAR NAHI ===== */
@media screen and (min-width: 1025px) {
    /* Slider Container - HEIGHT KAM */
    .hero-slider {
        width: 100% !important;
        height: 280px !important;  /* 450px se 280px karo */
        max-width: 1280px !important;
        margin: 0 auto !important;
        position: relative !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
    }
    
    /* Banner Content */
    .slide-content-figma {
        position: absolute !important;
        bottom: 15% !important;  /* 20% se 15% karo */
        left: 5% !important;
        transform: none !important;
        z-index: 10 !important;
        background: transparent !important;
        padding: 15px 25px !important;  /* Kam padding */
        border-radius: 12px !important;
    }
    
    .slide-content-figma h1 {
        font-size: 28px !important;  /* 42px se 28px */
        font-weight: 800 !important;
        margin-bottom: 8px !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
    }
    
    .slide-content-figma p {
        font-size: 13px !important;  /* 16px se 13px */
        margin-bottom: 12px !important;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
    }
    
    /* Shop Now Button */
    .shop-now-btn {
        background: white !important;
        color: #000 !important;
        padding: 6px 20px !important;  /* Kam padding */
        border-radius: 30px !important;
        font-weight: 600 !important;
        font-size: 12px !important;
        border: none !important;
        cursor: pointer !important;
    }  
    /* Slider Dots */
    .slider-dots {
        bottom: 20px !important;
    }
    
    /* Mid Banners (Spring Bloom etc) */
    .spring-bloom-banner,
    .home-upgrade-banner {
        max-width: 1280px !important;
        margin: 30px auto !important;
        border-radius: 16px !important;
        overflow: hidden !important;
    }
    
    .spring-bloom-banner img,
    .home-upgrade-banner img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
    .hero-slider {
        height: 250px !important;
    }
    
    .slide-content-figma h1 {
        font-size: 24px !important;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .hero-slider {
        height: 280px !important;
    }
}

@media screen and (min-width: 1401px) {
    .hero-slider {
        height: 320px !important;
    }
}
/* ===== WEB BANNER FIX ===== */
@media screen and (min-width: 1025px) {
    /* Blue background hatao */
    .hero-section {
        background: transparent !important;
        min-height: auto !important;
        margin-top: 0 !important;
        margin-bottom: 30px !important;
        padding-top: 0 !important;
    }
    
    /* Slider Container */
    .hero-slider {
        width: 100% !important;
        height: 280px !important;
        max-width: 1280px !important;
        margin: 0 auto !important;
        position: relative !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        background: transparent !important;
    }
    
    /* Images */
    .slide-img-figma {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center 20% !important;

    }
    
    /* Content */
    .slide-content-figma {
        position: absolute !important;
        bottom: 15% !important;
        left: 5% !important;
        z-index: 10 !important;
        background: transparent !important;
        padding: 15px 25px !important;
    }
    
    .slide-content-figma h1 {
        font-size: 28px !important;
        font-weight: 800 !important;
        margin-bottom: 8px !important;
        color: white !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
    }
    
    .slide-content-figma p {
        font-size: 13px !important;
        margin-bottom: 12px !important;
        color: white !important;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
    }
    
    .shop-now-btn {
        background: white !important;
        color: #000 !important;
        padding: 6px 20px !important;
        border-radius: 30px !important;
        font-weight: 600 !important;
        font-size: 12px !important;
        border: none !important;
        cursor: pointer !important;
    }
}

/* Different screen sizes */
@media screen and (min-width: 1025px) and (max-width: 1200px) {
    .hero-slider {
        height: 240px !important;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .hero-slider {
        height: 280px !important;
    }
}

@media screen and (min-width: 1401px) {
    .hero-slider {
        height: 320px !important;
    }
}
/* ===== WEB ONLY STYLES - MOBILE PE KOI ASAR NAHI ===== */
@media screen and (min-width: 1025px) {
    /* Container Center */
    .container {
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
    }
    
    /* ===== HEADER ===== */
    .web-header {
        display: block !important;
        background: white;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }
    
    .site-header .header-container {
        display: none !important;
    }
    
    .top-bar {
        background: #ff3f6c;
        color: white;
        padding: 8px 0;
        text-align: center;
        font-size: 12px;
    }
    
    .main-header {
        max-width: 1200px;
        margin: 0 auto;
        padding: 12px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .logo-area {
        display: flex;
        align-items: center;
        gap: 30px;
    }
    
    .logo {
        font-size: 20px;
        font-weight: 800;
        color: #000;
        text-decoration: none;
        white-space: nowrap;
    }
    
    .nav-menu {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .nav-item {
        color: #333;
        text-decoration: none;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        white-space: nowrap;
    }
    
    .search-area {
        flex: 1;
        max-width: 300px;
        margin: 0 15px;
    }
    
    .search-box {
        display: flex;
        background: #f5f5f6;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid #eaeaec;
    }
    
    .search-box input {
        flex: 1;
        padding: 8px 12px;
        border: none;
        background: transparent;
        font-size: 12px;
    }
    
    .search-box button {
        padding: 8px 15px;
        background: #ff3f6c;
        color: white;
        border: none;
        cursor: pointer;
        font-size: 12px;
    }
    
    .header-actions {
        display: flex;
        gap: 15px;
    }
    
    .action-link {
        color: #333;
        text-decoration: none;
        font-size: 12px;
        font-weight: 500;
        white-space: nowrap;
    }
    
    /* ===== BANNER ===== */
    .hero-section {
        background: transparent !important;
        min-height: auto !important;
        margin: 20px 0 30px !important;
    }
    
    .hero-slider {
        width: 100% !important;
        height: 280px !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        position: relative !important;
    }
    
    .slide-img-figma {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .slide-content-figma {
        position: absolute !important;
        bottom: 15% !important;
        left: 5% !important;
        z-index: 10 !important;
        padding: 15px 25px !important;
    }
    
    .slide-content-figma h1 {
        font-size: 28px !important;
        font-weight: 800 !important;
        margin-bottom: 8px !important;
        color: white !important;
    }
    
    .slide-content-figma p {
        font-size: 13px !important;
        margin-bottom: 12px !important;
        color: white !important;
    }
    
    .shop-now-btn {
        background: white !important;
        color: #000 !important;
        padding: 6px 20px !important;
        border-radius: 30px !important;
        font-weight: 600 !important;
        font-size: 12px !important;
        border: none !important;
        cursor: pointer !important;
    }
    
    /* ===== CATEGORIES PILLS (Mobile style) ===== */
    .categories-pills {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 20px !important;
        overflow: visible !important;
        padding: 10px 0 20px !important;
    }
    
    /* ===== WHAT'S TRENDING ===== */
    .trending-section {
        padding: 20px 0 !important;
    }
    
    .trending-slider {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
        overflow: visible !important;
        padding: 0 !important;
    }
    
    .trending-card {
        width: 100% !important;
        min-width: auto !important;
    }
    
    /* ===== STYLE SPOTLIGHT ===== */
    .spotlight-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
        overflow: visible !important;
    }
    
    .spotlight-item {
        width: 100% !important;
    }
    
    /* ===== BRANDS GRID ===== */
    .brands-grid-figma {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    /* ===== DYNAMIC SECTIONS ===== */
    #dynamic-category-sections .horizontal-scroll {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
        overflow: visible !important;
    }
    
    .product-card-horizontal {
        width: 100% !important;
        min-width: auto !important;
        max-width: 100% !important;
    }
    
    /* ===== TRUST STRIP ===== */
    .trust-strip-figma {
        max-width: 800px !important;
        margin: 40px auto !important;
    }
    
    /* ===== HIDE MOBILE ELEMENTS ===== */
    .mobile-bottom-nav {
        display: none !important;
    }
    
    /* ===== SHOW FOOTER ===== */
    .site-footer {
        display: block !important;
    }
}

/* Tablet View */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .trending-slider {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .spotlight-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .brands-grid-figma {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    #dynamic-category-sections .horizontal-scroll {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
/* ===== WHAT'S TRENDING - SIRF HEADING ALIGNMENT ===== */
@media screen and (min-width: 1025px) {
    /* Sirf heading ko style spotlight ke equal lao */
    .trending-section {
        margin-top: 40px !important;
        padding-top: 0 !important;
    }
    
    .trending-section .section-header.centered {
        margin-bottom: 25px !important;
        padding-left: 0 !important;
        text-align: left !important;
    }
    
    .trending-section .section-title {
        font-size: 24px !important;
        font-weight: 700 !important;
        color: #000 !important;
        margin: 0 !important;
    }
    
    /* Grid - 4 columns fixed, card size waisa hi */
    .trending-slider {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
        overflow: visible !important;
        padding: 0 !important;
    }
    
    /* Card size mat badhao - jo pehle tha wahi rahega */
    .trending-card {
        width: 100% !important;
        min-width: auto !important;
        margin: 0 !important;
        /* padding, border, etc. jo pehle hai wahi rahega */
    }
    
    /* Hide 5th item */
    .trending-card:nth-child(n+5) {
        display: none !important;
    }
}

/* Tablet - 3 columns */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .trending-slider {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .trending-card:nth-child(n+4) {
        display: none !important;
    }
}
.nav-item-figma.active {
    color: #ff3f6c;
}

.nav-item-figma.active .nav-icon-box svg {
    stroke: #ff3f6c;
    fill: none;  
}

.nav-item-figma.active span {
    color: #ff3f6c;
    font-weight: 600;
}

@media (max-width: 768px) {

  .trending-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .trending-slider {
    padding-left: 16px;   
    padding-right: 16px;  
    width: 100vw;         
    margin-left: calc(-50vw + 50%);
  }

}
/* ===== PERFECT BANNER - AUTO FIT ON ALL DEVICES ===== */

/* Hero Slider - Image auto fit without cut */
.hero-section {
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: auto !important;
}

.hero-slider {
    width: 100%;
    position: relative;
    background: #f5f5f5;
    min-height: 200px;
}

.slide {
    position: relative;
    width: 100%;
    display: none;
}

.slide.active {
    display: block;
}

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

.slide-content-figma {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    padding: 20px;
    color: white;
}

.slide-content-figma h1 {
    font-size: 20px;
    margin-bottom: 5px;
}

.slide-content-figma p {
    font-size: 12px;
    margin-bottom: 10px;
}

.shop-now-btn {
    background: white;
    color: black;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    border: none;
    cursor: pointer;
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

@media (min-width: 768px) {
    .slide-content-figma h1 {
        font-size: 28px;
    }
    .slide-content-figma p {
        font-size: 14px;
    }
    .shop-now-btn {
        padding: 8px 24px;
        font-size: 13px;
    }
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.dot.active {
    background: white;
    width: 20px;
    border-radius: 10px;
}

/* ===== MID BANNERS - AUTO FIT ===== */
.spring-bloom-banner,
.home-upgrade-banner {
    width: 100%;
    position: relative;
    margin: 20px 0;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
}

.spring-bloom-banner img,
.home-upgrade-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Banner text overlay */
.spring-bloom-banner > div,
.home-upgrade-banner > div {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    padding: 20px;
    color: white;
}

.spring-bloom-banner h3,
.home-upgrade-banner h3 {
    font-size: clamp(18px, 5vw, 28px);
    margin: 5px 0;
}

.spring-bloom-banner p,
.home-upgrade-banner p {
    font-size: clamp(11px, 3vw, 14px);
    margin-bottom: 10px;
}

.code-btn-figma,
.price-tag-figma {
    background: white;
    color: #ff3f6c;
    border: none;
    padding: 6px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: clamp(10px, 2.5vw, 13px);
    cursor: pointer;
    display: inline-block;
}

/* ===== FIX FOR NO TEXT BANNERS ===== */
.spring-bloom-banner:has(> div:only-child) > div,
.home-upgrade-banner:has(> div:only-child) > div {
    display: none;
}
.hero-section {
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-slider {
    width: 100% !important;
    position: relative !important;
    background: #f5f5f5 !important;
}

.slide {
    position: relative !important;
    width: 100% !important;
    display: none !important;
}

.slide.active {
    display: block !important;
}

.slide-img-figma {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
}

/* Mobile - set fixed height for better look */
@media (max-width: 768px) {
    .hero-slider {
        height: 300px !important;
    }
    
    .slide-img-figma {
        height: 100% !important;
        object-fit: cover !important;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-slider {
        height: 350px !important;
    }
    
    .slide-img-figma {
        height: 100% !important;
        object-fit: cover !important;
    }
}

/* Desktop - fixed height, image cover */
@media (min-width: 1025px) {
    .hero-slider {
        height: 400px !important;
        max-width: 1200px !important;
        margin: 20px auto !important;
        border-radius: 16px !important;
        overflow: hidden !important;
    }
    
    .slide-img-figma {
        height: 100% !important;
        object-fit: cover !important;
    }
}

.slide-content-figma {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent) !important;
    padding: 15px 20px !important;
    color: white !important;
    z-index: 10 !important;
}

.slide-content-figma h1 {
    font-size: 18px !important;
    margin-bottom: 4px !important;
}

.slide-content-figma p {
    font-size: 11px !important;
    margin-bottom: 8px !important;
}

.shop-now-btn {
    background: white !important;
    color: black !important;
    padding: 5px 14px !important;
    border-radius: 30px !important;
    font-size: 10px !important;
    border: none !important;
    cursor: pointer !important;
}

.slider-dots {
    position: absolute !important;
    bottom: 8px !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 6px !important;
    z-index: 10 !important;
}

.dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.5) !important;
    cursor: pointer !important;
}

.dot.active {
    background: white !important;
    width: 16px !important;
    border-radius: 8px !important;
}

@media (min-width: 768px) {
    .slide-content-figma h1 {
        font-size: 24px !important;
    }
    .slide-content-figma p {
        font-size: 13px !important;
    }
    .shop-now-btn {
        padding: 8px 22px !important;
        font-size: 12px !important;
    }
}

@media (min-width: 1025px) {
    .slide-content-figma h1 {
        font-size: 28px !important;
    }
    .slide-content-figma p {
        font-size: 14px !important;
    }
    .shop-now-btn {
        padding: 10px 28px !important;
        font-size: 13px !important;
    }
}
.hero-section {
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-slider {
    width: 100% !important;
    position: relative !important;
    background: #f5f5f5 !important;
}

.slide {
    position: relative !important;
    width: 100% !important;
    display: none !important;
}

.slide.active {
    display: block !important;
}

.slide-img-figma {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.slide-content-figma {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent) !important;
    padding: 15px 20px !important;
    color: white !important;
    z-index: 10 !important;
}

.slide-content-figma h1 {
    font-size: 18px !important;
    margin-bottom: 4px !important;
}

.slide-content-figma p {
    font-size: 11px !important;
    margin-bottom: 8px !important;
}

.shop-now-btn {
    background: white !important;
    color: black !important;
    padding: 5px 14px !important;
    border-radius: 30px !important;
    font-size: 10px !important;
    border: none !important;
    cursor: pointer !important;
}

.slider-dots {
    position: absolute !important;
    bottom: 8px !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 6px !important;
    z-index: 10 !important;
}

.dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.5) !important;
    cursor: pointer !important;
}

.dot.active {
    background: white !important;
    width: 16px !important;
    border-radius: 8px !important;
}

@media (min-width: 768px) {
    .slide-content-figma h1 {
        font-size: 24px !important;
    }
    .slide-content-figma p {
        font-size: 13px !important;
    }
    .shop-now-btn {
        padding: 8px 22px !important;
        font-size: 12px !important;
    }
}

@media (min-width: 1025px) {
    .hero-slider {
        max-width: 1200px !important;
        margin: 20px auto !important;
        border-radius: 16px !important;
        overflow: hidden !important;
    }
    
    .slide-content-figma h1 {
        font-size: 28px !important;
    }
    
    .slide-content-figma p {
        font-size: 14px !important;
    }
    
    .shop-now-btn {
        padding: 10px 28px !important;
        font-size: 13px !important;
    }
}
#app-loader {
    display: none !important;
}
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-hero {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.skeleton-category {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.skeleton-card {
    width: 100%;
    height: 130px;
    border-radius: 16px;
}

.skeleton-product {
    width: 100%;
    height: 200px;
    border-radius: 12px;
}

.skeleton-brand {
    width: 100%;
    height: 140px;
    border-radius: 16px;
}

.skeleton-title {
    width: 200px;
    height: 28px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.skeleton-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 10px 0;
}

.skeleton-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.skeleton-container {
    background: #fff;
}

@media (max-width: 768px) {
    .skeleton-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .skeleton-hero {
        height: 250px;
    }
}
.nav-item-figma[href="/cart"], .action-link[href="/cart"] {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #ff3f6c;
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    z-index: 10;
}
@media screen and (min-width: 1025px) {
    .categories-pills {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 20px !important;
        padding: 10px 0 20px !important;
        justify-content: flex-start !important;
    }
    
    .pill-item {
        flex-shrink: 0;
    }
    
    .pill-item:nth-child(n+9) {
        display: none !important;
    }
}

@media screen and (min-width: 1025px) {
    .pill-item:nth-child(n+11) {
        display: none !important;
    }
}

@media screen and (max-width: 1024px) {
    .pill-item:nth-child(n+11) {
        display: flex !important;
    }
}
@media screen and (min-width: 1025px) {
    .categories-pills {
        gap: 32px !important;
    }
}

@media screen and (max-width: 1024px) {
    .categories-pills {
        gap: 24px !important;
    }
}
@media screen and (min-width: 1025px) {
    .brands-marquee {
        max-width: 1200px;
        margin: 30px auto;
        padding: 12px 0;
        overflow: hidden;
    }
    
    .marquee-content {
        display: inline-block;
        animation: marquee 25s linear infinite;
        white-space: nowrap;
        padding-left: 0;
        margin-left: 0;
    }
    
    .marquee-content span {
        font-size: 14px;
        font-weight: 600;
        color: #ff3f6c;
        text-transform: uppercase;
        padding: 0 25px;
        letter-spacing: 0.5px;
        display: inline-block;
    }
}

@media screen and (max-width: 1024px) {
    .brands-marquee {
        margin: 30px 0;
        overflow: hidden;
    }
    
    .marquee-content {
        padding-left: 0;
        margin-left: 0;
    }
}
.site-footer .footer-support-list li {
    font-size: 14px;
    font-weight: 400;
    color: #555;
    margin-bottom: 12px;
    cursor: default;
    list-style: none;
}

.site-footer .footer-support-list {
    padding: 0;
    margin: 0;
}

.site-footer .contact-info li span {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #555 !important;
    font-family: 'Inter', sans-serif !important;
    cursor: default;
}
.site-footer .contact-info li a {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #555 !important;
    font-family: 'Inter', sans-serif !important;
    text-decoration: none;
}

.site-footer .contact-info li a:hover {
    color: #ff3f6c !important;
}