: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;
  --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);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; line-height: 1.55; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1,h2,h3,h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.serif { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(64px, 8vw, 120px) 0; }

/* NAV */
.logo-new {max-width: 50%;}
      .footer-logo-new {max-width: 35%;    filter: brightness(0) invert(1);}
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.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);
}

.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);
transition: background .15s, color .15s;
}

.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;
}

.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);
      /* 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;
    }

    .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);
}

.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;
}
/* BREADCRUMB + HERO */
.bc { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: 13px; color: var(--muted); padding: 40px 0 20px; }
.bc a { color: var(--muted); } .bc a:hover { color: var(--ink); }
.bc .sep { opacity: .5; }
.bc .cur { color: var(--ink); font-weight: 500; }

.page-hero { text-align: center; padding: 20px 0 60px; position: relative; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: var(--r-pill); background: var(--chip); color: var(--chip-ink); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.eyebrow .dot { width: 6px; height: 6px; background: var(--chip-ink); border-radius: 50%; }
.page-hero h1 { font-size: clamp(48px, 6vw, 84px); line-height: 1; margin-bottom: 24px; letter-spacing: -0.035em; }
.page-hero p.lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-2); max-width: 640px; margin: 0 auto 32px; line-height: 1.5; }
.page-hero .chips { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.hchip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: var(--r-pill); background: var(--card); border: 1px solid var(--line); font-size: 13px; font-weight: 500; }
.hchip .ic { color: var(--chip-ink); }
.hchip.mint .ic { color: var(--mint); }
.hchip.warm .ic { color: var(--warm); }

/* PRODUCT GRID */
.products { padding: 0 0 40px; }
.filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter { padding: 8px 16px; border-radius: var(--r-pill); background: var(--card); border: 1px solid var(--line); font-size: 13px; color: var(--ink-2); cursor: pointer; transition: all .15s; font-weight: 500; }
.filter:hover { border-color: var(--ink-2); }
.filter.on { background: var(--ink); color: white; border-color: var(--ink); }
.sort { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.sort select { padding: 8px 12px; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--card); font: inherit; color: var(--ink); cursor: pointer; }

.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .pgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .pgrid { grid-template-columns: 1fr; } }

