
/* NAV */
:root {
    --bg: #FAF7F2;
    --bg-tint: #F3EEE5;
    --ink: #15151F;
    --ink-2: #3D3D55;
    --muted: #7A7A92;
    --line: #E8E2D5;
    --card: #FFFFFF;
    --chip: #EEF0FF;
    --chip-ink: #4A5BFF;
  
    --accent-a: #5B6CFF;
    --accent-b: #8B5CF6;
    --accent-grad: linear-gradient(120deg, var(--accent-a) 0%, var(--accent-b) 100%);
  
    --warm: #FFB74D;
    /* map pin yellow */
    --mint: #2FBE8F;
    --coral: #FF6B5B;
  
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-pill: 999px;
  
    --shadow-sm: 0 1px 2px rgba(20, 20, 40, .04), 0 2px 8px rgba(20, 20, 40, .04);
    --shadow-md: 0 2px 6px rgba(20, 20, 40, .05), 0 12px 32px rgba(20, 20, 40, .06);
    --shadow-lg: 0 10px 40px rgba(91, 108, 255, .12), 0 30px 80px rgba(20, 20, 40, .08);
  
    --maxw: 1240px;
    --pad: clamp(20px, 4vw, 48px);
  }
  .nav-menu-toggle svg {
    color: #000
  }
.logo-new {max-width: 50%;    margin-top: 0;
    left: 12px;top:auto;display: block;}
      .footer-logo-new {max-width: 35%;    filter: brightness(0) invert(1);}
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  width: 100%;
}
.nav {
position: sticky;
top: 0;
z-index: 50;
backdrop-filter: blur(20px);
background: rgba(250, 247, 242, .82);
border-bottom: 1px solid rgba(232, 226, 213, .6);
font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.nav-inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 0;
}

.brand {
display: flex;
align-items: center;
gap: 2px;
font-family: 'Instrument Serif', serif;
font-size: 30px;
font-weight: 400;
letter-spacing: -0.02em;
}

.brand .pin {
position: relative;
display: inline-block;
width: 16px;
height: 16px;
background: var(--warm);
border-radius: 50% 50% 50% 0;
transform: rotate(-45deg);
margin: 0 5px 8px 3px;
box-shadow: 0 2px 6px rgba(255, 183, 77, .35);
}

.brand .pin::after {
content: '';
position: absolute;
left: 5px;
top: 5px;
width: 6px;
height: 6px;
background: #fff;
border-radius: 50%;
}

.brand sup {
font-size: 14px;
vertical-align: super;
margin-left: 2px;
font-style: italic;
}

.nav-links {
display: flex;
gap: 4px;
align-items: center;
}

.nav-link {
padding: 8px 14px;
border-radius: 999px;
font-size: 14px;
font-weight: 500;
color: var(--ink-2) !important;
transition: background .15s, color .15s;
font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.nav-link:hover {
background: var(--bg-tint);
color: var(--ink);
}

.nav-cta {
display: flex;
gap: 10px;
align-items: center;
}

.cart-btn {
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--bg-tint);
display: grid;
place-items: center;
position: relative;
border: none;
}

.cart-btn:hover {
background: white;
}

