    /* ================================================================
       CSS CUSTOM PROPERTIES — Edit here to retheme the entire site
       ================================================================ */
    :root {
      --c-nav: #CC8896;
      /* Navbar pink  */
      --c-accent: #E8758A;
      /* Hot‑pink CTA */
      --c-accent-hov: #D4607A;
      --c-pink-light: #FCE8EC;
      --c-pink-mid: #F1A8B5;
      --c-bg: #F0F3F8;
      /* Page background */
      --c-white: #FFFFFF;
      --c-dark: #1A1A2E;
      /* Dark text / card header */
      --c-medium: #4E4E6A;
      --c-muted: #8E8EA0;
      --c-card-bg: #1A1A1A;

      --radius: 12px;
      --shadow-sm: 0 4px 15px rgba(0, 0, 0, .06);
      --shadow-md: 0 8px 30px rgba(0, 0, 0, .09);
      --shadow-pink: 0 8px 30px rgba(204, 136, 150, .25);

      --ease: cubic-bezier(.4, 0, .2, 1);
      --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
      --dur: .3s;
    }

    /* ================================================================
       RESET & BASE
       ================================================================ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--c-bg);
      color: var(--c-dark);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      cursor: pointer;
      font-family: inherit;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    ::-webkit-scrollbar {
      width: 7px;
    }

    ::-webkit-scrollbar-track {
      background: var(--c-pink-light);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--c-pink-mid);
      border-radius: 4px;
    }

    /* ================================================================
       KEYFRAME ANIMATIONS
       ================================================================ */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(36px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    @keyframes fadeLeft {
      from {
        opacity: 0;
        transform: translateX(-28px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    @keyframes marquee {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    @keyframes pulseRing {

      0%,
      100% {
        transform: scale(1);
        opacity: .9
      }

      50% {
        transform: scale(1.35);
        opacity: .4
      }
    }

    @keyframes starPop {
      0% {
        transform: scale(0) rotate(-30deg);
        opacity: 0
      }

      65% {
        transform: scale(1.3) rotate(6deg)
      }

      100% {
        transform: scale(1) rotate(0);
        opacity: 1
      }
    }

    @keyframes ripple {
      to {
        transform: scale(5);
        opacity: 0
      }
    }

    @keyframes countPop {

      0%,
      100% {
        transform: scale(1)
      }

      50% {
        transform: scale(1.5)
      }
    }

    @keyframes shimmer {
      from {
        background-position: -800px 0
      }

      to {
        background-position: 800px 0
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-8px)
      }
    }

    /* ================================================================
       SCROLL‑REVEAL SYSTEM
       ================================================================ */
    .js-reveal {
      opacity: 0;
      transform: translateY(38px);
      transition: opacity .7s var(--ease), transform .7s var(--ease);
    }

    .js-reveal.is-visible {
      opacity: 1;
      transform: none;
    }

    .js-stagger>* {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .55s var(--ease), transform .55s var(--ease);
    }

    .js-stagger.is-visible>*:nth-child(1) {
      opacity: 1;
      transform: none;
      transition-delay: .00s;
    }

    .js-stagger.is-visible>*:nth-child(2) {
      opacity: 1;
      transform: none;
      transition-delay: .10s;
    }

    .js-stagger.is-visible>*:nth-child(3) {
      opacity: 1;
      transform: none;
      transition-delay: .20s;
    }

    .js-stagger.is-visible>*:nth-child(4) {
      opacity: 1;
      transform: none;
      transition-delay: .30s;
    }

    .js-stagger.is-visible>*:nth-child(5) {
      opacity: 1;
      transform: none;
      transition-delay: .40s;
    }

    /* ================================================================
       ANNOUNCEMENT BAR
       ================================================================ */
    .bar {
      background: linear-gradient(90deg, var(--c-nav), #E8A0AE, var(--c-nav));
      color: #fff;
      text-align: center;
      padding: 9px 20px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: .4px;
    }

    .bar a {
      color: #fff;
      text-decoration: underline;
      margin-left: 6px;
    }

    /* ================================================================
       NAVBAR
       ================================================================ */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 900;
      background: var(--c-nav);
      box-shadow: 0 2px 16px rgba(204, 136, 150, .28);
      transition: background var(--dur) var(--ease),
        box-shadow var(--dur) var(--ease),
        backdrop-filter var(--dur);
    }

    .navbar.is-scrolled {
      background: rgba(204, 136, 150, .88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 4px 24px rgba(204, 136, 150, .38);
    }

    .nav-inner {
      max-width: 1380px;
      margin: 0 auto;
      padding: 11px 24px;
      display: flex;
      align-items: center;
      gap: 18px;
    }

    /* Nav links */
    .nav-links {
      list-style: none;
      display: flex;
      gap: 2px;
    }

    .nav-links>li {
      position: relative;
    }

    .nav-links a {
      display: block;
      color: #fff;
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: .8px;
      text-transform: uppercase;
      padding: 7px 12px;
      border-radius: 6px;
      transition: background var(--dur);
      white-space: nowrap;
    }

    .nav-links a:hover,
    .nav-links a.nav-active {
      background: rgba(255, 255, 255, .18);
    }
    
    /* Dropdown */
    .has-drop:hover .drop-menu {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: all;
    }

    .drop-menu {
      position: absolute;
      top: calc(100% + 8px);
      left: -8px;
      background: var(--c-white);
      border-radius: 10px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
      min-width: 200px;
      padding: 8px 0;
      opacity: 0;
      transform: translateY(-10px) scale(.96);
      pointer-events: none;
      transition: all .22s var(--ease);
      z-index: 50;
    }

    .drop-menu a {
      display: block;
      color: var(--c-medium);
      font-size: 13.5px;
      font-weight: 500;
      padding: 10px 18px;
      letter-spacing: normal;
      text-transform: none;
      transition: background .18s, color .18s;
      border-radius: 0;
    }

    .drop-menu a:hover {
      background: var(--c-pink-light);
      color: var(--c-accent);
    }

    /* Logo */
    .logo {
      font-family: 'Dancing Script', cursive;
      font-size: 30px;
      font-weight: 700;
      color: #fff;
      white-space: nowrap;
      transition: transform var(--dur) var(--ease-bounce);
      text-shadow: 0 2px 8px rgba(0, 0, 0, .12);
    }

    .logo:hover {
      transform: scale(1.04);
      color: #000;
    }

    /* Search */
    .nav-search {
      flex: 1;
      max-width: 380px;
      position: relative;
    }

    .nav-search input {
      width: 100%;
      padding: 9.5px 42px 9.5px 16px;
      border: 2px solid rgba(255, 255, 255, .45);
      border-radius: 22px;
      background: rgba(255, 255, 255, .88);
      font-size: 13.5px;
      font-family: inherit;
      outline: none;
      transition: border-color var(--dur), background var(--dur), box-shadow var(--dur);
      color: var(--c-dark);
    }

    .nav-search input:focus {
      border-color: #fff;
      background: #fff;
      box-shadow: 0 0 0 3px rgba(255, 255, 255, .28);
    }

    .nav-search input::placeholder {
      color: #aaa;
    }

    .nav-search-btn {
      position: absolute;
      right: 13px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: var(--c-nav);
      font-size: 15px;
      transition: transform var(--dur) var(--ease-bounce);
      line-height: 1;
    }

    .nav-search-btn:hover {
      transform: translateY(-50%) scale(1.22);
    }

    /* Action buttons */
    .nav-actions {
      display: flex;
      gap: 10px;
      margin-left: auto;
    }

    .nav-action-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, .2);
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, .38);
      padding: 7px 14px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 500;
      transition: background var(--dur), transform var(--dur) var(--ease-bounce), box-shadow var(--dur);
    }

    .nav-action-btn:hover {
      background: rgba(255, 255, 255, .32);
      transform: translateY(-2px);
      box-shadow: 0 5px 14px rgba(0, 0, 0, .1);
    }

    .badge {
      background: var(--c-dark);
      color: #fff;
      min-width: 18px;
      height: 18px;
      border-radius: 9px;
      font-size: 10.5px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 4px;
      transition: transform var(--dur) var(--ease-bounce);
    }

    .badge.pop {
      animation: countPop .35s var(--ease-bounce);
    }

    /* user dropdown */

    /* ================================================================
   USER DROPDOWN (Profile & Logout only)
   ================================================================ */
    .user-dropdown {
      position: relative;
    }

    .user-dropdown:hover .user-drop-menu,
    .user-dropdown.active .user-drop-menu {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: all;
    }

    .user-drop-menu {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      background: var(--c-white);
      border-radius: 10px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
      min-width: 180px;
      padding: 8px 0;
      opacity: 0;
      transform: translateY(-10px) scale(.96);
      pointer-events: none;
      transition: all .22s var(--ease);
      z-index: 50;
    }

    .user-drop-menu a {
      display: block;
      color: var(--c-medium);
      font-size: 13.5px;
      font-weight: 500;
      padding: 10px 18px;
      transition: background .18s, color .18s;
      text-transform: none;
      letter-spacing: normal;
      border-radius: 0;
    }

    .user-drop-menu a:hover {
      background: var(--c-pink-light);
      color: var(--c-accent);
    }

    .user-drop-divider {
      height: 1px;
      background: #f0f0f5;
      margin: 6px 14px;
    }

    .user-drop-menu .logout-link {
      color: #ff4d4f;
    }

    .user-drop-menu .logout-link:hover {
      background: #fff1f0;
      color: #ff4d4f;
    }

    /* ================================================================
       LAYOUT WRAPPER
       ================================================================ */
    .page-wrap {
      max-width: 1380px;
      margin: 0 auto;
      padding: 22px 24px 0;
    }

    .hero-layout {
      display: grid;
      grid-template-columns: 248px 1fr;
      gap: 22px;
      margin-bottom: 28px;
    }

    /* ================================================================
       SIDEBAR
       ================================================================ */
    .sidebar {
      background: var(--c-white);
      border-radius: var(--radius);
      padding: 6px 0;
      box-shadow: var(--shadow-sm);
      position: sticky;
      top: 72px;
      height: fit-content;
      animation: fadeLeft .6s var(--ease) both;
    }

    .sidebar-link {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 13px 20px;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--c-medium);
      border-left: 3px solid transparent;
      transition: border-color var(--dur), color var(--dur), background var(--dur);
      position: relative;
      overflow: hidden;
    }

    .sidebar-link::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--c-pink-light);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--dur) var(--ease);
    }

    .sidebar-link:hover::before {
      transform: scaleX(1);
    }

    .sidebar-link:hover {
      border-left-color: var(--c-accent);
      color: var(--c-accent);
    }

    .sidebar-link .lbl {
      position: relative;
      z-index: 1;
    }

    .sidebar-link .arr {
      color: var(--c-pink-mid);
      margin-right: auto;
      margin-left: 0;
      font-size: 13px;
      position: relative;
      z-index: 1;
      transition: transform var(--dur) var(--ease);
    }

    .sidebar-link:hover .arr {
      transform: translateX(4px);
    }

    .sidebar-hr {
      height: 1px;
      background: #F0F0F5;
      margin: 3px 14px;
    }

    /* ================================================================
       HERO CAROUSEL
       ================================================================ */
    .hero {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 16/6.5;
      box-shadow: var(--shadow-md);
      animation: fadeIn .7s var(--ease) both;
    }

    .hero-slides {
      position: absolute;
      inset: 0;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity .85s var(--ease);
    }

    .hero-slide.active {
      opacity: 1;
    }

    /* Placeholder slide backgrounds */
    .s1 {
      background: linear-gradient(120deg, #8EC5FC 0%, #E0C3FC 100%);
    }

    .s2 {
      background: linear-gradient(120deg, #FCE4EC 0%, #F48FB1 100%);
    }

    .s3 {
      background: linear-gradient(120deg, #D4FC79 0%, #96E6A1 100%);
    }

    .slide-deco {
      position: absolute;
      right: 8%;
      top: 8%;
      bottom: 8%;
      width: 52%;
      background: rgba(255, 255, 255, .18);
      border-radius: 18px;
      backdrop-filter: blur(8px);
    }

    .slide-deco::before {
      content: '';
      position: absolute;
      inset: 20px;
      border: 2px solid rgba(255, 255, 255, .3);
      border-radius: 12px;
    }

    /* Overlay & text */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(0, 0, 0, .42) 0%, transparent 60%);
      z-index: 2;
    }

    .hero-text {
      position: absolute;
      left: 48px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      color: #fff;
    }

    .hero-tag {
      display: inline-block;
      background: var(--c-accent);
      color: #fff;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 20px;
      margin-bottom: 14px;
    }

    .hero-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 3.8vw, 50px);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 12px;
      text-shadow: 0 3px 16px rgba(0, 0, 0, .18);
    }

    .hero-text p {
      font-size: clamp(12.5px, 1.4vw, 15px);
      opacity: .9;
      max-width: 300px;
      line-height: 1.6;
      margin-bottom: 22px;
    }

    .hero-cta {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* Nav arrows */
    .hero-arrows {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 14px;
      z-index: 4;
      pointer-events: none;
    }

    .hero-arr {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, .85);
      border: none;
      border-radius: 50%;
      font-size: 18px;
      color: var(--c-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: all;
      transition: background var(--dur), transform var(--dur) var(--ease-bounce), box-shadow var(--dur);
    }

    .hero-arr:hover {
      background: #fff;
      transform: scale(1.12);
      box-shadow: 0 5px 18px rgba(0, 0, 0, .14);
    }

    /* Dots */
    .hero-dots {
      position: absolute;
      bottom: 14px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 7px;
      z-index: 4;
    }

    .hero-dot {
      height: 8px;
      width: 8px;
      border-radius: 4px;
      background: rgba(255, 255, 255, .45);
      border: none;
      transition: width var(--dur) var(--ease), background var(--dur);
    }

    .hero-dot.active {
      width: 24px;
      background: #fff;
    }

    /* ================================================================
       BUTTONS (reusable)
       ================================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: none;
      border-radius: 22px;
      font-family: inherit;
      font-weight: 600;
      font-size: 13.5px;
      padding: 11px 22px;
      transition: transform var(--dur) var(--ease-bounce), box-shadow var(--dur);
      position: relative;
      overflow: hidden;
    }

    .btn::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255, 255, 255, .3);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width .5s var(--ease), height .5s var(--ease), opacity .5s;
    }

    .btn:active::after {
      width: 300px;
      height: 300px;
      opacity: 0;
    }

    .btn:hover {
      transform: translateY(-3px);
    }

    .btn-primary {
      background: var(--c-accent);
      color: #fff;
    }

    .btn-primary:hover {
      box-shadow: 0 8px 22px rgba(232, 117, 138, .42);
    }

    .btn-outline-white {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255, 255, 255, .7);
    }

    .btn-outline-white:hover {
      background: rgba(255, 255, 255, .2);
      border-color: #fff;
    }

    .btn-sm {
      padding: 8px 18px;
      font-size: 12.5px;
      border-radius: 18px;
    }

    /* ================================================================
       BRAND MARQUEE
       ================================================================ */
    .brands {
      max-width: 1380px;
      margin: 0 auto 30px;
      padding: 0 24px;
    }

    .brands-inner {
      background: var(--c-white);
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      padding: 22px 0;
      overflow: hidden;
      position: relative;
    }

    .brands-inner::before,
    .brands-inner::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
    }

    .brands-inner::before {
      left: 0;
      background: linear-gradient(to right, #fff, transparent);
    }

    .brands-inner::after {
      right: 0;
      background: linear-gradient(to left, #fff, transparent);
    }

    .brands-track {
      display: flex;
      gap: 56px;
      width: max-content;
      animation: marquee 22s linear infinite;
    }

    .brands-track:hover {
      animation-play-state: paused;
    }

    .brand-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 17px;
      font-weight: 700;
      letter-spacing: .6px;
      color: #b0b0be;
      white-space: nowrap;
      padding: 0 8px;
      transition: color var(--dur);
    }

    .brand-item:hover {
      color: var(--c-accent);
    }

    /* ================================================================
       SECTION WRAPPERS
       ================================================================ */
    .section {
      max-width: 1380px;
      margin: 0 auto 38px;
      padding: 0 24px;
    }

    .sec-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 22px;
    }

    .sec-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 2.8vw, 30px);
      color: var(--c-accent);
      font-weight: 700;
      position: relative;
      padding-bottom: 10px;
    }

    .sec-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 36px;
      height: 3px;
      background: var(--c-pink-mid);
      border-radius: 2px;
      transition: width .45s var(--ease);
    }

    .sec-title:hover::after {
      width: 100%;
    }

    /* Carousel nav */
    .car-nav {
      display: flex;
      gap: 8px;
    }

    .car-btn {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--c-white);
      border: 1.5px solid #e4e4f0;
      color: var(--c-medium);
      font-size: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--dur), color var(--dur), transform var(--dur) var(--ease-bounce), box-shadow var(--dur);
    }

    .car-btn:hover {
      background: var(--c-accent);
      color: #fff;
      border-color: var(--c-accent);
      transform: scale(1.12);
      box-shadow: 0 4px 14px rgba(232, 117, 138, .32);
    }

    /* ================================================================
       CATEGORY CARDS
       ================================================================ */
    .cat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .cat-card {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      aspect-ratio: 4/3;
      box-shadow: var(--shadow-sm);
    }

    .cat-bg {
      width: 100%;
      height: 100%;
      transition: transform .55s var(--ease);
      position: relative;
    }

    .cat-card:hover .cat-bg {
      transform: scale(1.08);
    }

    /* Gradient backgrounds for categories */
    .cb1 {
      background: linear-gradient(135deg, #ffecd2, #fcb69f);
    }

    .cb2 {
      background: linear-gradient(135deg, #e0c3fc, #8ec5fc);
    }

    .cb3 {
      background: linear-gradient(135deg, #fbc2eb, #a6c1ee);
    }

    .cb4 {
      background: linear-gradient(135deg, #c2e9fb, #81ccf5);
    }

    /* Fabric‑like SVG pattern overlay */
    .cat-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.18'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3Ccircle cx='0' cy='0' r='3'/%3E%3Ccircle cx='40' cy='0' r='3'/%3E%3Ccircle cx='0' cy='40' r='3'/%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3C/g%3E%3C/svg%3E");
    }

    .cat-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, transparent 55%);
      display: flex;
      align-items: flex-end;
      padding: 18px;
      z-index: 2;
    }

    .cat-label {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
      transform: translateY(6px);
      transition: transform var(--dur) var(--ease);
    }

    .cat-count {
      font-size: 12px;
      color: rgba(255, 255, 255, .8);
      margin-top: 4px;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity var(--dur), transform var(--dur) var(--ease);
    }

    .cat-card:hover .cat-label {
      transform: translateY(-4px);
    }

    .cat-card:hover .cat-count {
      opacity: 1;
      transform: translateY(-4px);
    }

    .cat-shop-tag {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 3;
      background: rgba(255, 255, 255, .92);
      color: var(--c-accent);
      font-size: 11px;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 14px;
      opacity: 0;
      transform: translateY(-8px);
      transition: opacity var(--dur), transform var(--dur) var(--ease-bounce);
      border: none;
    }

    .cat-card:hover .cat-shop-tag {
      opacity: 1;
      transform: translateY(0);
    }

    /* ================================================================
       PRODUCT CARDS & CAROUSEL
       ================================================================ */
    .car-overflow {
      overflow: hidden;
    }

    .car-track {
      display: flex;
      gap: 18px;
      transition: transform .52s cubic-bezier(.4, 0, .2, 1);
      will-change: transform;
    }

    .pcard {
      min-width: calc(25% - 14px);
      background: var(--c-white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: transform var(--dur) var(--ease-bounce),
        box-shadow var(--dur);
      position: relative;
    }

    .pcard:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 48px rgba(0, 0, 0, .11);
    }

    .pcard-head {
      background: var(--c-card-bg);
      padding: 11px 15px 9px;
      text-align: center;
    }

    .pcard-head h3 {
      color: #fff;
      font-size: 14.5px;
      font-weight: 600;
      margin-bottom: 7px;
    }

    .stars {
      display: flex;
      justify-content: center;
      gap: 3px;
    }

    .star {
      color: #F48FB1;
      font-size: 13px;
      display: inline-block;
      opacity: 0;
      transform: scale(0) rotate(-30deg);
    }

    .pcard.in-view .star {
      animation: starPop .4s var(--ease-bounce) both;
    }

    .pcard.in-view .star:nth-child(1) {
      animation-delay: .08s
    }

    .pcard.in-view .star:nth-child(2) {
      animation-delay: .17s
    }

    .pcard.in-view .star:nth-child(3) {
      animation-delay: .26s
    }

    .pcard.in-view .star:nth-child(4) {
      animation-delay: .35s
    }

    .pcard.in-view .star:nth-child(5) {
      animation-delay: .44s
    }

    .pcard-img {
      aspect-ratio: 1.1;
      position: relative;
      overflow: hidden;
    }

    .pcard-img-inner {
      width: 100%;
      height: 100%;
      transition: transform .55s var(--ease);
      position: relative;
    }

    .pcard:hover .pcard-img-inner {
      transform: scale(1.07);
    }

    /* Product BG gradients */
    .pb1 {
      background: linear-gradient(135deg, #ffecd2, #fcb69f)
    }

    .pb2 {
      background: linear-gradient(135deg, #a1c4fd, #c2e9fb)
    }

    .pb3 {
      background: linear-gradient(135deg, #d4fc79, #96e6a1)
    }

    .pb4 {
      background: linear-gradient(135deg, #fbc2eb, #a6c1ee)
    }

    .pb5 {
      background: linear-gradient(135deg, #fddb92, #d1fdff)
    }

    .pb6 {
      background: linear-gradient(135deg, #a18cd1, #fbc2eb)
    }

    .pb7 {
      background: linear-gradient(135deg, #fad0c4, #ffd1ff)
    }

    .pb8 {
      background: linear-gradient(135deg, #c2e9fb, #a1c4fd)
    }

    /* SVG leaf pattern on each card */
    .pcard-img-inner::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='30' cy='30' rx='12' ry='8' fill='none' stroke='rgba(255,255,255,0.25)' stroke-width='1.5'/%3E%3Cellipse cx='30' cy='30' rx='6' ry='4' fill='none' stroke='rgba(255,255,255,0.15)' stroke-width='1'/%3E%3C/svg%3E");
      background-size: 60px 60px;
    }

    .pcard-badge {
      position: absolute;
      top: 11px;
      left: 11px;
      z-index: 2;
      background: var(--c-accent);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 10px;
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    .pcard-wish {
      position: absolute;
      top: 9px;
      right: 9px;
      z-index: 2;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #fff;
      border: none;
      font-size: 15px;
      color: #ccc;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
      opacity: 0;
      transform: translateY(-38px);
      transition: opacity var(--dur), transform var(--dur) var(--ease-bounce), color var(--dur);
    }

    .pcard:hover .pcard-wish {
      opacity: 1;
      transform: translateY(0);
    }

    .pcard-wish:hover {
      transform: scale(1.16) !important;
    }

    .pcard-wish.liked {
      color: var(--c-accent);
    }

    .pcard-foot {
      background: var(--c-card-bg);
      padding: 11px 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .pcard-price {
      color: #fff;
      font-size: 20px;
      font-weight: 700;
      line-height: 1;
    }

    .pcard-price span {
      font-size: 11px;
      font-weight: 400;
      opacity: .65;
    }

    .buy-btn {
      display: flex;
      align-items: center;
      gap: 5px;
      background: var(--c-accent);
      color: #fff;
      border: none;
      border-radius: 18px;
      padding: 8px 15px;
      font-size: 12px;
      font-weight: 600;
      font-family: inherit;
      transition: transform var(--dur) var(--ease-bounce), box-shadow var(--dur);
      position: relative;
      overflow: hidden;
    }

    .buy-btn:hover {
      transform: scale(1.07);
      box-shadow: 0 6px 18px rgba(232, 117, 138, .42);
    }

    /* Ripple */
    .ripple-el {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, .32);
      pointer-events: none;
      transform: scale(0);
      animation: ripple .55s var(--ease) forwards;
    }

    /* ================================================================
       PROMO BANNERS
       ================================================================ */
    .promo-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .promo-card {
      border-radius: var(--radius);
      overflow: hidden;
      height: 196px;
      position: relative;
    }

    .promo-bg {
      position: absolute;
      inset: 0;
      transition: transform .55s var(--ease);
    }

    .promo-card:hover .promo-bg {
      transform: scale(1.06);
    }

    .pm1 {
      background: linear-gradient(135deg, #f093fb, #f5576c);
    }

    .pm2 {
      background: linear-gradient(135deg, #4facfe, #00f2fe);
    }

    .promo-body {
      position: absolute;
      inset: 0;
      padding: 30px 34px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .promo-tag {
      display: inline-block;
      background: #fff;
      color: var(--c-accent);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 3px 12px;
      border-radius: 12px;
      width: fit-content;
      margin-bottom: 10px;
    }

    .promo-body h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 2.4vw, 28px);
      color: #fff;
      font-weight: 700;
      text-shadow: 0 2px 10px rgba(0, 0, 0, .18);
      margin-bottom: 6px;
      line-height: 1.25;
    }

    .promo-body p {
      color: rgba(255, 255, 255, .85);
      font-size: 13px;
      margin-bottom: 14px;
    }

    .promo-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: #fff;
      color: var(--c-dark);
      border-radius: 18px;
      padding: 7px 18px;
      font-size: 12.5px;
      font-weight: 700;
      width: fit-content;
      transition: transform var(--dur) var(--ease-bounce);
    }

    .promo-link:hover {
      transform: translateX(5px);
    }

    /* ================================================================
       TRUST BADGES
       ================================================================ */
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .trust-card {
      background: var(--c-white);
      border-radius: var(--radius);
      padding: 30px 18px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      border: 2px solid transparent;
      transition: transform var(--dur) var(--ease-bounce),
        border-color var(--dur), box-shadow var(--dur);
    }

    .trust-card:hover {
      transform: translateY(-6px);
      border-color: var(--c-pink-light);
      box-shadow: var(--shadow-pink);
    }

    .trust-icon {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: var(--c-pink-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin: 0 auto 14px;
      transition: background var(--dur), transform var(--dur) var(--ease-bounce);
    }

    .trust-card:hover .trust-icon {
      background: var(--c-accent);
      transform: scale(1.14) rotate(6deg);
    }

    .trust-card h3 {
      font-size: 14.5px;
      font-weight: 700;
      margin-bottom: 7px;
    }

    .trust-card p {
      font-size: 12.5px;
      color: var(--c-muted);
      line-height: 1.65;
    }

    /* ================================================================
       FOOTER
       ================================================================ */
    .footer {
      background: var(--c-dark);
      color: #fff;
      padding: 56px 0 0;
      margin-top: 42px;
    }

    .footer-inner {
      max-width: 1380px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 44px;
      padding-bottom: 48px;
    }

    .f-logo {
      font-family: 'Dancing Script', cursive;
      font-size: 34px;
      font-weight: 700;
      color: #fff;
      display: block;
      margin-bottom: 14px;
    }

    .f-about p {
      font-size: 13px;
      color: rgba(255, 255, 255, .55);
      line-height: 1.82;
      margin-bottom: 18px;
    }

    .f-contact {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      margin-bottom: 11px;
      font-size: 13px;
      color: rgba(255, 255, 255, .65);
    }

    .f-contact .ico {
      color: var(--c-pink-mid);
      flex-shrink: 0;
      margin-top: 2px;
      font-size: 14px;
    }

    .footer h4 {
      font-size: 14.5px;
      font-weight: 700;
      margin-bottom: 18px;
      padding-bottom: 10px;
      position: relative;
    }

    .footer h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 28px;
      height: 2.5px;
      background: var(--c-pink-mid);
      border-radius: 2px;
    }

    .f-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .f-links a {
      color: rgba(255, 255, 255, .55);
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color var(--dur), padding-left var(--dur);
    }

    .f-links a::before {
      content: '›';
      color: var(--c-pink-mid);
    }

    .f-links a:hover {
      color: var(--c-pink-mid);
      padding-left: 4px;
    }

    .social-row {
      display: flex;
      gap: 10px;
      margin-bottom: 22px;
    }

    .soc-btn {
      width: 38px;
      height: 38px;
      border-radius: 9px;
      background: rgba(255, 255, 255, .1);
      border: 1.5px solid rgba(255, 255, 255, .18);
      color: rgba(255, 255, 255, .65);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 700;
      transition: background var(--dur), border-color var(--dur),
        color var(--dur), transform var(--dur) var(--ease-bounce);
    }

    .soc-btn:hover {
      background: var(--c-accent);
      border-color: var(--c-accent);
      color: #fff;
      transform: translateY(-3px);
    }

    .pay-row {
      display: flex;
      gap: 7px;
      flex-wrap: wrap;
    }

    .pay-chip {
      background: rgba(255, 255, 255, .12);
      border-radius: 6px;
      padding: 4px 10px;
      font-size: 11px;
      font-weight: 700;
      color: rgba(255, 255, 255, .78);
      letter-spacing: .5px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .1);
      padding: 18px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12.5px;
      color: rgba(255, 255, 255, .38);
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-bottom a {
      color: var(--c-pink-mid);
    }

    .secure-chips {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .secure-chip {
      display: flex;
      align-items: center;
      gap: 4px;
      background: rgba(255, 255, 255, .08);
      border-radius: 5px;
      padding: 4px 9px;
      font-size: 11px;
    }

    /* ================================================================
       WHATSAPP FLOAT + BACK-TO-TOP
       ================================================================ */
    .wa-wrap {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 800;
    }

    .wa-btn {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      font-size: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 20px rgba(37, 211, 102, .38);
      transition: transform var(--dur) var(--ease-bounce), box-shadow var(--dur);
      position: relative;
      text-decoration: none;
    }

    .wa-btn::before {
      content: '';
      position: absolute;
      inset: -7px;
      border: 2px solid rgba(37, 211, 102, .38);
      border-radius: 50%;
      animation: pulseRing 2.4s ease infinite;
    }

    .wa-btn:hover {
      transform: scale(1.14);
      box-shadow: 0 10px 28px rgba(37, 211, 102, .5);
    }

    .wa-tip {
      position: absolute;
      right: 66px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--c-dark);
      color: #fff;
      padding: 7px 13px;
      border-radius: 8px;
      font-size: 12.5px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--dur), right var(--dur);
    }

    .wa-tip::after {
      content: '';
      position: absolute;
      right: -6px;
      top: 50%;
      transform: translateY(-50%);
      border: 6px solid transparent;
      border-left-color: var(--c-dark);
      border-right-width: 0;
    }

    .wa-wrap:hover .wa-tip {
      opacity: 1;
      right: 70px;
    }

    .btt {
      position: fixed;
      bottom: 28px;
      right: 96px;
      z-index: 800;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--c-accent);
      color: #fff;
      border: none;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px rgba(232, 117, 138, .32);
      opacity: 0;
      transform: translateY(16px);
      transition: opacity var(--dur), transform var(--dur) var(--ease-bounce), box-shadow var(--dur);
    }

    .btt.show {
      opacity: 1;
      transform: translateY(0);
    }

    .btt:hover {
      transform: translateY(-4px) scale(1.1);
      box-shadow: 0 8px 22px rgba(232, 117, 138, .4);
    }

    /* ================================================================
       RESPONSIVE
       ================================================================ */
    @media(max-width:1100px) {
      .cat-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .trust-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }

      .pcard {
        min-width: calc(50% - 9px);
      }
    }

    @media(max-width:800px) {
      .hero-layout {
        grid-template-columns: 1fr;
      }

      .sidebar {
        display: none;
      }

      .hero {
        aspect-ratio: 16/9;
      }

      .hero-text {
        left: 24px;
      }

      .nav-links {
        display: none;
      }

      .promo-grid {
        grid-template-columns: 1fr;
      }

      .pcard {
        min-width: calc(50% - 9px);
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media(max-width:500px) {
      .pcard {
        min-width: calc(100% - 0px);
      }

      .cat-grid {
        grid-template-columns: 1fr 1fr;
      }

      .trust-grid {
        grid-template-columns: 1fr;
      }

      .nav-inner {
        flex-wrap: wrap;
      }

      .nav-search {
        order: 3;
        max-width: 100%;
        flex: 0 0 100%;
      }
    }

    /* ================================================================
       SPLASH / LOADING SCREEN
       ================================================================ */
    .splash {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--c-white);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: opacity .8s var(--ease), visibility .8s;
    }

    .splash.hide {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .splash-logo {
      font-family: 'Dancing Script', cursive;
      font-size: 60px;
      font-weight: 700;
      color: var(--c-accent);
      margin-bottom: 30px;
      animation: float 2s ease infinite;
    }

    .splash-bar {
      width: 180px;
      height: 4px;
      background: var(--c-pink-light);
      border-radius: 2px;
      overflow: hidden;
      margin-bottom: 14px;
    }

    .splash-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--c-accent), var(--c-pink-mid));
      border-radius: 2px;
      width: 0%;
      animation: splashLoad 1.8s var(--ease) forwards;
    }

    @keyframes splashLoad {
      to {
        width: 100%;
      }
    }

    .splash-sub {
      font-size: 11.5px;
      color: var(--c-muted);
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    /* ================================================================
       FLASH SALE COUNTDOWN
       ================================================================ */
    .flash-section {
      max-width: 1380px;
      margin: 0 auto 36px;
      padding: 0 24px;
    }

    .flash-card {
      background: linear-gradient(130deg, var(--c-dark) 0%, #2D1A3A 100%);
      border-radius: var(--radius);
      padding: 22px 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      box-shadow: 0 10px 40px rgba(26, 26, 46, .22);
      flex-wrap: wrap;
    }

    .fl-left {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .fl-icon {
      font-size: 40px;
      animation: float 2.5s ease infinite;
    }

    .fl-text h3 {
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 4px;
      font-family: 'Playfair Display', serif;
    }

    .fl-text p {
      color: rgba(255, 255, 255, .58);
      font-size: 13px;
    }

    .fl-timer {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .tu {
      text-align: center;
    }

    .tn {
      background: var(--c-accent);
      color: #fff;
      font-size: 28px;
      font-weight: 700;
      padding: 8px 12px;
      border-radius: 8px;
      display: block;
      min-width: 54px;
      line-height: 1;
      transition: transform .15s var(--ease);
    }

    .tn.flip {
      transform: scaleY(0);
    }

    .tl {
      color: rgba(255, 255, 255, .55);
      font-size: 10.5px;
      margin-top: 5px;
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    .tsep {
      color: var(--c-accent);
      font-size: 26px;
      font-weight: 700;
      padding-bottom: 14px;
      line-height: 1;
    }

    .fl-btn {
      background: var(--c-accent);
      color: #fff;
      border: none;
      padding: 13px 28px;
      border-radius: 24px;
      font-size: 14px;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      transition: all .3s var(--ease-bounce);
      white-space: nowrap;
    }

    .fl-btn:hover {
      transform: scale(1.06);
      box-shadow: 0 8px 22px rgba(232, 117, 138, .4);
    }

    /* ================================================================
       TESTIMONIALS
       ================================================================ */
    .testi-car-wrap {
      overflow: hidden;
    }

    .testi-track {
      display: flex;
      gap: 18px;
      transition: transform .5s var(--ease);
    }

    .testi-card {
      min-width: calc(33.33% - 12px);
      background: var(--c-white);
      border-radius: var(--radius);
      padding: 28px 24px;
      box-shadow: var(--shadow-sm);
      border: 2px solid transparent;
      transition: all .3s var(--ease-bounce);
    }

    .testi-card:hover {
      transform: translateY(-6px);
      border-color: var(--c-pink-light);
      box-shadow: var(--shadow-pink);
    }

    .tq {
      font-size: 52px;
      color: var(--c-pink-light);
      line-height: .7;
      font-family: Georgia, serif;
      margin-bottom: 14px;
    }

    .testi-text {
      font-size: 13.5px;
      color: var(--c-medium);
      line-height: 1.75;
      margin-bottom: 20px;
      font-style: italic;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .tav {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }

    .av1 {
      background: linear-gradient(135deg, var(--c-accent), var(--c-pink-mid))
    }

    .av2 {
      background: linear-gradient(135deg, #8EC5FC, #E0C3FC)
    }

    .av3 {
      background: linear-gradient(135deg, #96E6A1, #D4FC79)
    }

    .av4 {
      background: linear-gradient(135deg, #fcb69f, #ffecd2)
    }

    .testi-name {
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 2px;
    }

    .testi-loc {
      font-size: 12px;
      color: var(--c-muted);
    }

    .testi-stars {
      display: flex;
      gap: 2px;
      margin-top: 5px;
    }

    .ts {
      color: #F48FB1;
      font-size: 12px;
    }

    /* ================================================================
       NEWSLETTER SECTION
       ================================================================ */
    .newsletter {
      max-width: 1380px;
      margin: 0 auto 40px;
      padding: 0 24px;
    }

    .nl-card {
      background: var(--c-nav);
      border-radius: var(--radius);
      padding: 48px 44px;
      display: flex;
      align-items: center;
      gap: 48px;
      flex-wrap: wrap;
      position: relative;
      overflow: hidden;
    }

    .nl-card::before {
      content: '';
      position: absolute;
      right: -70px;
      top: -70px;
      width: 280px;
      height: 280px;
      background: rgba(255, 255, 255, .1);
      border-radius: 50%;
    }

    .nl-card::after {
      content: '';
      position: absolute;
      right: 100px;
      bottom: -90px;
      width: 200px;
      height: 200px;
      background: rgba(255, 255, 255, .07);
      border-radius: 50%;
    }

    .nl-left {
      flex: 1;
      min-width: 240px;
      position: relative;
      z-index: 1;
    }

    .nl-left h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 2.6vw, 30px);
      color: #fff;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .nl-left p {
      color: rgba(255, 255, 255, .82);
      font-size: 14px;
      line-height: 1.7;
    }

    .nl-right {
      display: flex;
      gap: 10px;
      flex: 1;
      max-width: 420px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .nl-input {
      flex: 1;
      min-width: 210px;
      padding: 14px 20px;
      border-radius: 26px;
      border: 2px solid rgba(255, 255, 255, .4);
      background: rgba(255, 255, 255, .15);
      color: #fff;
      font-size: 14px;
      font-family: inherit;
      outline: none;
      transition: all .3s;
      backdrop-filter: blur(6px);
    }

    .nl-input::placeholder {
      color: rgba(255, 255, 255, .6);
    }

    .nl-input:focus {
      border-color: #fff;
      background: rgba(255, 255, 255, .25);
    }

    .nl-submit {
      background: #fff;
      color: var(--c-accent);
      border: none;
      padding: 14px 26px;
      border-radius: 26px;
      font-size: 14px;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      transition: all .3s var(--ease-bounce);
      white-space: nowrap;
    }

    .nl-submit:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 18px rgba(0, 0, 0, .14);
    }

    /* ================================================================
       MOBILE HAMBURGER MENU
       ================================================================ */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 5px;
    }

    .hline {
      width: 23px;
      height: 2.5px;
      background: #fff;
      border-radius: 2px;
      transition: all .3s var(--ease);
      transform-origin: center;
    }

    .hamburger.is-open .hline:nth-child(1) {
      transform: translateY(7.5px) rotate(45deg);
    }

    .hamburger.is-open .hline:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .hamburger.is-open .hline:nth-child(3) {
      transform: translateY(-7.5px) rotate(-45deg);
    }

    .mob-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .4);
      z-index: 1050;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }

    .mob-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .mob-panel {
      position: fixed;
      top: 0;
      left: -290px;
      bottom: 0;
      width: 280px;
      background: var(--c-white);
      z-index: 1060;
      box-shadow: 6px 0 30px rgba(0, 0, 0, .1);
      transition: left .4s var(--ease);
      display: flex;
      flex-direction: column;
    }

    .mob-panel.open {
      left: 0;
    }

    .mob-hd {
      background: var(--c-nav);
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .mob-logo {
      font-family: 'Dancing Script', cursive;
      font-size: 24px;
      color: #fff;
      font-weight: 700;
    }

    .mob-close-btn {
      background: none;
      border: none;
      color: #fff;
      font-size: 22px;
      cursor: pointer;
      transition: transform .3s;
    }

    .mob-close-btn:hover {
      transform: rotate(90deg);
    }

    .mob-nav-list {
      list-style: none;
      padding: 14px 0;
      flex: 1;
      overflow-y: auto;
    }

    .mob-nav-list li a {
      display: block;
      padding: 13px 22px;
      font-size: 14.5px;
      font-weight: 600;
      color: var(--c-medium);
      border-left: 3px solid transparent;
      transition: all .2s;
    }

    .mob-nav-list li a:hover {
      border-left-color: var(--c-accent);
      color: var(--c-accent);
      background: var(--c-pink-light);
    }

    .mob-hr {
      height: 1px;
      background: #f0f0f5;
      margin: 6px 16px;
    }

    /* ================================================================
       TOAST STACK
       ================================================================ */
    .toast-stack {
      position: fixed;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2000;
      display: flex;
      flex-direction: column-reverse;
      align-items: center;
      gap: 8px;
      pointer-events: none;
    }

    .toast-msg {
      background: var(--c-dark);
      color: #fff;
      padding: 10px 22px;
      border-radius: 24px;
      font-size: 13.5px;
      font-weight: 500;
      box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
      opacity: 0;
      transform: translateY(14px);
      transition: all .32s var(--ease-bounce);
      white-space: nowrap;
    }

    .toast-msg.in {
      opacity: 1;
      transform: translateY(0);
    }

    /* ================================================================
       COOKIE CONSENT BAR
       ================================================================ */
    .cookie-bar {
      position: fixed;
      bottom: 24px;
      left: 24px;
      max-width: 500px;
      background: var(--c-dark);
      color: #fff;
      border-radius: var(--radius);
      padding: 20px 24px;
      z-index: 1500;
      box-shadow: 0 10px 38px rgba(0, 0, 0, .18);
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      transform: translateY(20px);
      opacity: 0;
      transition: all .5s var(--ease-bounce);
    }

    .cookie-bar.show {
      transform: translateY(0);
      opacity: 1;
    }

    .cookie-bar p {
      font-size: 13px;
      color: rgba(255, 255, 255, .72);
      flex: 1;
      min-width: 200px;
      line-height: 1.6;
    }

    .cookie-bar a {
      color: var(--c-pink-mid);
    }

    .cookie-ok {
      background: var(--c-accent);
      color: #fff;
      border: none;
      padding: 9px 20px;
      border-radius: 18px;
      font-size: 13px;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      transition: all .3s var(--ease-bounce);
      white-space: nowrap;
    }

    .cookie-ok:hover {
      transform: scale(1.06);
    }

    @media(max-width:800px) {
      .hamburger {
        display: flex;
      }
    }
