
:root {
    --bg-dark: #0d0b19;
    --bg-darker: #0a0814;
    --primary: #ff3db0;
    --accent: #ffc107;
    --text: #ffffff;
    --muted: #c7c7d1;
    --card: #ffffff;
    --ink: #1a1a1f;
    --ring: #2a2440;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1200px, 92%); margin: 0 auto; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: linear-gradient(180deg, #0f0c22 0%, #0c0a18 100%); color: var(--text); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { font-weight: 800; letter-spacing: 0.5px; font-size: 22px; color: #fff; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 500; }
.nav-links a.active, .nav-links a:hover { color: #fff; }
.dropdown { position: relative; }
.dropbtn { background: transparent; color: var(--muted); border: 0; font: inherit; cursor: pointer; }
.dropdown-menu { position: absolute; top: calc(100% + 10px); left: 0; background: #1a172b; border: 1px solid #2a2740; border-radius: 10px; padding: 10px; display: none; min-width: 180px; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 8px 10px; color: #cfcfe4; border-radius: 6px; }
.dropdown-menu a:hover { background: #26223a; color: #fff; }
.login-btn { background: var(--primary); border: none; color: #fff; font-weight: 700; padding: 10px 18px; border-radius: 8px; cursor: pointer; }
.hamburger { 
    display: none; 
    width: 40px; 
    height: 40px; 
    border-radius: 8px; 
    border: 1px solid #2a2740; 
    background: #161327; 
    align-items: center; 
    justify-content: center; 
    gap: 4px; 
    flex-direction: column; 
    cursor: pointer;
    transition: all 0.3s ease;
}
.hamburger span { 
    display: block; 
    width: 20px; 
    height: 2px; 
    background: #fff;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger to X animation */
.hamburger.active {
    border-color: #ff3db0;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
.mobile-menu { 
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #0f0c22; 
    border-left: 1px solid #211d3c;
    padding: 60px 16px 16px;
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
}
.mobile-menu a { display: block; padding: 10px 4px; color: #e1def7; border-bottom: 1px solid #201c39; }
.mobile-menu a:last-child { border-bottom: 0; }
.login-mobile { color: #fff; font-weight: 700; }

/* Hero */
.hero { background: #0b0916; color: var(--text); position: relative; overflow: hidden; }
.banner-only { display: flex; justify-content: center; align-items: center; }
.banner-img { width: 100%; height: auto; display: block; }

/* Trending */
.trending { background: #fff; padding: 40px 0 70px; }
.trending .section-title { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 18px;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
}
.section-title h2 { font-size: 28px; margin: 0; }
.section-title h2 span { color: var(--primary); }
.section-title img { width: 120px; height: auto; }

.content-grid { display: grid; grid-template-columns: 280px 1fr; gap: 28px; }
.categories { background: #ffffff; border: 1px solid #f0e7f2; border-radius: 18px; padding: 18px; box-shadow: 0 8px 30px rgba(0,0,0,0.05); }
.categories h3 { margin: 0 0 14px; font-size: 18px; }
.categories ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.categories li { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    border: 0; 
    padding: 12px 16px; 
    border-radius: 14px; 
    color: #1f2a37; 
    cursor: pointer; 
    background: #ffeaf6; 
    transition: all .3s ease; 
}
.categories li:hover { 
    transform: translateY(-1px); 
    background: var(--primary); 
    color: #ffffff; 
}
.categories li.active { 
    background: var(--primary); 
    color: #ffffff; 
}
.categories .icon { 
    width: 36px; 
    height: 36px; 
    display: grid; 
    place-items: center; 
    background: var(--primary); 
    border-radius: 10px; 
    box-shadow: 0 2px 8px rgba(255,61,176,0.25); 
    transition: all .3s ease;
}
.categories li:hover .icon { 
    background: rgba(255,255,255,0.15); 
    box-shadow: none; 
}
.categories li.active .icon { 
    background: rgba(255,255,255,0.15); 
    box-shadow: none; 
}
/* Make all category icons white on pink background */
.categories .icon svg,
.categories .icon svg * { stroke: #ffffff !important; fill: none !important; }


.products { position: relative; }
.product-slider { position: relative; }
.slides { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { 
    background: var(--card); 
    border: 1px solid #ededf2; 
    border-radius: 14px; 
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.pill { display: inline-block; font-size: 12px; font-weight: 700; color: #fff; background: #2267ff; border: 1px solid #cedbff; padding: 4px 10px; border-radius: 999px; }
.brand-logo { height: 22px; width: auto; }
.product-media { 
    position: relative; 
    margin: 10px 14px; 
    border-radius: 10px; 
    background: #f7f8fb; 
    
    padding: 16px; 
    display: grid; 
    place-items: center; 
    height: 220px; 
    transition: all 0.3s ease;
}
.card:hover .product-media {
    background: #f0f8ff;
  
}
.product-media .pill.new { position: absolute; top: 10px; left: 10px; }
.product-media .brand-logo { position: absolute; top: 7px; height: 40px; left: 30%; }
.product-media img { width: 100%; height: 100%; max-height: 100%; object-fit: contain; }
.card-body { 
    padding: 16px 18px 20px; 
    display: flex; 
    gap: 12px; 
    flex-direction: column; 
    flex-grow: 1;
}
.price-top { color: #ffb703; display: flex; align-items: baseline; gap: 10px; }
.price-now { color: #ffb703; font-size: 16px; }
.price-old { color: #9aa0a8; text-decoration: line-through; }
.rating { color: #ffb703; font-size: 14px; }
.rating small { color: #76727f; }
.stars { letter-spacing: 2px; }
.color-swatches { display: flex; gap: 10px; }
.color-swatches button { 
    width: 14px; 
    height: 14px; 
    border-radius: 50%; 
    border: 0; 
    outline: 0; 
    background: var(--c); 
    box-shadow: 0 0 0 3px #fff, 0 0 0 4px #e6e7eb; 
    cursor: pointer; 
    transition: all 0.3s ease;
}
.color-swatches button:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px #ff3db0;
}
.sell-line { display: flex; align-items: baseline; justify-content: flex-start; gap: 8px; font-weight: 700; }
.card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
    line-height: 1.3;
}
.sell-line span { color: #1f2a37; font-weight: 600; }
.sell-line strong { color: #ff9f1c; }
.buy { 
    background: var(--primary); 
    color: #fff; 
    border: 0; 
    padding: 12px 16px; 
    border-radius: 8px; 
    font-weight: 700; 
    cursor: pointer; 
    transition: all 0.3s ease;
    font-size: 14px;
}
.buy:hover {
    background: #e91e63;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 61, 176, 0.3);
}
.buy.wide { width: 100%; border-radius: 8px; }

.slider-nav { display: none; }

.slider-dots { display: none; gap: 8px; justify-content: center; margin-top: 12px; }
.slider-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: #ffe3a1; cursor: pointer; }
.slider-dots button.active { background: #ffb703; width: 8px; height: 8px; border-radius: 50%; }

/* Mobile */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .login-btn { display: none; }
    .hamburger { display: flex; z-index: 1001; position: relative; }
    /* Show mobile menu when active class is added */
    .mobile-menu.active {
        display: block;
        right: 0;
    }
    .hero-grid { grid-template-columns: 1fr; padding: 24px 0 36px; }
    .hero-text h1 { font-size: 28px; }
    .hero-shape { position: absolute; inset: auto -20px -10px auto; width: 90%; max-width: 360px; }
    .content-grid { grid-template-columns: 1fr; }
    .slides { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 8px 6px; }
    .card { min-width: 88%; scroll-snap-align: center; margin: 0 auto; }
    .slider-nav { display: none; }
    .product-slider { display: grid; grid-template-columns: 1fr auto auto; align-items: center; }
    .slider-dots { display: flex; grid-column: 1 / -1; }

    /* CTA spacing tighter on mobile */
    .cta-hero { padding: 56px 0 120px; }

    /* Make features horizontally swipeable */
    .features-grid { display: flex; overflow-x: auto; gap: 14px; padding: 0 12px 10px; scroll-snap-type: x mandatory; }
    .features-grid::-webkit-scrollbar { display: none; }
    .feature-card { min-width: 260px; scroll-snap-align: center; }
}

/* Utility */
.hidden { display: none !important; }

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Overlay for when menu is open */
.mobile-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.active::before {
    opacity: 1;
    pointer-events: auto;
}

/* CTA + Features */
.cta-hero { 
    position: relative; 
    padding: 80px 0 250px; 
    color: #fff; 
    text-align: center; 
    background: #0b0916;
    background-attachment: fixed;
    background-image: url('images/cta.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.cta-hero::before { 
    content: ""; 
    position: absolute; 
    inset: 0; 
    background: rgba(11, 9, 22, 0.6);
    z-index: 1;
}
.cta-hero::after { 
    content: ""; 
    position: absolute; 
    inset: 0; 
    background: radial-gradient(1200px 420px at 50% 0%, rgba(255,61,176,0.20), transparent 65%); 
    z-index: 2;
}
.cta-hero > * { 
    position: relative; 
    z-index: 3; 
}
.hero-center { display: grid; gap: 14px; justify-items: center; }
.cta-title { margin: 0; font-size: 42px; font-weight: 800; letter-spacing: 0.2px; line-height: 1.2; }

@media (max-width:768px) {
    .cta-title { margin: 0; font-size: 28px; font-weight: 800; letter-spacing: 0.2px; line-height: 1.2; }
    .cta-sub { max-width: 760px; color: #e3e2ef; margin: 0; font-size: 14px !important; }
    .cta-hero {
        background-attachment: scroll; /* Disable fixed background on mobile for better performance */
    }
}

.cta-title span { color: var(--primary); }
.cta-sub { max-width: 760px; color: #e3e2ef; margin: 0; font-size: 18px; }
.btn-cta { margin-top: 10px; background: var(--primary); color: #fff; border: 0; border-radius: 8px; padding: 12px 22px; font-weight: 700; cursor: pointer; text-transform: uppercase; font-size: 12px; letter-spacing: .4px; }

.features { background: #fff; padding: 24px 0 70px; margin-top: -80px; position: relative; z-index: 3; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card { background: #ffffff; border-radius: 14px; padding: 26px 20px; text-align: center; border: 1px solid #f0e7f2; transition: transform .18s ease, box-shadow .18s ease; }
.feature-card:hover { 
    transform: translateY(-2px); 
    background: var(--primary) !important;
    color: #ffffff !important;
}
.feature-card:hover h4 {
    color: #ffffff !important;
}
.feature-card:hover p {
    color: rgba(255,255,255,0.9) !important;
}
.feature-card:hover .feature-icon {
    background: rgba(255,255,255,0.18) !important;
    box-shadow: none !important;
}
.feature-card:hover .feature-icon svg {
    stroke: #ffffff !important;
}
.feature-card .feature-icon { 
    width: 56px; 
    height: 56px; 
    margin: 0 auto 14px; 
    border-radius: 50%; 
    display: grid; 
    place-items: center; 
    background: var(--primary); 
    
}
.feature-card .feature-icon svg { 
    width: 26px; 
    height: 26px; 
    stroke: #ffffff; 
}
/* Remove active card styling - all cards should have same background */
.feature-card.active { 
    background: #ffffff; 
    color: #2c3e50; 
    border-color: #f0e7f2;  
}
.feature-card.active h4 { 
    color: #2c3e50; 
}
.feature-card.active p { 
    color: #64748b; 
}
.feature-card.active .feature-icon { 
    background: var(--primary); 
    box-shadow: 0 6px 18px rgba(255,61,176,0.25); 
}
.feature-card.active .feature-icon svg { 
    stroke: #ffffff; 
}
.feature-card h4 { margin: 8px 0 6px; }
.feature-card p { margin: 0; color: #64748b; font-size: 14px; }

@media (max-width: 900px) {
    /* Override base grid with a horizontal, swipeable row on mobile */
    .features-grid { display: flex; overflow-x: auto; gap: 14px; padding: 0 12px 10px; scroll-snap-type: x mandatory; }
    .features-grid::-webkit-scrollbar { display: none; }
    .feature-card { min-width: 300px; scroll-snap-align: center; }
}

/* Related Products */
.related { background: #ffffff; padding: 10px 0 80px; }
.related .section-title h2 { font-size: 26px; }
.related-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card.small .product-media { height: 200px; }
/* Reuse slider visuals */
.related .product-slider { position: relative; }
.related .slides { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

@media (max-width: 900px) {
    /* Show one card at a time for Related */
    #relatedSlider .slides { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 8px 6px; }
    #relatedSlider .card { min-width: 88%; scroll-snap-align: center; margin: 0 auto; }
}

/* Stats / Counters */
.stats { background: #dba300; color: #ffffff; padding: 28px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; gap: 24px; position: relative; }
.stat { text-align: center; position: relative; }
.stat-value { font-size: 44px; font-weight: 800; letter-spacing: .5px; }
.stat-label { opacity: .95; margin-top: 6px; font-weight: 500; }
/* Dividers */
.stats-row .stat:not(:last-child)::after { content: ""; position: absolute; right: -12px; top: 50%; transform: translateY(-50%); width: 1px; height: 38px; background: rgba(255,255,255,0.35); }

@media (max-width: 900px) {
    .stats-row { grid-template-columns: 1fr 1fr; row-gap: 20px; }
    .stats-row .stat:not(:last-child)::after { display: none; }
    .stat-value { font-size: 34px; }
}

/* Why Choose Us */
.choose { 
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); 
    padding: 80px 0; 
    position: relative;
}
.choose::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff3db0" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ff3db0" opacity="0.05"/><circle cx="50" cy="10" r="1" fill="%23ff3db0" opacity="0.05"/><circle cx="10" cy="60" r="1" fill="%23ff3db0" opacity="0.05"/><circle cx="90" cy="40" r="1" fill="%23ff3db0" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}
.choose-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: start; 
    position: relative;
    z-index: 2;
}
.eyebrow { 
    color: #ff3db0; 
    font-weight: 800; 
    letter-spacing: .6px; 
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.choose-title { 
    margin: 8px 0 20px; 
    font-size: 42px; 
    line-height: 1.2; 
    letter-spacing: .2px; 
    color: #2c3e50;
    font-weight: 700;
}
.choose-sub { 
    color: #64748b; 
    margin-bottom: 30px; 
    line-height: 1.7; 
    font-size: 16px;
}
.meter { 
    margin: 20px 0; 
    padding: 15px 0;
}
.meter-title { 
    font-weight: 700; 
    font-size: 14px; 
    letter-spacing: .2px; 
    margin-bottom: 10px; 
    color: #2c3e50;
}
.bar { 
    height: 8px; 
    background: #e9ecef; 
    border-radius: 999px; 
    position: relative; 
    overflow: hidden; 
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}
.bar span { 
    position: absolute; 
    left: 0; 
    top: 0; 
    bottom: 0; 
    width: var(--w); 
    background: linear-gradient(90deg, #ff3db0, #ff6b9d); 
    border-radius: 999px; 
    transition: width 1s ease-in-out;
    box-shadow: 0 2px 8px rgba(255, 61, 176, 0.3);
}
.choose-right { 
    display: grid; 
    gap: 24px; 
}
.choose-item { 
    display: grid; 
    grid-template-columns: 64px 1fr; 
    gap: 20px; 
    align-items: flex-start; 
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.choose-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #ff3db0;
}
.ci { 
    width: 64px; 
    height: 64px; 
    background: linear-gradient(135deg, #ff3db0, #ff6b9d); 
    border-radius: 50%; 
    display: grid; 
    place-items: center; 
    box-shadow: 0 4px 15px rgba(255, 61, 176, 0.3);
    transition: all 0.3s ease;
}
.choose-item:hover .ci {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 61, 176, 0.4);
}
.ci svg { 
    width: 28px; 
    height: 28px; 
    stroke: #ffffff; 
    stroke-width: 2;
}
.choose-item h4 { 
    margin: 0 0 8px; 
    font-size: 20px; 
    line-height: 1.3; 
    color: #2c3e50;
    font-weight: 600;
}
.choose-item p { 
    margin: 0; 
    color: #6b7280; 
    font-size: 15px; 
    line-height: 1.6; 
}

@media (max-width: 900px) {
    .choose-grid { 
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    .choose-title { 
        font-size: 32px; 
    }
    .choose {
        padding: 60px 0;
    }
    .choose-item {
        padding: 16px;
        grid-template-columns: 56px 1fr;
        gap: 16px;
    }
    .ci {
        width: 56px;
        height: 56px;
    }
    .ci svg {
        width: 24px;
        height: 24px;
    }
    .choose-item h4 {
        font-size: 18px;
    }
    .choose-item p {
        font-size: 14px;
    }
}
 .btn-gradient {
            background: linear-gradient(135deg, #fdc134, #e02395);
            color: #000 !important;
            border: none;
            padding: 14px 36px;
            font-size: 18px;
            border-radius: 8px;
            transition: 0.3s ease;
          }

          .btn-gradient:hover {
            opacity: 0.9;
            background-color: #e02395 !important;
          }

          .btn-gradient-outline {
            background: transparent;
            border: 2px solid #ff3db0;
            color: #ff3db0;
            padding: 14px 36px;
            font-size: 18px;
            border-radius: 8px;
            transition: 0.3s ease;
          }

          .btn-gradient-outline:hover {
            background:linear-gradient(135deg, #fdc134, #e02395);
            color: #000;
          }

          .search-toggle-btn:hover,
          .cart-btn:hover {
            background: rgba(255, 61, 176, 0.2);
            transform: scale(1.1);
          }
/* Footer */
.site-footer { 
    background: #000000; 
    color: #ffffff; 
    padding: 60px 0 30px; 
}
.footer-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr; 
    gap: 40px; 
    align-items: start;
}
.site-footer h5 { 
    margin: 0 0 20px; 
    color: #ffffff; 
    font-size: 18px; 
    font-weight: 600;
    position: relative;
}
.site-footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ff3db0;
}
.footer-col ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    display: grid; 
    gap: 12px; 
}
.footer-col a { 
    color: #ffffff; 
    font-size: 14px; 
    text-decoration: none; 
    line-height: 1.6; 
    transition: color 0.3s ease;
}
.footer-col a:hover { 
    color: #ff3db0; 
}
.footer-about p { 
    margin: 20px 0 25px; 
    line-height: 1.7; 
    font-size: 14px; 
    color: #cccccc;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.footer-logo-img {
    height: 80px;
    width: auto;
}
.footer-logo h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}
.footer-social { 
    display: flex;
    gap: 12px;
}
.footer-social a { 
    display: inline-block; 
    width: 35px; 
    height: 35px; 
    border: 1px solid #ffffff; 
    color: #ffffff; 
    background: transparent; 
    border-radius: 50%; 
    text-align: center; 
    line-height: 33px; 
    font-size: 16px; 
    transition: all 0.3s ease;
}
.footer-social a:hover { 
    background: #ff3db0; 
    color: #000000;
    border-color: #ff3db0;
}
.footer-contact ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    display: grid; 
    gap: 15px; 
    font-size: 14px; 
    line-height: 1.6; 
}
.footer-contact .ico { 
    margin-right: 10px; 
    color: #5eead4; 
    font-size: 16px; 
    vertical-align: middle;
    width: 20px;
    display: inline-block;
}
.footer-copy { 
    border-top: 1px solid #333333; 
    margin-top: 40px; 
    padding-top: 20px; 
    text-align: center;
}
.footer-copy p { 
    margin: 0; 
    font-size: 14px; 
    color: #cccccc; 
    line-height: 1.6;
}
.footer-copy .highlight {
    color: #ff3db0;
    font-weight: 600;
}

@media (max-width: 900px) {
    /* Stack columns on mobile to match Figma mobile layout */
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 30px; 
    }
    .site-footer { 
        padding: 40px 0 25px; 
    }
    .site-footer h5 { 
        font-size: 16px; 
        margin-bottom: 15px; 
    }
    .footer-col a { 
        font-size: 14px; 
    }
    .footer-about p { 
        font-size: 14px; 
        margin: 15px 0 20px;
    }
    .footer-social { 
        justify-content: center;
        margin-top: 20px;
    }
    .footer-social a { 
        width: 32px; 
        height: 32px; 
        line-height: 30px; 
        font-size: 14px; 
    }
    .footer-contact ul { 
        gap: 12px; 
        font-size: 14px; 
    }
    .footer-logo {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    .footer-copy {
        margin-top: 30px;
        padding-top: 15px;
    }
}
 div.categories {
      width: 250px;
      background: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .categories h3 {
      font-size: 18px;
      margin-bottom: 15px;
    }
    .filter-block {
      margin-bottom: 25px;
    }
    .filter-block h4 {
      font-size: 15px;
      margin-bottom: 10px;
      border-bottom: 1px solid #eee;
      padding-bottom: 5px;
    }
    .filter-block ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .filter-block li {
      margin: 6px 0;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .color-circle {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      display: inline-block;
    }
    .price-range {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .top-rated {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 10px 0;
    }
    .top-rated img {
      width: 40px;
      height: 40px;
      object-fit: cover;
      border-radius: 4px;
    }
    .top-rated span {
      font-size: 13px;
    }
    
    
.page-title {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px; /* Adjust height as needed */
  position: relative;
}

.page-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45); /* dark overlay */
}

.page-title .title-outer {
  position: relative; /* keep text above overlay */
}

.page-title h1.title {
  font-size: 2.5rem;
  font-weight: 700;
}


        .mobile-filter-btn {
            display: none;
            align-items: center;
            gap: 8px;
            background: #ff3db0;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            margin: 10px auto;
        }
        
        @media (max-width: 992px) {
            .mobile-filter-btn {
                display: flex;
            }
            
            .categories {
                position: fixed;
                top: 0;
                left: -320px;
                width: 300px;
                height: 100vh;
                background: white;
                z-index: 1002;
                padding: 20px;
                overflow-y: auto;
                transition: left 0.3s ease;
                box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            }
            
            .categories.active {
                left: 0;
            }
            
            .filter-overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0,0,0,0.5);
                z-index: 1001;
            }
            
            .filter-overlay.active {
                display: block;
            }
        }

        /* About page specific styles */
        .about-hero {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
        }
        
        .about-section {
            padding: 80px 0;
        }
        
        .about-section:nth-child(even) {
            background: #f8f9fa;
        }
        
        .section-subtitle {
            color: #ff3db0;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        
        .section-title {
            font-size: 48px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .section-description {
            font-size: 16px;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 30px;
        }
        
        .stats-container {
            display: flex;
            gap: 40px;
            margin-top: 40px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 800;
            color: #ff3db0;
            line-height: 1;
            margin-bottom: 8px;
        }
        
        .stat-label {
            font-size: 14px;
            color: #fff;
            font-weight: 500;
        }
        
         .about-image {
             border-radius: 12px;
         }
         
         .image-container {
             position: relative;
             max-width: 350px;
             margin: 0 auto;
         }
         
         .square-image {
             width: 100%;
             height: 200px;
             object-fit: cover;
             border-radius: 12px;
         }
         
         .circular-overlay {
             position: absolute;
             top: 60px;
             right: -30px;
             width: 280px;
             height: 280px;
             border-radius: 50%;
             object-fit: cover;
         }
         
         .years-animation {
             position: absolute;
             top: 50%;
             left: 50%;
             transform: translate(-50%, -50%);
             width: 280px;
             height: 280px;
             border-radius: 50%;
             background: linear-gradient(135deg, #ff3db0, #ff6b9d);
             display: flex;
             flex-direction: column;
             align-items: center;
             justify-content: center;
             color: white;
             font-weight: 800;
             animation: countdownPulse 2s infinite;
             box-shadow: 0 10px 30px rgba(255, 61, 176, 0.3);
             transition: all 0.6s ease-in-out;
         }
         
         .years-number {
             font-size: 48px;
             line-height: 1;
             margin-bottom: 5px;
         }
         
         .years-text {
             font-size: 16px;
             text-transform: uppercase;
             letter-spacing: 2px;
         }
         
         @keyframes countdownPulse {
             0% {
                 transform: translate(-50%, -50%) scale(1);
                 box-shadow: 0 10px 30px rgba(255, 61, 176, 0.3);
             }
             50% {
                 transform: translate(-50%, -50%) scale(1.05);
                 box-shadow: 0 15px 40px rgba(255, 61, 176, 0.5);
             }
             100% {
                 transform: translate(-50%, -50%) scale(1);
                 box-shadow: 0 10px 30px rgba(255, 61, 176, 0.3);
             }
         }
         
         .years-animation:hover {
             transform: translate(-50%, -50%) scale(1.08);
             box-shadow: 0 20px 50px rgba(255, 61, 176, 0.4);
         }
         
         .countdown-number {
             font-size: 48px;
             line-height: 1;
             margin-bottom: 5px;
             transition: all 0.3s ease;
         }
         
         .countdown-text {
             font-size: 16px;
             text-transform: uppercase;
             letter-spacing: 2px;
         }
        
        .features-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .features-list li {
            padding: 8px 0;
            color: #6c757d;
            font-size: 16px;
            position: relative;
            padding-left: 20px;
        }
        
        .features-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #ff3db0;
            font-weight: bold;
        }
        
        .video-section {
            position: relative;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('Assets/images/bannerabt.webp');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            color: white;
        }
        
        .play-button {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .play-button:hover {
            transform: scale(1.1);
        }
        
        .play-button i {
            font-size: 24px;
            color: #ff3db0;
            margin-left: 4px;
        }
        
        .about-features {
            background: white;
            padding: 80px 0;
        }
        
        .feature-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: white;
        }
        
        .feature-card h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .feature-card p {
            color: #6c757d;
            font-size: 14px;
            margin: 0;
        }
        
        .feature-card:nth-child(1) .feature-icon {
            background: linear-gradient(135deg, #ff9a9e, #fecfef);
        }
        
        .feature-card:nth-child(2) .feature-icon {
            background: linear-gradient(135deg, #a8edea, #fed6e3);
        }
        
        .feature-card:nth-child(3) .feature-icon {
            background: linear-gradient(135deg, #d299c2, #fef9d7);
        }
        
        .feature-card:nth-child(4) .feature-icon {
            background: linear-gradient(135deg, #89f7fe, #66a6ff);
        }
        
         @media (max-width: 768px) {
             .section-title {
                 font-size: 32px;
             }
             
             .stats-container {
                 flex-direction: column;
                 gap: 20px;
             }
             
             .about-section {
                 padding: 40px 0;
             }
             
             .image-container {
                 max-width: 100%;
             }
             
             .square-image {
                 height: 250px;
             }
             
             .years-animation {
                 width: 200px;
                 height: 200px;
             }
             
             .years-number {
                 font-size: 36px;
             }
             
             .years-text {
                 font-size: 14px;
             }
         }

@media (min-width: 992px) {
  /* Logo size */
  .navbar-brand img {
    height: 75px !important;
  }

  /* Navbar link font size */
  .navbar-nav .nav-link {
    font-size: 18px !important;
  }

  /* Cart and other icon sizes */
  .navbar .fa-shopping-cart,
  .navbar .fa-user,
  .navbar .fa-heart,
  .navbar .fa-phone {
    font-size: 22px !important;
  }

  /* Login and Signup button font size */
  .navbar .btn {
    font-size: 16px !important;
    padding: 8px 20px !important;
  }
}
@media (max-width:768px) {
  .login{
    color: white;
    background: black;
  }
  .signup{
    color: white;
    background: black;
  }
}
   /* Mobile Menu Custom Styling */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 350px;
                height: 100vh;
                background: #0d0b19;
                z-index: 9999;
                transition: right 0.3s ease-in-out;
                padding: 80px 20px 20px;
                box-shadow: -5px 0 15px rgba(0,0,0,0.3);
                overflow-y: auto;
            }
            
            .navbar-collapse.show {
                right: 0;
            }
            
            .navbar-nav {
                flex-direction: column;
                gap: 0 !important;
                margin: 0;
            }
            
            .navbar-nav .nav-item {
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link {
                padding: 15px 0;
                font-size: 18px;
                color: white !important;
                text-align: left;
                border-bottom: none;
            }
            
            .navbar-nav .nav-link:hover {
                color: #ff3db0 !important;
                background: rgba(255, 61, 176, 0.1);
                padding-left: 10px;
                transition: all 0.3s ease;
            }
            
            /* Mobile overlay */
            .navbar-collapse::before {
                content: '';
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0,0,0,0.5);
                z-index: -1;
                opacity: 0;
                transition: opacity 0.3s ease;
            }
            
            .navbar-collapse.show::before {
                opacity: 1;
            }
            
            /* Mobile close button hover effect */
            .mobile-close-btn:hover {
                background: rgba(255, 61, 176, 0.4) !important;
                transform: scale(1.1);
            }
        }
        
        /* Search popup z-index fix */
        .search-popup {
            z-index: 10000 !important;
        }
        
        /* Auto slider styles */
        .slide-item {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            white-space: nowrap;
        }
        
        .slide-item.active {
            opacity: 1;
        }
        
        .auto-slider {
            position: relative;
        }
        
        /* Top bar responsive styles */
        @media (max-width: 768px) {
            .top-bar {
                font-size: 12px !important;
                padding: 6px 0 !important;
            }
            .sliding-text {
                animation-duration: 12s;
            }
            .sliding-text > div {
                font-size: 11px;
                margin-right: 20px;
            }
        }

        /* About page specific styles */
        .about-hero {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
        }
        
        .about-section {
            padding: 80px 0;
        }
        
        .about-section:nth-child(even) {
            background: #f8f9fa;
        }
        
        .section-subtitle {
            color: #ff3db0;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        
        .section-title {
            font-size: 48px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .section-description {
            font-size: 16px;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 30px;
        }
        
        .stats-container {
            display: flex;
            gap: 40px;
            margin-top: 40px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 800;
            color: #ff3db0;
            line-height: 1;
            margin-bottom: 8px;
        }
        
        .stat-label {
            font-size: 14px;
            color: #6c757d;
            font-weight: 500;
        }
        
         .about-image {
             border-radius: 12px;
         }
         
         .image-container {
             position: relative;
             max-width: 350px;
             margin: 0 auto;
         }
         
         .square-image {
             width: 100%;
             height: 200px;
             object-fit: cover;
             border-radius: 12px;
         }
         
         .circular-overlay {
             position: absolute;
             top: 60px;
             right: -30px;
             width: 280px;
             height: 280px;
             border-radius: 50%;
             object-fit: cover;
         }
         
         .years-animation {
             position: absolute;
             top: 50%;
             left: 50%;
             transform: translate(-50%, -50%);
             width: 280px;
             height: 280px;
             border-radius: 50%;
             background: linear-gradient(135deg, #ff3db0, #ff6b9d);
             display: flex;
             flex-direction: column;
             align-items: center;
             justify-content: center;
             color: white;
             font-weight: 800;
             animation: countdownPulse 2s infinite;
             box-shadow: 0 10px 30px rgba(255, 61, 176, 0.3);
             transition: all 0.6s ease-in-out;
         }
         
         .years-number {
             font-size: 48px;
             line-height: 1;
             margin-bottom: 5px;
         }
         
         .years-text {
             font-size: 16px;
             text-transform: uppercase;
             letter-spacing: 2px;
         }
         
         @keyframes countdownPulse {
             0% {
                 transform: translate(-50%, -50%) scale(1);
                 box-shadow: 0 10px 30px rgba(255, 61, 176, 0.3);
             }
             50% {
                 transform: translate(-50%, -50%) scale(1.05);
                 box-shadow: 0 15px 40px rgba(255, 61, 176, 0.5);
             }
             100% {
                 transform: translate(-50%, -50%) scale(1);
                 box-shadow: 0 10px 30px rgba(255, 61, 176, 0.3);
             }
         }
         
         .years-animation:hover {
             transform: translate(-50%, -50%) scale(1.08);
             box-shadow: 0 20px 50px rgba(255, 61, 176, 0.4);
         }
         
         .countdown-number {
             font-size: 48px;
             line-height: 1;
             margin-bottom: 5px;
             transition: all 0.3s ease;
         }
         
         .countdown-text {
             font-size: 16px;
             text-transform: uppercase;
             letter-spacing: 2px;
         }
        
        .features-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .features-list li {
            padding: 8px 0;
            color: #6c757d;
            font-size: 16px;
            position: relative;
            padding-left: 20px;
        }
        
        .features-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #ff3db0;
            font-weight: bold;
        }
        
        .video-section {
            position: relative;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('Assets/images/bannerabt.webp');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            color: white;
        }
        
        .play-button {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .play-button:hover {
            transform: scale(1.1);
        }
        
        .play-button i {
            font-size: 24px;
            color: #ff3db0;
            margin-left: 4px;
        }
        
        .about-features {
            background: white;
            padding: 80px 0;
        }
        
        .feature-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: white;
        }
        
        .feature-card h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .feature-card p {
            color: #6c757d;
            font-size: 14px;
            margin: 0;
        }
        
        .feature-card:nth-child(1) .feature-icon {
            background: linear-gradient(135deg, #ff9a9e, #fecfef);
        }
        
        .feature-card:nth-child(2) .feature-icon {
            background: linear-gradient(135deg, #a8edea, #fed6e3);
        }
        
        .feature-card:nth-child(3) .feature-icon {
            background: linear-gradient(135deg, #d299c2, #fef9d7);
        }
        
        .feature-card:nth-child(4) .feature-icon {
            background: linear-gradient(135deg, #89f7fe, #66a6ff);
        }
        
         @media (max-width: 768px) {
             .section-title {
                 font-size: 32px;
             }
             
             .stats-container {
                 flex-direction: column;
                 gap: 20px;
             }
             
             .about-section {
                 padding: 40px 0;
             }
             
             .image-container {
                 max-width: 100%;
             }
             
             .square-image {
                 height: 250px;
             }
             
             .years-animation {
                 width: 200px;
                 height: 200px;
             }
             
             .years-number {
                 font-size: 36px;
             }
             
             .years-text {
                 font-size: 14px;
             }
         }
   