/* NatureTech — v2 site chrome (announce + header + nav + dropdowns + franchise + footer)
   Sprint 1, 2026-04-25. Source: design/v2/chrome/header-footer.html.
   Coexists with the older .nt-site-header / .nt-site-footer rules in main.css —
   v2 markup uses .header / .footer / .announce / .franchise classes, so the
   v1 rules become orphan dead code (cleaned up later). Some v1 utility classes
   (.nt-cart-count for cart fragments, .nt-menu-toggle for drawer JS) remain in
   the v2 markup as aliases so existing JS + WooCommerce hooks keep working. */

/* ── Announce bar ── */
.announce {
  background: var(--purple-deep);
  color: var(--cream);
  padding: 10px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Rotator viewport — when 2+ messages exist, .announce gains .announce--rotator
   and the JS rotates a single visible track at a time via crossfade. Single-
   message mode keeps the original flex layout. */
.announce__viewport {
  position: relative;
  height: 22px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.announce__track {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 400; letter-spacing: 0.01em;
}
.announce--rotator .announce__track {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}
.announce--rotator .announce__track.is-active {
  opacity: 1;
  visibility: visible;
}
.announce__eyebrow {
  font-size: 10px; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-left: 14px;
  border-left: 1px solid rgba(230,177,73,0.3);
}
@media (max-width: 640px) {
  .announce { padding: 10px 16px; min-height: auto; }
  .announce__viewport { height: 36px; }
  .announce__track { flex-direction: column; gap: 4px; }
  .announce__eyebrow { padding-left: 0; border-left: none; border-bottom: 1px solid rgba(230,177,73,0.3); padding-bottom: 4px; }
}
.announce a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.announce a:hover { color: var(--gold); }

/* ── Header ── */
.header {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(26,22,40,0.06);
  padding: 18px clamp(20px, 4vw, 64px);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}
.header.is-scrolled { box-shadow: 0 4px 20px rgba(26,22,40,0.06); }
.header__inner {
  max-width: 1920px; margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.header__logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.header__logo img { height: 40px; width: auto; display: block; }

/* Main nav */
.header__nav { display: flex; justify-content: center; gap: 4px; }
.nav-item { position: relative; }
.nav-item__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500;
  color: var(--ink);
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.nav-item__link:hover,
.nav-item:hover > .nav-item__link { background: var(--lavender); color: var(--purple); }
.nav-item__chevron { width: 10px; height: 10px; transition: transform 0.2s ease; }
.nav-item:hover .nav-item__chevron { transform: rotate(180deg); }

/* Dropdown (level 2) */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 280px;
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(26,22,40,0.12);
  border: 1px solid rgba(26,22,40,0.06);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 50;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-dropdown__item {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.nav-dropdown__item:hover { background: var(--lavender); color: var(--purple); }
.nav-dropdown__item-chevron {
  width: 10px; height: 10px;
  transform: rotate(90deg);
  opacity: 0.4;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-dropdown__item:hover .nav-dropdown__item-chevron { opacity: 1; transform: rotate(90deg) translateX(-2px); }

/* Sub-dropdown (level 3) */
.nav-sub-dropdown {
  position: absolute;
  top: 0;
  right: calc(100% + 6px);
  min-width: 220px;
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(26,22,40,0.12);
  border: 1px solid rgba(26,22,40,0.06);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.nav-dropdown__item:hover .nav-sub-dropdown { opacity: 1; visibility: visible; transform: translateX(0); }
.nav-sub-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 400;
  color: rgba(26,22,40,0.78);
  transition: background 0.15s ease, color 0.15s ease;
  text-decoration: none;
}
.nav-sub-dropdown a:hover { background: var(--lavender); color: var(--purple); }

/* Header icons (left side in RTL) */
.header__icons { display: flex; gap: 4px; align-items: center; }
.header__icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.header__icon-btn:hover { background: var(--lavender); color: var(--purple); }
.header__icon-btn svg { width: 20px; height: 20px; }
.header__cart-badge {
  position: absolute;
  top: 4px; left: 4px;
  min-width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
}

/* Mobile menu toggle */
.header__menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: transparent;
  border: none;
  align-items: center; justify-content: center;
  color: var(--ink);
  cursor: pointer;
}
.header__menu-toggle svg { width: 22px; height: 22px; }

@media (max-width: 960px) {
  .header { padding: 14px 20px; }
  .header__inner { grid-template-columns: auto 1fr auto; gap: 12px; }
  .header__nav { display: none; }
  .header__menu-toggle { display: flex; }
  .header__icons { gap: 0; }
  .header__icon-btn:not(.header__cart) { display: none; }
}

/* ── Franchise strip (sits above footer) ── */
.franchise {
  /* Section background is transparent — the green gradient now lives on
     .franchise__content only, so on viewports wider than the 1920px
     inner cap we don't bleed gradient into the gutter. */
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 0;
}
.franchise__inner {
  /* Full-bleed: photo + green panel each fill 50% of the viewport
     edge-to-edge, no max-width clamp, no side padding. */
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  position: relative;
  z-index: 2;
  /* Match the reference design's vertical presence — scales with viewport
     so the section reads as substantial on desktop without dominating on
     smaller screens. */
  min-height: clamp(480px, 38vw, 720px);
}
.franchise__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 6vw, 96px) clamp(32px, 5vw, 96px);
  background:
    radial-gradient(ellipse at top left, rgba(230,177,73,0.18) 0%, transparent 55%),
    linear-gradient(135deg, var(--green) 0%, var(--green-deep) 55%, var(--purple) 100%);
}
.franchise__content > * { max-width: 620px; }
.franchise__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.franchise__title,
.franchise .franchise__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600; line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
}
.franchise__title-accent { color: var(--gold); }
.franchise__lead {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 400; line-height: 1.6;
  color: rgba(247,243,233,0.82);
  margin-bottom: 28px;
}
.franchise__cta-wrap { display: flex; justify-content: flex-start; }
.franchise__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.franchise__cta:hover {
  background: #F5C662;
  transform: translateX(-2px);
  box-shadow: 0 10px 28px rgba(230,177,73,0.35);
}
.franchise__cta-arrow { width: 16px; height: 16px; transition: transform 0.2s ease; }
.franchise__cta:hover .franchise__cta-arrow { transform: translateX(-3px); }

/* Image side — full-bleed photo of an Israeli nursery to pair the
   "looking for retail partners" copy with a real-world setting. */
.franchise__media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.franchise__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .franchise__inner { grid-template-columns: 1fr; min-height: 0; }
  .franchise__content { padding: 56px 24px; max-width: none; }
  .franchise__media { aspect-ratio: 16/10; min-height: 0; }
}