.product {
  background: var(--card); border-radius: var(--r-xl); border: 1px solid var(--line);
  overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.p-img {
  aspect-ratio: 1.4 / 1; background: var(--bg-tint);
  position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.p-img svg { width: 100%; height: 100%; }
.ribbon {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--coral); color: white; font-size: 11px; font-weight: 800;
  letter-spacing: .06em; padding: 6px 12px; border-radius: var(--r-pill);
  text-transform: uppercase;
}
.ribbon.free { background: var(--coral); }
.ribbon.best { background: var(--mint); }
.p-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.p-tag { display: inline-block; padding: 4px 10px; border-radius: var(--r-pill); background: var(--chip); color: var(--chip-ink); font-size: 11px; font-weight: 600; letter-spacing: .04em; align-self: flex-start; }
.p-title { font-size: 18px; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
.p-desc { font-size: 13px; color: var(--ink-2); line-height: 1.5; }
.p-price { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 32px; color: var(--accent-a); letter-spacing: -0.02em; line-height: 1; margin-top: 4px; }
.p-price small { font-size: 13px; color: var(--muted); font-family: 'Inter', sans-serif; font-style: normal; font-weight: 500; margin-left: 4px; }
.p-feat { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 6px; }
.p-feat li { font-size: 13px; color: var(--ink-2); display: flex; gap: 8px; align-items: flex-start; }
.p-feat li .c { width: 16px; height: 16px; border-radius: 50%; background: rgba(47,190,143,.14); color: #0F7A52; display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.p-stars { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.p-stars .st { color: var(--warm); letter-spacing: 1px; }
.p-foot { padding: 16px 22px 22px; display: flex; gap: 10px; }
.p-foot a {
  width: 100%;
}
.p-foot .btn { flex: 1; padding: 12px 16px; font-size: 13px;     text-align: center;
  align-items: center;width: 100%;
  justify-content: center;}
.p-foot .btn-details { background: var(--card); border: 1.5px solid var(--line); color: var(--accent-a); }
.p-foot .btn-details:hover { border-color: var(--accent-a); background: rgba(91,108,255,.04); }

/* SVG product illustrations */
.prod-illu { width: 100%; height: 100%; position: relative; }

/* COMPARE TABLE */
.compare-wrap { background: var(--card); border-radius: var(--r-xl); border: 1px solid var(--line); overflow: hidden; }
.compare-head { padding: 28px 32px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.compare-head h3 { font-size: 18px; }
.compare-head .hint { font-size: 12px; color: var(--muted); }

.tbl { overflow-x: auto; }
table.compare {
  width: 100%; border-collapse: collapse; font-size: 14px; min-width: 860px;
}
table.compare th, table.compare td { padding: 18px 16px; text-align: center; border-bottom: 1px solid var(--line); }
table.compare th:first-child, table.compare td:first-child { text-align: left; color: var(--ink-2); font-weight: 500; background: var(--bg-tint); position: sticky; left: 0; }
table.compare thead th { background: var(--bg-tint); font-weight: 700; color: var(--ink); font-size: 13px; letter-spacing: -0.01em; line-height: 1.3; padding: 20px 16px; }
table.compare thead th:first-child { font-weight: 700; color: var(--muted); text-transform: uppercase; font-size: 11px; letter-spacing: .08em; }
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare tbody tr:hover { background: var(--bg-tint); }
table.compare tbody tr:hover td:first-child { background: var(--bg); }
.chk { /*color: var(--mint);*/ font-weight: 700;color: #16a34a; }
.xx { /*color: var(--coral);*/ opacity: .6; color: #ef4444;}
.tprice { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--accent-a); font-size: 20px; }
.compare tfoot td { padding: 24px 16px; background: var(--bg-tint); }
.compare tfoot .btn { padding: 10px 18px; font-size: 13px; width: 100%;    text-align: center;
  align-items: center;
  justify-content: center; }

/* APP SECTION */
.app-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .app-split { grid-template-columns: 1fr; gap: 48px; } }
.app-text .eyebrow { background: transparent; color: var(--accent-a); padding: 0; margin-bottom: 16px; font-size: 12px; }
.app-text h2 { font-size: clamp(36px, 4.5vw, 56px); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 20px; }
.app-text p.desc { font-size: 16px; color: var(--ink-2); max-width: 480px; margin-bottom: 24px; }
.app-bullets { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.app-bullets li { font-size: 15px; display: flex; gap: 12px; align-items: center; color: var(--ink-2); }
.app-bullets li .c { width: 22px; height: 22px; border-radius: 50%; background: rgba(47,190,143,.14); color: #0F7A52; display: grid; place-items: center; flex-shrink: 0; }
.app-ctas { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.app-rating { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.app-rating .stars { color: var(--warm); font-size: 14px; letter-spacing: 2px; }

/* PHONE MOCK */
.phone {
  width: 320px; height: 620px; background: #15151F;
  border-radius: 40px; padding: 12px;
  box-shadow: 0 40px 80px rgba(91,108,255,.15), 0 20px 40px rgba(20,20,40,.15);
  margin: 0 auto; position: relative;
}
.phone::before { content:''; position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 100px; height: 24px; background: #000; border-radius: 14px; z-index: 2; }
.phone-screen {
  width: 100%; height: 100%; background: var(--accent-grad); border-radius: 28px;
  padding: 60px 22px 22px; color: white; position: relative; overflow: hidden;
}
.phone-screen::before { content:''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 0%, rgba(255,255,255,.15), transparent 50%); }
.phone-brand { text-align: center; margin-bottom: 28px; position: relative; }
.phone-brand .ic { width: 52px; height: 52px; background: rgba(255,255,255,.15); border-radius: 50%; display: grid; place-items: center; margin: 0 auto 12px; border: 1px solid rgba(255,255,255,.2); }
.phone-brand .name { font-family: 'Instrument Serif', serif; font-size: 24px; }
.phone-brand .sub { font-size: 11px; opacity: .7; margin-top: 2px; }
.phone-cards { display: flex; flex-direction: column; gap: 10px; position: relative; }
.phone-card { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.18); border-radius: 14px; padding: 14px 16px; backdrop-filter: blur(8px); }
.phone-card .n { font-size: 13px; font-weight: 600; }
.phone-card .m { font-size: 11px; opacity: .75; margin-top: 2px; }
.phone-card.live { background: rgba(47,190,143,.25); border-color: rgba(47,190,143,.4); }
.phone-card.live .m::before { content:'● '; color: #5EEBB0; animation: blink 1.4s infinite; }
@keyframes blink { 50% { opacity: .3; } }

/* FINAL CTA */
.finalcta { text-align: center; padding: 80px 32px; background: radial-gradient(ellipse at top, rgba(91,108,255,.08), transparent 60%), var(--bg); border-radius: var(--r-xl); }
.finalcta h2 { font-size: clamp(40px, 5vw, 68px); line-height: 1.05; margin-bottom: 20px; letter-spacing: -0.035em; }
.finalcta p { font-size: 17px; color: var(--ink-2); max-width: 540px; margin: 0 auto 32px; }

/* FOOTER */
footer { background: #0B0B14; 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; }
@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; }
.ft-col a:hover { color: white; }
.ft-col .line { font-size: 13px; padding: 4px 0; }
.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; }

/* reveals */
.reveal { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
html.js-reveal .reveal { opacity: 0; transform: translateY(24px); }
html.js-reveal .reveal.in { opacity: 1; transform: none; }


/* ===== SLIDE CART DRAWER ===== */
.slide-cart-overlay { position: fixed; inset: 0; background: rgba(15, 23, 42, .45); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; z-index: 1099; }
.slide-cart-overlay.is-open { opacity: 1; visibility: visible; }
.slide-cart { position: fixed; top: 0; right: 0; width: 420px; max-width: 100%; height: 100vh; background: #fff; color: #0f172a; box-shadow: -8px 0 30px rgba(15, 23, 42, .18); transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column; z-index: 1100; }
.slide-cart.is-open { transform: translateX(0); }
.slide-cart__header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid #e2e8f0; }
.slide-cart__title { font-size: 1.1rem; font-weight: 700; margin: 0; color: #0f172a; }
.slide-cart__close { background: none; border: none; color: #0f172a; padding: 6px; display: grid; place-items: center; border-radius: 8px; cursor: pointer; }
.slide-cart__close:hover { background: #f1f5f9; }
.slide-cart__body { flex: 1 1 auto; overflow-y: auto; padding: 16px 24px; }
.slide-cart__empty { text-align: center; color: #64748b; padding: 0px 0; }
.slide-cart__empty-state {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
text-align: center;
padding: 1.5rem 1rem;
}
.slide-cart__empty-icon {
display: block;
flex-shrink: 0;
}
.slide-cart__items { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.slide-cart__item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid #f1f5f9; }
.slide-cart__item:last-child { border-bottom: 0; }
.slide-cart__item-img img { width: 64px; height: 64px; object-fit: contain; border-radius: 8px; background: #f8fafc; }
.slide-cart__item-name { font-size: .95rem; font-weight: 600; color: #0f172a; margin: 0 0 4px; }
.slide-cart__item-price { font-size: .85rem; color: #475569; margin: 0 0 8px; }
.slide-cart__item-controls { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.slide-cart__qty-btn { width: 26px; height: 26px; border-radius: 6px; background: #f1f5f9; color: #0f172a; font-weight: 700; border: none; cursor: pointer; }
.slide-cart__qty-btn:hover { background: #e2e8f0; }
.slide-cart__qty-val { min-width: 24px; text-align: center; font-weight: 700; color: #0f172a; }
.slide-cart__remove { margin-left: 8px; background: none; border: none; color: #ef4444; font-size: .8rem; cursor: pointer; padding: 4px 6px; }
.slide-cart__remove:hover { text-decoration: underline; }
.slide-cart__item-line { font-weight: 700; color: #0f172a; align-self: start; }
.slide-cart__footer { border-top: 1px solid #e2e8f0; padding: 20px 24px; background: #fff; }
.slide-cart__subtotal { display: flex; justify-content: space-between; font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.slide-cart__shipping-note { font-size: .8rem; color: #64748b; margin: 0 0 14px; }
.slide-cart__checkout { display: block; width: 100%; padding: 14px 20px; text-align: center; font-size: 1rem; }
.gradient-btn {
background: linear-gradient(135deg, #3b82f6, #06b6d4);
color: #fff;
border: none;
border-radius: 12px;
font-weight: 700;
cursor: pointer;
transition: transform 0.2s, box-shadow 0.2s;
}
html.cart-open, body.cart-open { overflow: hidden; }
@media (max-width: 480px) { .slide-cart { width: 100%; } }
