  :root {
    --bg: #0b0f17;
    --panel: #101827;
    --panel-2: #0f172a;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --border: rgba(255, 255, 255, .08);

    --dark: #0b0b0b;
    --accent: #ff3d6e;

    --shadow: 0 20px 45px rgba(0, 0, 0, .35);
  }

  * {
    box-sizing: border-box;
  }

  html {
    min-height: 100vh;
  }

  body {
    overflow-x: hidden;
    width: 100%;
  }

  body {
    font-family: "Bell MT", serif !important;
    background: radial-gradient(1200px 600px at 15% 10%, rgba(255, 61, 110, .12), transparent 60%),
      radial-gradient(1000px 600px at 90% 30%, rgba(59, 130, 246, .10), transparent 60%),
      var(--bg);
    color: var(--text);
  }

  /* 🌞 LIGHT THEME */
  body.light-theme {
    --bg: #ffffff;
    --panel: #f9fafb;
    --panel-2: #ffffff;
    --text: #111827;
    --muted: #6b7280;
    --border: rgba(0, 0, 0, .08);
  }

  /* Light background */
  body.light-theme {
    background: #ffffff;
    color: var(--text);
  }

  /* Cards light */
  body.light-theme .p-card,
  body.light-theme .hero-offer-card,
  body.light-theme .mini-stat {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, .08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  }

  /* Navbar light */
  body.light-theme .navbar {
    background: #ffffff !important;
    backdrop-filter: none;
  }

  /* Text fix */
  body.light-theme .text-muted {
    color: #6b7280 !important;
  }

  body.light-theme h1,
  body.light-theme h2,
  body.light-theme h3,
  body.light-theme h4,
  body.light-theme h5,
  body.light-theme h6,
  body.light-theme .section-title,
  body.light-theme .display-5,
  body.light-theme .text-white {
    color: #000000 !important;
  }

  body.light-theme .lead.text-white-50,
  body.light-theme .text-muted-50 {
    color: rgba(0, 0, 0, 0.8) !important;
  }

  /* Explore button text and border color to black in light theme */
  body.light-theme .btn-outline-light {
    color: #000000 !important;
    border-color: #000000 !important;
  }

  body.light-theme .btn-outline-light:hover {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
  }


  body.light-theme .brand {
    color: #000000 !important;
  }


  /* Make bootstrap default texts look dark-theme */
  .text-muted {
    color: var(--muted) !important;
  }

  .link-dark {
    color: var(--text) !important;
  }

  .link-dark:hover {
    color: #fff !important;
  }

  /* =========================
    TOPBAR
  ========================= */
  .topbar {
    background: #05070c;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }

  /* Marquee */
  .topbar-left {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
  }

  .topbar-track {
    display: inline-flex;
    gap: 40px;
    animation: marquee-scroll 14s linear infinite;
  }

  .topbar-track span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  @keyframes marquee-scroll {
    from {
      transform: translateX(0);
    }

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

  /* =========================
    NAVBAR (dark)
  ========================= */
  .navbar {
    background: rgba(11, 15, 23, .72) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 10px 0 !important;
    text-wrap: nowrap !important;
    font-size: 0.88rem;
  }

  /* Force Cart Count to be white in dark mode */
  #cart-count {
    color: #ffffff !important;
  }

  .brand {
    letter-spacing: .5px;
    color: #ffffff !important;
  }

  .navbar-brand {
    margin-right: 0 !important;
    flex-shrink: 0;
  }

  @media (max-width: 991px) {
    .navbar-brand {
      margin-right: 100px !important; /* Adjusted buffer for 1.8x mobile scale */
    }
  }
    @media (min-width: 319px) and (max-width: 500px) {
      .navbar-brand {
        margin-right: 0px !important; /* Adjusted buffer for 1.8x mobile scale */
        display: flex;
        align-items: center;
      }
    }
@media screen and (max-width: 350px) {
  .navbar-brand{
    padding: 0px !important;
  }
}

  .brand-accent {
    color: var(--accent);
  }

  .brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  }

  /* Standard Static Logo for Storefront Sub-Pages */
  .main-logo-static {
    height: 38px;
    max-height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
  }

  @media (max-width: 768px) {
    .main-logo-static {
        height: 32px;
    }
  }

  .brand-logo-nm {
    height: inherit;
    width: inherit;
    object-fit: cover;
    object-position: center;
    transform: scale(1.4);
    transition: all 0.3s ease;
  }

  /* Default (Dark Theme) Logo Visibility */
  .logo-light {
    display: none !important;
  }
  .logo-dark {
    display: block !important;
  }

  /* Light Theme Logo Visibility */
  body.light-theme .logo-dark {
    display: none !important;
  }
  body.light-theme .logo-light {
    display: block !important;
  }

  .navbar-brand:hover .brand-logo-nm {
    filter: brightness(1.1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  }

  .navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  @media (max-width: 576px) {
    .brand-logo {
      height: 38px;
    }

    .brand-logo-nm {
      height: 28px;
      margin-left: 1px;
    }

    .navbar-actions {
      gap: 8px;
    }

    .icon-btn {
      width: 36px;
      height: 36px;
    }

    .cart-btn-nav {
      padding: 4px 10px !important;
    }
  }

  .navbar .nav-link {
    color: rgba(229, 231, 235, .86) !important;
    font-weight: 600;
    font-size: 0.88rem; /* Reduced font size as requested */
    white-space: nowrap;
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
    transition: all 0.2s ease;
  }

  .navbar .nav-link:hover {
    color: #fff !important;
  }

  .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, .18) !important;
  }

  .navbar-toggler-icon {
    filter: invert(1) opacity(.85);
  }

  /* Icon buttons (dark) */
  .icon-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    color: var(--text) !important;
    text-decoration: none !important;
    transition: all .2s ease;
    padding: 0;
    line-height: 1;
  }

  .icon-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
  }

  .icon-btn:hover {
    background: rgba(255, 255, 255, .1) !important;
    transform: translateY(-2px);
  }

  /* Responsive Search */
  .nav-search-input {
    width: 150px !important;
    transition: width 0.3s ease;
  }

  .nav-search-input::placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
  }

  body.light-theme .nav-search-input::placeholder {
    color: rgba(0, 0, 0, 0.8) !important;
  }

  @media (min-width: 1200px) {
    .nav-search-input {
      width: 200px !important;
    }
  }

  @media (min-width: 1400px) {
    .nav-search-input {
      width: 250px !important;
    }
  }

  /* =========================
    HERO (Video background)
  ========================= */
  .hero {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;

    background:
      radial-gradient(900px 500px at 20% 10%, rgba(255, 61, 110, .18), transparent 55%),
      radial-gradient(900px 500px at 80% 40%, rgba(0, 0, 0, .55), transparent 55%),
      var(--bg);
  }

  .hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: saturate(1.05) contrast(1.08) brightness(.75);
    transform: scale(1.06);
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to right,
        rgba(11, 15, 23, .88),
        rgba(11, 15, 23, .62),
        rgba(11, 15, 23, .25));
  }

  .hero .container {
    position: relative;
    z-index: 2;
  }

  .hero-inner {
    padding: 0;
  }

  /* chip */
  .chip {
    background: rgba(255, 61, 110, .14);
    color: #ffd0dc;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(255, 61, 110, .22);
  }

  /* mini stats */
  .mini-stat {
    background: rgba(16, 24, 39, .70);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 14px;
    backdrop-filter: blur(8px);
    color: var(--text);
  }

  .mini-stat p {
    color: var(--muted) !important;
  }

  /* Offer card */
  .hero-offer-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .6s cubic-bezier(.22, 1, .36, 1), box-shadow .6s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
    color: var(--text);
  }

  .hero-offer-card:hover {
    box-shadow: 0 45px 90px rgba(0, 0, 0, 0.60);
  }

  .hero-offer-card img {
    transition: transform 0.6s cubic-bezier(.22, 1, .36, 1);
  }
  
  .hero-offer-card:hover img {
    transform: scale(1.08);
  }

  .glass-border {
    position: relative;
  }

  .glass-border::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.10),
      0 0 40px rgba(255, 61, 110, 0.10);
    pointer-events: none;
  }

  /* Global Modal styles (moved from index.html) */
  body:not(.light-theme) .modal-content {
    background-color: #0b0b0b !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  body:not(.light-theme) .modal-header {
    background: #000 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  body:not(.light-theme) .modal-title, 
  body:not(.light-theme) .modal-body {
    color: #ffffff !important;
  }

  body.light-theme .modal-content {
    background-color: #ffffff !important;
    color: #000 !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
  }

  /* Force dark headers for ALL modals in ALL themes as per user requirement */
  .modal-header {
    background: #111 !important;
    color: #fff !important;
    border-bottom: none !important;
  }

  .modal-header .modal-title,
  .modal-header .text-white,
  .modal-header .text-white-50,
  .modal-header p,
  .modal-header h5 {
    color: #fff !important;
  }

  .modal-header .btn-close,
  .modal-header .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%) !important; /* Force white close button */
    opacity: 0.8 !important;
  }

  body.light-theme .modal-content {
    background-color: #ffffff !important;
    color: #000 !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
  }

  body.light-theme .modal-body {
    color: #000000 !important;
  }

  body.light-theme .glass-border::after {
    display: none !important;
  }

  /* Buttons: keep bootstrap, just tune dark look */
  .btn-outline-dark {
    color: var(--text) !important;
    border-color: rgb(100, 100, 100) !important;
  }

  .btn-outline-dark:hover {
    background: rgba(255, 255, 255, .10) !important;
    border-color: rgb(100, 100, 100) !important;
  }

  /* =========================
    SECTIONS (dark)
  ========================= */
  section.py-5 {
    background: transparent;
  }

  #new.bg-light {
    background: rgba(255, 255, 255, .03) !important;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }

  /* =========================
    CATEGORY CARDS
  ========================= */
  .cat-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: auto;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .06);
  }

  body.light-theme .cat-card {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: .35s ease;
    filter: contrast(1.05) brightness(.85);
  }

  .cat-card:hover img {
    transform: scale(1.06);
  }

  .cat-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, .78), rgba(0, 0, 0, .18));
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  }
  
  body.light-theme .cat-overlay {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  }

  /* =========================
    CATEGORY HORIZONTAL SCROLL
  ========================= */
  .cat-scroll-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    padding-bottom: 8px;
    /* fade hint on right edge so user knows there's more */
    -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, black 90%, transparent 100%);
  }

  .best-scroll-track {
    -webkit-mask-image: linear-gradient(to right, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, black 92%, transparent 100%);
  }

  .cat-scroll-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .cat-scroll-item {
    flex: 0 0 calc(33.333% - 14px);
    /* exactly 3 visible */
    scroll-snap-align: start;
    min-width: 260px;
    /* safety floor on very small viewports */
    height: auto;
  }

  /* Mobile: show ~1.3 cards */
  @media (max-width: 575px) {
    .cat-scroll-item {
      flex: 0 0 75%;
      height: auto;
      min-width: 0;
    }

    .cat-scroll-track,
    .best-scroll-track {
      gap: 14px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .best-scroll-track > div {
       scroll-snap-align: start;
    }
  }

  /* Tablet: show ~2 cards */
  @media (min-width: 576px) and (max-width: 991px) {
    .cat-scroll-item {
      flex: 0 0 calc(50% - 10px);
      height: auto;
    }
  }

  /* =========================
    PRODUCT CARDS
  ========================= */
  .p-card {
    border-radius: 18px;
    overflow: hidden;
    transition: .25s ease;
    background: rgba(16, 24, 39, .72) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
    color: var(--text);
  }

  .p-card .card-body {
    color: var(--text);
  }

  .p-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .55);
    border-color: rgba(255, 61, 110, .18) !important;
  }

  .p-img {
    position: relative;
  }

  .p-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    filter: contrast(1.05) brightness(.85);
  }

  .tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #0b0b0b;
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, .10);
  }

  .tag-hot {
    background: var(--accent);
    border-color: rgba(255, 61, 110, .25);
  }

  .tag-sale {
    background: #16a34a;
    border-color: rgba(22, 163, 74, .25);
  }

  .rating {
    background: #0b0b0b;
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, .10);
  }

  /* Professional Premium Search Bar (New Arrivals) */
  .search-container-premium {
    position: relative;
    max-width: 450px;
    width: 100%;
    margin-bottom: 0;
  }

  .search-input-premium {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 14px !important;
    padding: 12px 20px 12px 48px !important;
    color: var(--text) !important;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  /* Placeholder Styling */
  .search-input-premium::placeholder {
    color: rgba(255, 255, 255, 0.65) !important;
  }

  .search-input-premium:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 61, 110, 0.4) !important;
    box-shadow: 0 8px 25px rgba(255, 61, 110, 0.15), 0 0 0 4px rgba(255, 61, 110, 0.05) !important;
    transform: translateY(-1px);
    outline: none;
  }

  .search-icon-inside {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 1.1rem;
    pointer-events: none;
    transition: color 0.3s ease;
  }

  .search-input-premium:focus + .search-icon-inside {
    color: var(--accent);
  }

  /* Light Theme Adjustments */
  body.light-theme .search-input-premium {
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #111 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  body.light-theme .search-input-premium::placeholder {
    color: rgba(0, 0, 0, 0.45) !important;
  }

  body.light-theme .search-input-premium:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 8px 20px rgba(255, 61, 110, 0.1) !important;
  }

  /* Deal bar */
  .deal-bar {
    border-radius: 18px;
    background: linear-gradient(to right, rgba(255, 61, 110, .25), rgba(16, 24, 39, .8));
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .10);
  }

  /* Banner cards */
  .banner-card {
    border-radius: 28px;
    min-height: unset;
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .06);
    background:
      linear-gradient(to right, rgba(0, 0, 0, .75), rgba(0, 0, 0, .30)),
      url("https://images.unsplash.com/photo-1520975922284-7b7dc6b3a90f?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  }
  
  .banner-card img {
    object-position: right center !important;
  }

  body.light-theme .banner-card {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  /* Force white text since banner backgrounds are permanently dark */
  body.light-theme .banner-card .text-white,
  body.light-theme .banner-card .text-white-50,
  body.light-theme .cat-card .text-white,
  body.light-theme .cat-card .text-white-50 {
    color: #ffffff !important;
  }

  body.light-theme .banner-card .text-white-50,
  body.light-theme .cat-card .text-white-50 {
    color: rgba(255, 255, 255, 0.6) !important;
  }

  .banner-card h3,
  .banner-card p {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  }
  
  body.light-theme .banner-card h3,
  body.light-theme .banner-card p {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  }

  .banner-1 {
    background:
      linear-gradient(to right, rgba(0, 0, 0, .75), rgba(0, 0, 0, .30)),
      url("https://images.pexels.com/photos/6311607/pexels-photo-6311607.jpeg?auto=compress&cs=tinysrgb&w=1400") center/cover no-repeat;
  }

  .banner-2 { 
    background:
      linear-gradient(to right, rgba(0, 0, 0, .75), rgba(0, 0, 0, .30)),
      url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  }

  .banner-3 {
    background:
      linear-gradient(to right, rgba(0, 0, 0, .75), rgba(0, 0, 0, .30)),
      url("https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  }


  /* =========================
    OFFCANVAS (dark)
  ========================= */
  .mobile-offcanvas {
    background: rgba(16, 24, 39, 0.92) !important;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .mobile-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .mobile-offcanvas .btn-close {
    filter: invert(1) opacity(.9);
  }

  .mobile-offcanvas .nav-link {
    color: rgba(229, 231, 235, .88) !important;
  }

  .mobile-offcanvas .nav-link:hover {
    background: rgba(255, 61, 110, .12) !important;
  }

  /* backdrop */
  .offcanvas-backdrop.show {
    opacity: .55;
  }

  /* =========================
    MOBILE ONLY (<=575px)
  ========================= */
  @media (max-width: 575px) {

    .hero {
      min-height: 72vh;
      padding: 18px 0;
      background:
        radial-gradient(600px 300px at 20% 10%, rgba(255, 61, 110, .16), transparent 60%),
        var(--bg);
    }

    .hero-overlay {
      background: linear-gradient(to bottom,
          rgba(11, 15, 23, .84),
          rgba(11, 15, 23, .62),
          rgba(11, 15, 23, .25));
    }

    .hero-inner {
      padding: 0 12px;
    }

    .hero .row {
      row-gap: 14px;
    }

    .chip {
      font-size: 12px;
      padding: 6px 12px;
    }

    .hero h1 {
      font-size: 26px;
      line-height: 1.25;
      margin-bottom: 6px;
    }

    .hero p.lead {
      font-size: 14px;
      margin-bottom: 12px;
    }

    .hero .btn {
      padding: 10px 16px;
      font-size: 14px;
    }

    .hero .d-flex.gap-3 {
      gap: 10px !important;
    }

    .mini-stat {
      padding: 6px 4px;
      border-radius: 12px;
      text-align: center;
    }

    .mini-stat h5 {
      font-size: 15px;
    }

    .mini-stat p {
      font-size: 11px;
    }

    .hero-offer-card {
      padding: 14px;
      border-radius: 16px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    }

    .hero-offer-card .fs-3 {
      font-size: 20px !important;
    }

    #categories {
      padding-top: 18px !important;
    }

    .cat-card {
      height: 150px;
      border-radius: 16px;
    }

    .cat-overlay {
      padding: 10px;
    }

    .cat-overlay h5 {
      font-size: 14px;
      margin: 0;
    }

    .cat-overlay p,
    .cat-overlay button {
      display: none;
    }

    .search-wrap {
      width: 100%;
      flex-wrap: nowrap;
    }

    .search-input {
      flex: 1;
      min-width: 0;
    }

    .search-btn {
      flex: 0 0 110px;
      white-space: nowrap;
    }

    .new-row-scroll {
      flex-wrap: nowrap !important;
      display: flex !important;
      overflow-x: auto;
      gap: 15px;
      padding: 10px 15px 20px 15px; /* Space on both left and right */
      margin: 0 -15px 15px -5px !important; /* Negative on both sides for full bleed */
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .new-row-scroll::-webkit-scrollbar {
      display: none;
    }

    .new-row-scroll>[class*="col-"] {
      flex: 0 0 auto;
      width: 78vw; /* Slightly smaller for better peek */
      max-width: 320px;
      scroll-snap-align: start;
      padding: 0 !important;
    }

    .p-img img {
      height: 250px; /* Balanced height */
    }


    #new .container {
      position: relative;
    }

    #new .container::after {
      display: none;
    }

    .mobile-offcanvas {
      width: min(92vw, 420px) !important;
      left: 50% !important;
      margin-top: 20px;
      border-radius: 20px !important;
      max-height: 85vh !important;
      overflow: hidden;
      box-shadow: 0 35px 90px rgba(0, 0, 0, .55);
      background: rgba(16, 24, 39, 0.92) !important;

      opacity: 0;
      transform: translate(-50%, -120%) scale(0.96);
      transition: transform .6s cubic-bezier(.22, 1, .36, 1), opacity .35s ease;
    }

    .offcanvas.show.mobile-offcanvas {
      opacity: 1;
      transform: translate(-50%, 0) scale(1);
    }

    .mobile-offcanvas.is-closing {
      opacity: 0;
      transform: translate(-50%, -40px) scale(0.95);
      transition: transform .45s cubic-bezier(.4, 0, .2, 1), opacity .35s ease;
    }

    .mobile-offcanvas-body {
      overflow-y: auto;
      padding-bottom: 16px;
    }

    .mobile-offcanvas .nav-link {
      padding: 12px 12px;
      border-radius: 14px;
      font-weight: 600;
    }

    .mobile-offcanvas .nav-item {
      opacity: 0;
      transform: translateY(14px);
    }

    .offcanvas.show .nav-item {
      animation: navItemFade .45s ease forwards;
    }

    .offcanvas.show .nav-item:nth-child(1) {
      animation-delay: .10s;
    }

    .offcanvas.show .nav-item:nth-child(2) {
      animation-delay: .16s;
    }

    .offcanvas.show .nav-item:nth-child(3) {
      animation-delay: .22s;
    }

    .offcanvas.show .nav-item:nth-child(4) {
      animation-delay: .28s;
    }

    .offcanvas.show .nav-item:nth-child(5) {
      animation-delay: .34s;
    }

    @keyframes navItemFade {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .mobile-offcanvas.is-closing .nav-item {
      animation: navItemOut .25s ease forwards;
    }

    .mobile-offcanvas.is-closing .nav-item:nth-child(1) {
      animation-delay: .18s;
    }

    .mobile-offcanvas.is-closing .nav-item:nth-child(2) {
      animation-delay: .14s;
    }

    .mobile-offcanvas.is-closing .nav-item:nth-child(3) {
      animation-delay: .10s;
    }

    .mobile-offcanvas.is-closing .nav-item:nth-child(4) {
      animation-delay: .06s;
    }

    .mobile-offcanvas.is-closing .nav-item:nth-child(5) {
      animation-delay: .02s;
    }

    @keyframes navItemOut {
      to {
        opacity: 0;
        transform: translateY(12px);
      }
    }
  }

  /* =========================
    🌞 PRO LIGHT THEME
    (only when body has .light-theme)
  ========================= */
  body.light-theme {
    --bg: #f6f7fb;
    --panel: #ffffff;
    --panel-2: #ffffff;
    --text: #0f172a;
    /* strong dark text */
    --muted: #475569;
    /* readable muted */
    --border: rgba(15, 23, 42, .10);

    background:
      radial-gradient(900px 500px at 20% 10%, rgba(255, 61, 110, .10), transparent 60%),
      radial-gradient(900px 500px at 80% 35%, rgba(59, 130, 246, .08), transparent 60%),
      var(--bg);
    color: var(--text);
  }

  /* smooth theme feel */
  body,
  .navbar,
  .p-card,
  .hero-offer-card,
  .mini-stat,
  .deal-bar,
  .footer,
  .mobile-offcanvas {
    transition: background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  }

  /* ---------- Navbar ---------- */
  body.light-theme .navbar {
    background: rgba(255, 255, 255, .86) !important;
    border-bottom: 1px solid rgba(15, 23, 42, .08) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  body.light-theme .brand {
    color: var(--text) !important;
  }

  body.light-theme .nav-link {
    color: rgba(15, 23, 42, .78) !important;
  }

  body.light-theme .nav-link:hover {
    color: rgba(15, 23, 42, 1) !important;
  }

  /* icon buttons on light */
  body.light-theme .icon-btn {
    background: rgba(15, 23, 42, .04) !important;
    border: 1px solid rgba(15, 23, 42, .08) !important;
    color: rgba(15, 23, 42, .85) !important;
  }

  body.light-theme .icon-btn:hover {
    background: rgba(255, 61, 110, .10) !important;
    border-color: rgba(255, 61, 110, .20) !important;
    color: rgba(15, 23, 42, 1) !important;
  }

  /* toggler icon visible */
  body.light-theme .navbar-toggler-icon {
    filter: none;
  }

  /* ---------- HERO (light should still feel premium) ---------- */
  body.light-theme .hero-bg-video {
    filter: saturate(1.05) contrast(1.05) brightness(.95);
  }

  body.light-theme .hero-overlay {
    background: linear-gradient(to right,
        rgba(246, 247, 251, .92),
        rgba(246, 247, 251, .72),
        rgba(246, 247, 251, .22));
  }

  /* chip */
  body.light-theme .chip {
    background: rgba(255, 61, 110, .12);
    border: 1px solid rgba(255, 61, 110, .18);
    color: #9f1239;
  }

  /* mini stats */
  body.light-theme .mini-stat {
    background: rgba(255, 255, 255, .92) !important;
    border: 1px solid rgba(15, 23, 42, .08) !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, .08);
  }

  body.light-theme .mini-stat p {
    color: rgba(71, 85, 105, .95) !important;
  }

  /* offer card */
  body.light-theme .hero-offer-card {
    background: rgba(255, 255, 255, .92) !important;
    border: 1px solid rgba(15, 23, 42, .10) !important;
    box-shadow: 0 20px 55px rgba(15, 23, 42, .12);
  }

  /* text-muted readable */
  body.light-theme .text-muted {
    color: rgba(71, 85, 105, .95) !important;
  }

  /* ---------- Sections ---------- */
  body.light-theme #new.bg-light {
    background: transparent !important;
    border-top: 1px solid rgba(15, 23, 42, .06);
    border-bottom: 1px solid rgba(15, 23, 42, .06);
  }

  /* ---------- Product Cards ---------- */
  body.light-theme .p-card {
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, .10) !important;
    box-shadow: 0 14px 35px rgba(15, 23, 42, .10);
  }

  body.light-theme .p-card:hover {
    box-shadow: 0 24px 55px rgba(15, 23, 42, .16);
    border-color: rgba(255, 61, 110, .22) !important;
  }

  /* card footer in light should NOT be white on white dull */
  body.light-theme .p-card .card-footer {
    background: rgba(15, 23, 42, .02) !important;
    border-top: 1px solid rgba(15, 23, 42, .06) !important;
  }

  /* badges / rating look premium */
  body.light-theme .rating {
    background: rgba(15, 23, 42, .92);
    border: none;
  }

  body.light-theme .tag {
    background: rgba(15, 23, 42, .92);
    border: none;
  }

  body.light-theme .tag-sale {
    background: #16a34a;
  }

  body.light-theme .tag-hot {
    background: var(--accent);
  }

  /* ---------- Search input ---------- */
  body.light-theme .search-input {
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, .14) !important;
    color: var(--text) !important;
  }

  body.light-theme .search-input::placeholder {
    color: rgba(71, 85, 105, .75) !important;
  }

  body.light-theme .search-input:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 61, 110, .18) !important;
    border-color: rgba(255, 61, 110, .35) !important;
  }

  /* ---------- Buttons (your add/buy) ---------- */
  body.light-theme .btn-warning {
    box-shadow: 0 12px 22px rgba(245, 158, 11, .18);
  }

  body.light-theme .btn-light {
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, .12) !important;
  }

  /* ---------- Deal bar ---------- */
  body.light-theme .deal-bar {
    background: linear-gradient(to right, rgba(15, 23, 42, .92), rgba(255, 61, 110, .35));
    border: 1px solid rgba(15, 23, 42, .08);
  }

  /* ---------- Offcanvas ---------- */
  body.light-theme .mobile-offcanvas {
    background: rgba(255, 255, 255, .92) !important;
    border: 1px solid rgba(15, 23, 42, .10) !important;
    color: var(--text);
  }

  body.light-theme .mobile-offcanvas .btn-close {
    filter: none;
  }

  /* ---------- Footer (keep dark footer even in light theme - looks pro) ---------- */
  body.light-theme .footer {
    background: #05070c;
    color: #fff;
  }

  body.light-theme .footer .text-muted {
    color: rgba(255, 255, 255, .70) !important;
  }

  /* =========================
    🌗 Theme Toggle Premium Animations
  ========================= */

  /* button base */
  .theme-toggle {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
  }

  /* icon animation */
  #themeIcon {
    display: inline-block;
    transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .25s ease, filter .25s ease;
    will-change: transform;
  }

  /* when switching: little spin */
  .theme-toggle.is-animating #themeIcon {
    transform: rotate(140deg) scale(1.08);
  }

  /* tiny press */
  .theme-toggle:active {
    transform: scale(.96);
  }

  /* Ripple */
  .theme-toggle::after {
    content: "";
    position: absolute;
    left: var(--rx, 50%);
    top: var(--ry, 50%);
    width: 12px;
    height: 12px;
    border-radius: 999px;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 61, 110, .45), rgba(255, 61, 110, 0) 60%);
  }

  .theme-toggle.ripple::after {
    animation: themeRipple .65s ease-out forwards;
  }

  @keyframes themeRipple {
    0% {
      transform: translate(-50%, -50%) scale(0);
      opacity: .0;
    }

    10% {
      opacity: .95;
    }

    100% {
      transform: translate(-50%, -50%) scale(18);
      opacity: 0;
    }
  }

  /* Show arrows only when hovering the image, not the whole card */
  .p-img:hover .carousel-nav-box {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  /* Smooth page fade when theme changes */
  body.theme-switching {
    transition: background-color .25s ease, color .25s ease;
  }

  /* Optional: nicer focus ring */
  .theme-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 .2rem rgba(255, 61, 110, .22) !important;
  }

  /* ✅ OFFCANVAS THEMING FIX */
  .offcanvas.mobile-offcanvas {
    background: rgba(16, 24, 39, 0.92) !important;
    color: #e5e7eb !important;
  }

  .offcanvas.mobile-offcanvas .nav-link {
    color: rgba(229, 231, 235, .88) !important;
  }

  .offcanvas.mobile-offcanvas .nav-link:hover {
    background: rgba(255, 61, 110, .12) !important;
  }

  /* ✅ Light theme override for offcanvas */
  body.light-theme .offcanvas.mobile-offcanvas {
    background: rgba(255, 255, 255, 0.94) !important;
    color: #0f172a !important;
    border: 1px solid rgba(15, 23, 42, .12) !important;
  }

  body.light-theme .offcanvas.mobile-offcanvas .nav-link {
    color: rgba(15, 23, 42, .88) !important;
  }

  body.light-theme .offcanvas.mobile-offcanvas .nav-link:hover {
    background: rgba(255, 61, 110, .10) !important;
  }

  body.light-theme .offcanvas.mobile-offcanvas hr {
    border-color: rgba(15, 23, 42, .14) !important;
  }

  body.light-theme .offcanvas.mobile-offcanvas .btn-close {
    filter: none;
  }

  #searchInput {
    width: 200px;
    height: 40px;
    padding: 10px 15px;
    background: var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: 0.3s ease;
  }

  body.light-theme #searchInput {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  #searchInput:focus {
    border-color: #000;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }

  .products-container {

    margin-top: 30px;

  }

  .product-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    padding: 15px;
    transition: 0.3s;
  }

  .product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
  }

  @media (max-width: 768px) {
    .products-container {
      grid-template-columns: repeat(2, 1fr);
    }

    .product-card img {
      height: 180px;
    }
  }

  /* SIZE SECTION */
  .size-section {
    margin-bottom: 15px;
    width: 100%;
  }

  .size-section label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 15px;
  }

  /* SIZE BUTTONS CONTAINER */
  .size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  /* SIZE BUTTON STYLE */
  .size-btn {
    width: 35px;
    height: 35px;
    border: 1.5px solid #ddd;
    background: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  /* Hover Effect */
  .size-btn:hover {
    border-color: #000;
  }

  /* Selected Size */
  .size-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
  }

  /* Out of stock size */
  .size-btn.disabled {
    background: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
    border-color: #eee;
  }

  /* Mobile Responsive */
  @media (max-width: 576px) {
    .size-btn {
      width: 40px;
      height: 30px;
    }
  }

  /* PRODUCT IMAGE CAROUSEL NAV (New Arrivals) */
  .p-img {
    position: relative !important;
    overflow: hidden !important;
  }

  .carousel-nav-box {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    justify-content: space-between !important;
    padding: 0 10px !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease-in-out !important;
    pointer-events: none !important;
    z-index: 10 !important;
  }

  .p-card:hover .carousel-nav-box {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .box-btn {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(4px) !important;
    border: none !important;
    color: #000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.2s ease !important;
  }

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

  .box-btn i {
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
  }

  body.light-theme .box-btn {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #000 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
  }

  body.light-theme .box-btn:hover {
    background: #fff !important;
  }
   
  .second-logo{
    /* border: 1px solid red; */
    overflow: hidden;
    height: 45px;
    width: 120px;
    object-fit: cover;
      position: relative;
  }

  @media (max-width: 500px) {
    .second-logo{
      overflow: hidden;
      height: 35px;
      width: 80px;
      object-fit: cover;
        position: relative;
    }
  }
  /* ?? PREMIUM PROFILE MODAL STYLES */
  .profile-modal .modal-content {
      background: var(--panel);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .profile-avatar-wrap {
      position: relative;
      display: inline-block;
  }

  .modal-action-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .modal-action-card:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-4px);
      border-color: rgba(255, 255, 255, 0.15);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .transition {
      transition: all 0.3s ease;
  }

  .hover-lift:hover {
      transform: translateY(-2px);
  }

  .btn-accent-gradient {
      background: linear-gradient(135deg, var(--accent) 0%, #ff6b8b 100%);
      transition: all 0.3s ease;
  }

  .btn-accent-gradient:hover {
      filter: brightness(1.1);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(255, 61, 110, 0.3);
  }

  body.light-theme .profile-modal .modal-content {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08) !important;
  }

  body.light-theme .modal-action-card {
      background: #f8fafc;
      border: 1px solid rgba(0, 0, 0, 0.05);
  }

  body.light-theme .modal-action-card:hover {
      background: #f1f5f9;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .text-muted-50 {
      color: rgba(156, 163, 175, 0.6);
  }

  body.light-theme .text-white-50 {
      color: rgba(0, 0, 0, 0.5) !important;
  }
  
  body.light-theme .modal-header h5 {
      color: white !important;
  }
  body.light-theme .modal-header h4 {
      color: white !important;
  }

  /* ── ADDRESS SECTION IN MODAL ── */
  .modal-address-section {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 16px;
      padding: 15px;
      margin-bottom: 20px;
  }

  body.light-theme .modal-address-section {
      background: #f8fafc;
      border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .address-edit-btn {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: var(--accent);
      transition: all 0.2s ease;
  }

  .address-edit-btn:hover {
      background: var(--accent);
      color: #000;
      transform: scale(1.05);
  }

  /* ── ADDRESS FORM MODAL (Global) ── */
  .address-modal .modal-content {
      border-radius: 24px !important;
  }

  .address-modal .form-control {
      background: rgba(255, 255, 255, 0.05) !important;
      border: 1px solid rgba(255, 255, 255, 0.1) !important;
      border-radius: 12px !important;
      color: var(--text) !important;
      padding: 12px 15px !important;
  }

  body.light-theme .address-modal .form-control {
      background: #f1f5f9 !important;
      border: 1px solid rgba(0, 0, 0, 0.1) !important;
      color: #111827 !important;
  }

  .address-modal .form-control:focus {
      border-color: var(--accent) !important;
      box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.1) !important;
  }

/* =========================
   PRODUCT CAROUSEL NAV
========================= */
.image-container {
  overflow: hidden;
  position: relative;
}

.carousel-nav-btns {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

.card-custom:hover .carousel-nav-btns {
  opacity: 1;
}

.nav-btn {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: #000 !important;
  display: grid;
  place-items: center;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, background 0.2s !important;
}

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

.nav-btn i {
  font-size: 14px;
}

/* Search Placeholder Theme Colors */
.search-input-themed::placeholder {
  color: var(--text) !important;
  opacity: 0.8 !important;
}

.search-input-themed::-webkit-input-placeholder {
  color: var(--text) !important;
  opacity: 0.8 !important;
}

.search-input-themed::-moz-placeholder {
  color: var(--text) !important;
  opacity: 0.8 !important;
}

.search-input-themed:-ms-input-placeholder {
  color: var(--text) !important;
  opacity: 0.8 !important;
}

/* ── UI Edits Classes ── */
.address-name-text {
  color: #ffffff !important;
}
body.light-theme .address-name-text {
  color: #000000 !important;
}

.modal-label-responsive {
  color: rgba(255, 255, 255, 0.5) !important;
}
body.light-theme .modal-label-responsive {
  color: #000000 !important;
}

.btn-vanta-border {
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}
body.light-theme .btn-vanta-border {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
}

/* Specific white border for View More in dark mode */
.btn-vanta-border-white {
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
}
body.light-theme .btn-vanta-border-white {
  border: 1px solid rgba(0, 0, 0, 0.4) !important;
}

.product-wishlist-heart:hover {
  filter: drop-shadow(0 0 2px #fff);
  -webkit-filter: drop-shadow(0 0 2px #fff);
}

.manage-address-header {
  background: #111 !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}
.manage-address-header .modal-title {
  color: #fff !important;
}
.modal-title-manage-address{
  color: #fff !important;
}

/* --- Custom Badge Shimmer Styles --- */
.badge-shimmer {
    position: relative;
    overflow: hidden;
    background-size: 200% auto;
    animation: shimmer-bg 2.5s infinite linear;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.35em 0.8em;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-shimmer.badge-new {
    background-image: linear-gradient(90deg, #d4af37 0%, #ffeaa7 50%, #d4af37 100%);
    color: #1a1a1a;
    border-color: rgba(212, 175, 55, 0.6);
}

.badge-shimmer.badge-recent {
    background-image: linear-gradient(90deg, #0984e3 0%, #74b9ff 50%, #0984e3 100%);
    color: #fff;
    border-color: rgba(9, 132, 227, 0.6);
}

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