/* ── Footer ── */
.footer {
  background: var(--purple-deep);
  color: rgba(247,243,233,0.7);
  padding: 48px clamp(32px, 5vw, 96px) 28px;
  position: relative;
}
.footer a { color: inherit; text-decoration: none; }
.footer__inner { max-width: 1920px; margin: 0 auto; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(247,243,233,0.1);
}

.footer__logo {
  display: inline-flex; align-items: center;
  font-family: var(--font-heading);
  font-size: 24px; font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.footer__logo img { height: 44px; width: auto; display: block; }
.footer__brand-tag {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 400; line-height: 1.6;
  color: rgba(247,243,233,0.6);
  margin-bottom: 24px;
  max-width: 320px;
}
.footer__contact {
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 28px;
}
.footer__contact-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.footer__contact a {
  color: var(--cream);
  border-bottom: 1px solid rgba(247,243,233,0.2);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer__contact a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.footer__socials { display: flex; gap: 12px; }
.footer__social {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(247,243,233,0.08);
  color: rgba(247,243,233,0.7);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer__social:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer__links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.footer__links a {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 400;
  color: rgba(247,243,233,0.7);
  transition: color 0.2s ease;
  display: inline-block;
}
.footer__links a:hover { color: var(--gold); }

/* Newsletter column */
.footer__newsletter-lead {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 400; line-height: 1.55;
  color: rgba(247,243,233,0.7);
  margin-bottom: 20px;
  max-width: 320px;
}
.footer__newsletter-form {
  display: flex; gap: 8px;
  max-width: 340px;
}
.footer__newsletter-input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(247,243,233,0.2);
  background: rgba(247,243,233,0.06);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  min-width: 0;
}
.footer__newsletter-input::placeholder { color: rgba(247,243,233,0.4); }
.footer__newsletter-input:focus { border-color: var(--gold); background: rgba(247,243,233,0.1); }
.footer__newsletter-submit {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  border: none;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.footer__newsletter-submit:hover { background: #F5C662; transform: translateX(-2px); }
.footer__newsletter-note {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 400;
  color: rgba(247,243,233,0.4);
  margin-top: 12px;
  line-height: 1.5;
}

/* Bottom bar */
.footer__bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__copyright {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 400;
  color: rgba(247,243,233,0.5);
}
.footer__legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__legal a {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 400;
  color: rgba(247,243,233,0.5);
  transition: color 0.2s ease;
}
.footer__legal a:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 48px 32px; }
}
@media (max-width: 640px) {
  .footer { padding: 40px 24px 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__legal { gap: 16px; }
}

/* ────────────────────────────────────────────────────────
   Cart drawer (slides in from the start side / RTL right)
   ──────────────────────────────────────────────────────── */
.nt-cart-drawer {
  position: fixed; inset: 0; z-index: 110;
}
.nt-cart-drawer[hidden] { display: none; }
.nt-cart-drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(30, 18, 54, 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.nt-cart-drawer.is-open .nt-cart-drawer__backdrop { opacity: 1; }

.nt-cart-drawer__panel {
  position: absolute; top: 0; right: 0;
  height: 100vh;
  width: 420px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: 14px 0 0 14px;
  box-shadow: -20px 0 50px rgba(30, 18, 54, 0.18);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  font-family: 'Heebo', sans-serif;
  color: #1A1628;
}
.nt-cart-drawer.is-open .nt-cart-drawer__panel { transform: translateX(0); }

/* The fragment wrapper itself shouldn't break the flex layout — the items
   body needs to flex:1 inside the panel even though it sits one level
   deeper than the header. display:contents promotes the body+footer (or
   empty) into the panel's flex flow. */
.nt-cart-drawer .cart-drawer-content { display: contents; }

/* ==== HEADER ==== */
.nt-cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid #F0EBF7;
  flex-shrink: 0;
}
.nt-cart-drawer-title-wrap { display: flex; align-items: center; gap: 8px; }
.nt-cart-drawer-title {
  font-family: 'IBM Plex Sans Hebrew', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1E1236;
  margin: 0;
}
.nt-cart-drawer-counter { font-size: 13px; color: #6B3FA0; font-weight: 500; }
.nt-cart-drawer-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: #777;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.nt-cart-drawer-close:hover { background: #F7F3E9; color: #6B3FA0; }

/* ==== TOAST ==== */
.nt-cart-drawer-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #E9F1EA 0%, #F0EBF7 100%);
  border-bottom: 1px solid rgba(45, 106, 79, 0.18);
  padding: 0 24px;
  font-size: 13px;
  color: #1E4D38;
  flex-shrink: 0;
  transform: translateY(-100%);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: transform 0.25s, opacity 0.25s, max-height 0.25s, padding 0.25s;
}
.nt-cart-drawer-toast.show {
  transform: translateY(0);
  opacity: 1;
  max-height: 80px;
  padding: 14px 24px;
}
.nt-cart-drawer-toast-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #2D6A4F;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nt-cart-drawer-toast-text strong { color: #1E4D38; font-weight: 500; }

/* ==== BODY (item list) ==== */
.nt-cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.nt-cart-drawer-body::-webkit-scrollbar { width: 6px; }
.nt-cart-drawer-body::-webkit-scrollbar-track { background: transparent; }
.nt-cart-drawer-body::-webkit-scrollbar-thumb { background: #D8D3C5; border-radius: 3px; }

.nt-cart-drawer-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #F0EBF7;
  position: relative;
  transition: opacity 0.18s ease;
}
.nt-cart-drawer-item:last-child { border-bottom: none; }
.nt-cart-drawer-item.is-removing { opacity: 0.45; }
.nt-cart-drawer-item-image {
  width: 64px; height: 64px;
  border-radius: 8px;
  background: linear-gradient(135deg, #F7F3E9 0%, #F0EBF7 100%);
  overflow: hidden;
}
.nt-cart-drawer-item-image a { display: block; width: 100%; height: 100%; }
.nt-cart-drawer-item-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nt-cart-drawer-item-info { min-width: 0; padding-top: 2px; }
.nt-cart-drawer-item-name {
  font-family: 'IBM Plex Sans Hebrew', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1E1236;
  text-decoration: none;
  margin: 0 0 3px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nt-cart-drawer-item-name:hover { color: #6B3FA0; }
.nt-cart-drawer-item-meta {
  font-size: 11px;
  color: #777;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nt-cart-drawer-item-meta a { color: inherit; text-decoration: none; }
.nt-cart-drawer-item-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }

.nt-cart-drawer-qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #D8D3C5;
  border-radius: 999px;
  overflow: hidden;
  height: 30px;
}
.nt-cart-drawer-qty button {
  width: 26px;
  height: 100%;
  background: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #1E1236;
  font-family: inherit;
  display: inline-flex; align-items: center; justify-content: center;
}
.nt-cart-drawer-qty button:hover { background: #F7F3E9; }
.nt-cart-drawer-qty input {
  width: 32px;
  border: none;
  text-align: center;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: #1E1236;
  background: transparent;
  -moz-appearance: textfield;
}
.nt-cart-drawer-qty input::-webkit-outer-spin-button,
.nt-cart-drawer-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.nt-cart-drawer-qty input:focus { outline: none; }

.nt-cart-drawer-item-price {
  font-family: 'IBM Plex Sans Hebrew', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1E1236;
  white-space: nowrap;
}

.nt-cart-drawer-item-remove {
  position: absolute;
  top: 14px;
  inset-inline-start: 0;
  width: 22px; height: 22px;
  background: transparent;
  border: none;
  color: #C5C0CC;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  transition: all 0.15s;
  text-decoration: none;
}
.nt-cart-drawer-item-remove:hover { color: #C4922A; background: #F7F3E9; }

/* ==== FOOTER ==== */
.nt-cart-drawer-footer {
  padding: 18px 24px 22px;
  border-top: 1px solid #F0EBF7;
  flex-shrink: 0;
  background: #fff;
}
.nt-cart-drawer-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}
.nt-cart-drawer-subtotal-label { font-size: 14px; color: #555059; }
.nt-cart-drawer-subtotal-value {
  font-family: 'IBM Plex Sans Hebrew', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #1E1236;
}
.nt-cart-drawer-subtotal-note { font-size: 11px; color: #999; margin-bottom: 16px; }

.nt-cart-drawer-cta-stack { display: flex; flex-direction: column; gap: 8px; }
.nt-cart-drawer-cta {
  width: 100%;
  border-radius: 999px;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
  border: 1.5px solid;
  display: block;
  box-sizing: border-box;
}
.nt-cart-drawer-cta.primary {
  background: linear-gradient(135deg, #2D6A4F 0%, #6B3FA0 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(45, 106, 79, 0.18);
}
.nt-cart-drawer-cta.primary:hover {
  background: linear-gradient(135deg, #1E4D38 0%, #5A3489 100%);
  box-shadow: 0 6px 18px rgba(45, 106, 79, 0.24);
  color: #fff;
}
.nt-cart-drawer-cta.secondary {
  background: #fff;
  color: #6B3FA0;
  border-color: #6B3FA0;
  font-size: 13px;
  padding: 10px 20px;
}
.nt-cart-drawer-cta.secondary:hover { background: #6B3FA0; color: #fff; }

.nt-cart-drawer-continue {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: #6B3FA0;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  font-family: inherit;
  padding: 6px 0;
}
.nt-cart-drawer-continue:hover { color: #2D1B4E; }

.nt-cart-drawer-trust {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed #F0EBF7;
  font-size: 11px;
  color: #777;
}
.nt-cart-drawer-trust-item { display: inline-flex; align-items: center; gap: 4px; }
.nt-cart-drawer-trust-item svg { color: #6B3FA0; }

/* ==== EMPTY STATE ==== */
.nt-cart-drawer-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  text-align: center;
}
.nt-cart-drawer-empty-icon {
  width: 88px; height: 88px;
  background: #F0EBF7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #6B3FA0;
  margin-bottom: 22px;
}
.nt-cart-drawer-empty-title {
  font-family: 'IBM Plex Sans Hebrew', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #1E1236;
  margin: 0 0 8px;
}
.nt-cart-drawer-empty-body { font-size: 14px; color: #555059; margin: 0 0 24px; max-width: 240px; }
.nt-cart-drawer-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #2D6A4F 0%, #6B3FA0 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  box-shadow: 0 4px 14px rgba(45, 106, 79, 0.18);
}
.nt-cart-drawer-empty-cta:hover {
  background: linear-gradient(135deg, #1E4D38 0%, #5A3489 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(45, 106, 79, 0.24);
}

/* Lock body scroll while the drawer is open. */
body.is-cart-open { overflow: hidden; }

/* Header badge bump animation when an item lands in the cart. */
.header__cart-badge.is-bumped {
  animation: ntCartBumpA 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes ntCartBumpA {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.35); }
  60%  { transform: scale(0.92); }
  100% { transform: scale(1); }
}

@media (max-width: 600px) {
  .nt-cart-drawer__panel { width: calc(100vw - 40px); }
  .nt-cart-drawer-title { font-size: 16px; }
  .nt-cart-drawer-header { padding: 16px 18px; }
  .nt-cart-drawer-body { padding: 12px 18px; }
  .nt-cart-drawer-footer { padding: 16px 18px 20px; }
  .nt-cart-drawer-cta.primary { font-size: 15px; padding: 16px 20px; }
}

/* ── Drawer: restyle the existing .nt-drawer to v2 palette ── */
.nt-drawer-panel { background: var(--canvas); }
.nt-drawer-head {
  border-bottom: 1px solid var(--lavender);
  background: #FFFFFF;
}
.nt-drawer-head .nt-logo img { height: 36px; }
.nt-drawer-search { border-bottom: 1px solid var(--lavender); }
.nt-drawer-nav-list li,
.nt-drawer-nav .nt-nav-fallback li { border-bottom: 1px solid var(--lavender); }
.nt-drawer-nav-list li a,
.nt-drawer-nav .nt-nav-fallback li a {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
}
.nt-drawer-nav-list li a:hover,
.nt-drawer-nav .nt-nav-fallback li a:hover {
  background: var(--lavender);
  color: var(--purple);
}

/* ── Sticky dock (mobile bottom nav): repaint to v2 palette ── */
.nt-sticky-dock {
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--lavender);
  backdrop-filter: blur(8px);
}
.nt-sticky-dock-link { color: var(--ink); }
.nt-sticky-dock-link:hover,
.nt-sticky-dock-link.is-active { color: var(--purple-bright); }
.nt-sticky-dock-link .nt-cart-count {
  background: var(--gold);
  color: var(--ink);
}

/* ── Scroll progress bar: switch to gold ── */
.nt-scroll-progress-bar { background: var(--gold); }