.cart-btn .count {
position: absolute;
top: -4px;
right: -4px;
width: 18px;
height: 18px;
border-radius: 50%;
background: var(--coral);
color: white;
font-size: 10px;
font-weight: 700;
display: grid;
place-items: center;
}


  /* Mobile header: logo, cart, Activate, (spacer), hamburger — links in overlay */
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-mobile-spacer {
    display: none;
  }

  .nav-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    border-radius: 10px;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
  }

  .nav-menu-toggle .nav-icon-close {
    display: none;
  }

  .nav.is-open .nav-menu-toggle .nav-icon-menu {
    display: none;
  }

  .nav.is-open .nav-menu-toggle .nav-icon-close {
    display: block;
  }

  .nav-backdrop {
    display: none;
  }

  @media (min-width: 901px) {
    .nav-inner {
      display: flex;
      align-items: center;
      gap: clamp(12px, 2vw, 28px);
    }

    .nav .nav-links {
      flex: 1 1 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: clamp(8px, 1.5vw, 24px);
    }
  }

  @media (max-width: 900px) {
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
    }

    body {
      padding-top: var(--nav-offset, 64px);
    }

    .nav-menu-toggle {
      display: inline-flex;
      order: 4;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: nowrap;
      padding: 10px 10px;
    }

    .nav .brand {
      flex-shrink: 0;
      order: 1;
      font-size: 24px;
    }

    .nav .brand .logo-new {
      max-width: 171px;
      /* width: auto;
      height: 39px; */
      object-fit: contain;
    }

    .nav-mobile-spacer {
      display: block;
      flex: 1 1 auto;
      min-width: 8px;
      order: 2;
    }

    .nav-cta {
      flex-shrink: 0;
      gap: 18px;
      order: 3;
    }

    .nav-cta .btn-sm {
      padding: 8px 12px;
      font-size: 13px;
      white-space: nowrap;
    }

    .nav-cta .cart-btn {
      width: 36px;
      height: 36px;
    }

    .nav-cta .cart-btn svg {
      width: 16px;
      height: 16px;
    }

    .nav .nav-links {
      position: fixed;
      left: 0;
      right: 0;
      top: var(--nav-offset, 64px);
      top: 64px;
      /* bottom: 0; */
      z-index: 200;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      gap: 0;
      padding: 12px 20px 24px;
      margin: 0;
      background: #fff;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
      transform: translateX(100%);
      transition: transform 0.28s ease;
      overflow-y: auto;
      visibility: hidden;
      pointer-events: none;
    }

    .nav.is-open .nav-links {
      transform: translateX(0);
      visibility: visible;
      pointer-events: auto;
      text-align: left;
    }

    .nav .nav-links .nav-link {
      padding: 16px 12px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      font-size: 16px;
      border-radius: 0;
    }

    .nav-backdrop {
      display: block;
      position: fixed;
      inset: 0;
      top: var(--nav-offset, 64px);
      z-index: 199;
      background: rgba(0, 0, 0, 0.35);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s;
      pointer-events: none;
    }

    .nav.is-open .nav-backdrop {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    body.nav-menu-open {
      overflow: hidden;
    }
  }

  @media (max-width: 380px) {
    .nav-inner {
      gap: 4px;
    }

    .nav .brand .logo-new {
      max-width: 110px;
      height: 28px;
    }

    .nav-cta {
      gap: 4px;
    }

    .nav-cta .btn-sm {
      padding: 7px 10px;
      font-size: 12px;
    }
  }
  .btn {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 22px;
border-radius: var(--r-pill);
font-weight: 600;
font-size: 15px;
transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
white-space: nowrap;
}

.nav .btn-primary {
background: var(--accent-grad);
color: white;
box-shadow: 0 8px 24px rgba(91, 108, 255, .3);
padding: 10px 16px;
    font-size: 13px;
    border-radius: 999px;
}

.nav .btn-primary:hover {
  background: var(--accent-grad);
transform: translateY(-2px);
box-shadow: 0 12px 32px rgba(91, 108, 255, .4);
}
.btn-primary {
background: var(--accent-grad);
color: white;
box-shadow: 0 8px 24px rgba(91, 108, 255, .3);
}
.btn-primary:hover {
background: var(--accent-grad);
transform: translateY(-2px);
box-shadow: 0 12px 32px rgba(91, 108, 255, .4);
}
.btn-ghost {
background: transparent;
color: var(--ink);
border: 1px solid var(--line);
}

.btn-ghost:hover {
background: white;
border-color: var(--ink);
}

.btn-dark {
background: var(--ink);
color: white;
}

.btn-dark:hover {
background: #000;
transform: translateY(-2px);
}

.btn-sm {
padding: 10px 16px;
font-size: 13px;
}


/* FOOTER */
footer { background-color: #0B0B14 !important; color: rgba(255,255,255,.7); padding: 72px 0 32px; margin-top: 80px; }
footer .brand { color: white; }
footer .brand .pin::after { background: #0B0B14; }
.ft-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;font-family: 'Inter', system-ui, -apple-system, sans-serif;text-align: left; }
@media (max-width: 800px) { .ft-grid { grid-template-columns: 1fr 1fr; } }
.ft-brand p { font-size: 14px; line-height: 1.6; margin: 16px 0 0; max-width: 280px; }
.ft-col h4 { color: rgba(255,255,255,.9); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.ft-col a { display: block; font-size: 14px; color: rgba(255,255,255,.65); padding: 4px 0;text-decoration: none; }
.ft-col a:hover { color: white; }
.ft-col .line { font-size: 13px; padding: 4px 0; background: none;}
.ft-apps { display: flex; gap: 8px; margin-top: 12px; }
.ft-apps .app { padding: 6px 12px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--r-md); font-size: 12px; color: rgba(255,255,255,.75); }
.ft-bot { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 12px; }
