@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400&family=Poppins:wght@400;500;600&display=swap');

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --navy:        #132440;
  --cream:       #eadfd4;
  --bg:          #f9f5f2;
  --border:      #e8e0d6;
  --text:        #000000;
  --muted:       #686868;
  --placeholder: #c8bfb5;
  --success:     #008b8b;
  --font-serif:  'Libre Baskerville', Georgia, serif;
  --font-sans:   'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-6: 24px; --sp-8: 32px; --sp-12: 48px; --sp-16: 64px;
  --radius-sm: 3px; --radius-md: 8px; --radius-lg: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
button:focus:not(:focus-visible) { outline: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 400; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--text); font-size: 16px; line-height: 1.6; }

/* =============================================
   TOPBAR
   ============================================= */
.top-bar {
  background: var(--cream);
  color: var(--navy);
  font-size: 12px;
  letter-spacing: 0.05em;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  padding: 6px var(--sp-4);
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .top-bar-inner { padding: 6px var(--sp-8); }
}
.top-bar-msg {
  flex: 1;
  text-align: center;
}
.top-bar-mobile { display: block; }
.top-bar-desktop { display: none; }
@media (min-width: 768px) {
  .top-bar-mobile { display: none; }
  .top-bar-desktop { display: block; }
}

.top-bar-ticker {
  position: relative;
  height: 18px;
  overflow: hidden;
  width: 100%;
  text-align: center;
}
.top-bar-ticker span {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
}
.top-bar-ticker span.active {
  opacity: 1;
}
.top-bar-ticker span.exit {
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Left: language selector — desktop only */
.top-bar-lang {
  display: none;
  flex-shrink: 0;
  position: relative;
}
@media (min-width: 768px) {
  .top-bar-lang { display: flex; align-items: center; }
}
.lang-btn {
  background: none;
  border: 0.5px solid rgba(19,36,64,0.25);
  border-radius: var(--radius-sm);
  padding: 3px 8px;
  font-size: 11px;
  font-family: var(--font-sans);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.05em;
}
.lang-btn svg { width: 12px; height: 12px; }
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 130px;
  z-index: 1000;
  overflow: hidden;
}
#mobileLangDropdown {
  top: auto;
  bottom: calc(100% + 4px);
  left: 0;
}
.lang-dropdown.open { display: block; }
.lang-option {
  padding: 8px 12px;
  font-size: 12px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-option:hover { background: var(--bg); }
.lang-option.active { font-weight: 600; }

/* Right: icons — desktop only */
.top-bar-icons {
  display: none;
  flex-shrink: 0;
  align-items: center;
  gap: var(--sp-2);
}
@media (min-width: 768px) {
  .top-bar-icons { display: flex; }
}
.top-bar-icon-btn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  transition: opacity 0.15s;
}
.top-bar-icon-btn:hover { opacity: 1; }
.top-bar-icon-btn svg { width: 16px; height: 16px; }

/* =============================================
   HEADER
   ============================================= */
#global-header {
  position: sticky;
  top: 0;
  z-index: 900;
}
.site-header {
  background: var(--bg);
  color: var(--navy);
  border-bottom: 0.5px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "left center right";
  align-items: center;
  padding: var(--sp-4);
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .header-inner { padding: var(--sp-4) var(--sp-8); gap: var(--sp-4); }
}
.header-logo {
  grid-area: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}
.logo-sub {
  font-size: 9px;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 2px;
}
.header-nav {
  display: none;
  grid-area: left;
  gap: var(--sp-6);
  align-items: center;
}
.header-nav a,
.header-nav-secondary a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.header-nav a:hover,
.header-nav-secondary a:hover { color: var(--navy); }
.header-nav-secondary {
  display: none;
  gap: var(--sp-6);
  align-items: center;
}
.header-actions {
  grid-area: right;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  justify-content: flex-end;
}
.header-hamburger-slot {
  grid-area: left;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.header-icon-btn {
  background: none;
  border: none;
  color: var(--navy);
  padding: var(--sp-1);
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.header-icon-btn svg { width: 20px; height: 20px; }
.cart-badge, .wishlist-badge {
  position: absolute;
  top: -4px; right: -6px;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer;
  padding: var(--sp-1);
}
.hamburger-btn span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--navy);
  transition: transform 0.22s, opacity 0.22s;
  transform-origin: center;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.hide-mobile { display: none; }
@media (max-width: 767px) {
  .header-actions { gap: 6px; }
  .header-hamburger-slot { gap: 6px; }
}
@media (min-width: 768px) {
  .hide-mobile { display: flex; }
  .hide-desktop { display: none !important; }
  .header-nav { display: flex; }
  .header-nav-secondary { display: flex; }
  .header-hamburger-slot { display: none; }
}
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 85%; max-width: 360px;
  background: var(--bg);
  z-index: 9991;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-6);
  border-bottom: 0.5px solid var(--border);
  flex-shrink: 0;
}
.mobile-nav-rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav-rating-score {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.mobile-nav-rating-count {
  font-size: 11px;
  color: var(--muted);
}
.mobile-nav-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); color: var(--text); font-size: 20px;
  background: none; border: none; cursor: pointer;
  transition: background 0.15s;
}
.mobile-nav-close:hover { background: var(--border); }
.mobile-nav-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mobile-nav-cats {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-4);
  border-bottom: 0.5px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 0;
}
.mobile-nav-cats::-webkit-scrollbar { display: none; }
.mobile-nav-cat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  cursor: pointer;
  flex-shrink: 0;
  width: 100px;
}
.mobile-nav-cat-img {
  aspect-ratio: 3 / 4;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mobile-nav-cat-img svg { width: 28px; height: 28px; color: var(--navy); opacity: 0.25; }
.mobile-nav-cat-label { font-size: 12px; font-weight: 500; color: var(--navy); line-height: 1.3; }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 0 var(--sp-6);
  border-top: none;
}
.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy);
  padding: var(--sp-4) 0;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}
.mobile-nav-link svg { width: 18px; height: 18px; opacity: 0.35; }
.mobile-nav-account {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}
.mobile-nav-account:hover { color: var(--navy); }
.mobile-nav-lang {
  padding: var(--sp-4) var(--sp-6);
  border-top: 0.5px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.mobile-nav-secondary {
  margin-top: 0;
  padding: var(--sp-6) var(--sp-6) var(--sp-6);
  border-top: 0.5px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3) var(--sp-4);
}
.mobile-nav-secondary-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.mobile-nav-secondary a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}
.mobile-nav-secondary a:hover { color: var(--navy); }

.mobile-nav-trust {
  margin-top: auto;
  padding: var(--sp-6) var(--sp-6) var(--sp-6);
  border-top: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.mobile-nav-trust-legal {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  align-items: center;
  margin-bottom: var(--sp-3);
}
.mobile-nav-trust-legal a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
}
.mobile-nav-trust-legal a:hover { color: var(--navy); }
.mobile-nav-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-2);
}
.mobile-nav-trust-chip {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--muted);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 3px 8px;
  white-space: nowrap;
}

/* =============================================
   ADD-TO-CART TOAST
   ============================================= */
.atc-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 99999;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.atc-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.atc-toast svg { width: 16px; height: 16px; }

/* =============================================
   SHARED DRAWER OVERLAY
   ============================================= */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

/* =============================================
   WISHLIST DRAWER
   ============================================= */
.wishlist-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 85%; max-width: 420px;
  background: var(--bg);
  z-index: 9991;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.wishlist-drawer.open { transform: translateX(0); }
.wishlist-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6) var(--sp-6) var(--sp-4);
  border-bottom: 0.5px solid var(--border);
}
.wishlist-drawer-title {
  font-family: var(--font-serif);
  font-size: 18px;
}
.wishlist-close-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); color: var(--text); font-size: 20px;
  background: none; border: none; cursor: pointer;
  transition: background 0.15s;
}
.wishlist-close-btn:hover { background: var(--border); }
.wishlist-drawer-body {
  flex: 1; overflow-y: auto;
  padding: var(--sp-4) var(--sp-6);
}
.wishlist-item {
  display: flex; gap: var(--sp-3);
  padding: var(--sp-4) 0;
  border-bottom: 0.5px solid var(--border);
  align-items: flex-start;
}
.wishlist-item-thumb {
  width: 64px; height: 64px; min-width: 64px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 0.5px solid var(--border);
}
.wishlist-item-thumb svg { width: 28px; height: 28px; opacity: 0.2; }
.wishlist-item-info { flex: 1; min-width: 0; }
.wishlist-item-name {
  font-size: 14px; line-height: 1.3;
  margin-bottom: var(--sp-1);
}
.wishlist-item-price {
  font-size: 13px; color: var(--muted);
  margin-bottom: var(--sp-3);
}
.wishlist-item-actions { display: flex; gap: var(--sp-2); align-items: center; }
.wishlist-atc-btn {
  font-size: 12px; font-weight: 500;
  padding: 6px 12px;
  background: var(--navy); color: #fff;
  border-radius: var(--radius-sm); border: none;
  cursor: pointer; font-family: inherit;
}
.wishlist-atc-btn:hover { opacity: 0.85; }
.wishlist-remove-btn {
  font-size: 12px; color: var(--muted);
  text-decoration: underline; text-underline-offset: 2px;
  background: none; border: none; cursor: pointer; font-family: inherit;
}
.wishlist-drawer-footer {
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  border-top: 0.5px solid var(--border);
  display: flex; flex-direction: column; gap: var(--sp-3);
}
.wishlist-share-btn {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-2); width: 100%; padding: 12px;
  border: 0.5px solid var(--navy); border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; color: var(--navy);
  background: none; cursor: pointer; font-family: inherit;
  transition: background 0.15s, color 0.15s;
}
.wishlist-share-btn:hover { background: var(--navy); color: #fff; }
.wishlist-share-btn svg { width: 14px; height: 14px; }

/* =============================================
   CART DRAWER
   ============================================= */
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 85%; max-width: 420px;
  background: var(--bg);
  z-index: 9991;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-6) var(--sp-6) var(--sp-4);
  border-bottom: 0.5px solid var(--border);
}
.cart-drawer-title { font-family: var(--font-serif); font-size: 18px; }
.cart-close-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); color: var(--text); font-size: 20px;
  background: none; border: none; cursor: pointer;
  transition: background 0.15s;
}
.cart-close-btn:hover { background: var(--border); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: var(--sp-4) var(--sp-6); }
.shipping-bar {
  margin-bottom: var(--sp-6);
  padding: var(--sp-3) var(--sp-4);
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
}
.shipping-bar-label { font-size: 12px; color: var(--muted); margin-bottom: var(--sp-2); }
.shipping-bar-track {
  height: 3px;
  background: var(--border);
  overflow: hidden;
  border-radius: 2px;
}
.shipping-bar-fill {
  height: 100%;
  background: var(--success);
}
.cart-item {
  display: flex; gap: var(--sp-3);
  padding: var(--sp-4) 0;
  border-bottom: 0.5px solid var(--border);
}
.cart-item-thumb {
  width: 64px; height: 64px; min-width: 64px;
  background: var(--cream); border-radius: var(--radius-sm);
  overflow: hidden;
  border: 0.5px solid var(--border);
}
.cart-item-thumb svg { width: 28px; height: 28px; opacity: 0.2; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 14px; line-height: 1.3; margin-bottom: var(--sp-2);
}
.cart-item-controls { display: flex; align-items: center; gap: var(--sp-3); }
.qty-control {
  display: flex; align-items: center;
  border: 0.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
}
.qty-btn {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text);
  background: none; border: none; cursor: pointer;
  transition: background 0.12s;
}
.qty-btn:hover { background: var(--border); }
.qty-val {
  width: 28px; text-align: center; font-size: 13px; line-height: 28px;
  border-left: 0.5px solid var(--border); border-right: 0.5px solid var(--border);
}
.cart-item-remove {
  font-size: 12px; color: var(--muted);
  text-decoration: underline; text-underline-offset: 2px;
  background: none; border: none; cursor: pointer; font-family: inherit;
}
.cart-item-price { font-weight: 600; font-size: 14px; align-self: flex-start; }
.cart-recs-label {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin: var(--sp-6) 0 var(--sp-3);
}
.cart-rec {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3) 0; border-bottom: 0.5px solid var(--border);
}
.cart-rec-thumb {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--cream); border-radius: var(--radius-sm);
  overflow: hidden;
  border: 0.5px solid var(--border);
}
.cart-rec-info { flex: 1; min-width: 0; }
.cart-rec-name { font-size: 13px; line-height: 1.3; }
.cart-rec-price { font-size: 13px; color: var(--muted); }
.cart-rec-add {
  font-size: 12px; font-weight: 500;
  padding: 6px 10px;
  border: 0.5px solid var(--navy); border-radius: var(--radius-sm);
  color: var(--navy); white-space: nowrap;
  background: none; cursor: pointer; font-family: inherit;
  transition: background 0.15s, color 0.15s;
}
.cart-rec-add:hover { background: var(--navy); color: #fff; }
.cart-drawer-footer {
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  border-top: 0.5px solid var(--border);
}
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: var(--sp-4);
}
.cart-subtotal-label { font-size: 14px; color: var(--muted); }
.cart-subtotal-amount { font-size: 18px; font-weight: 600; }
.btn-full { width: 100%; display: block; text-align: center; }
.btn-primary {
  background: var(--navy); color: #fff;
  border: none; border-radius: var(--radius-sm);
  padding: 14px var(--sp-6);
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  font-family: var(--font-sans); cursor: pointer;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.9; }
.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px var(--sp-6);
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  font-family: var(--font-sans); cursor: pointer;
  transition: border-color 0.15s;
  text-decoration: none;
  box-sizing: border-box;
}
.btn-outline:hover { border-color: var(--navy); }

/* ── Global form elements ── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-input {
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px var(--sp-4);
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.form-input::placeholder { color: var(--placeholder); }
.form-input:focus { border-color: var(--navy); }

/* =============================================
   NEWSLETTER POPUP
   ============================================= */
.nl-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9998;
}
.nl-overlay.open { display: block; }
.nl-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  background: #fff;
  overflow: hidden;
  border-radius: var(--radius-sm);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(480px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
.nl-modal.open { display: block; }
.nl-hero {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-12) var(--sp-8);
  min-height: 180px;
}
.nl-hero svg { width: 72px; height: 72px; color: rgba(19,36,64,0.22); }
.nl-body { background: var(--bg); padding: var(--sp-8); }
.nl-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-2);
}
.nl-heading {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: var(--sp-4);
}
.nl-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: var(--sp-6);
}
.nl-form { display: flex; gap: var(--sp-2); margin-bottom: var(--sp-3); }
.nl-input {
  flex: 1;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px var(--sp-4);
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--text);
  background: #fff;
  outline: none;
}
.nl-input::placeholder { color: var(--placeholder); }

/* ── Search panel ── */
.srch-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9997;
}
.srch-overlay.open { display: block; }
.srch-panel {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #fff;
  border-bottom: 0.5px solid var(--border);
  z-index: 9998;
}
.srch-panel.open { display: block; }
.srch-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 24px 24px 16px;
}
.srch-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.srch-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--muted);
}
.srch-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 20px;
  font-family: var(--font-sans);
  color: var(--text);
  background: transparent;
  -webkit-appearance: none;
}
.srch-input::placeholder { color: var(--placeholder); }
.srch-input::-webkit-search-cancel-button { display: none; }
.srch-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.srch-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 0.5px solid var(--border);
  cursor: pointer;
}
.srch-result-thumb {
  width: 44px;
  height: 44px;
  min-width: 44px;
  flex-shrink: 0;
  background: var(--cream);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 0.5px solid var(--border);
}
.srch-result-info { flex: 1; min-width: 0; }
.srch-result-name { font-size: 14px; color: var(--text); line-height: 1.4; }
.srch-result-cat { font-size: 12px; color: var(--muted); }
.srch-result-price { font-size: 14px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.srch-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}
.srch-empty {
  font-size: 14px;
  color: var(--muted);
  padding: 16px 0;
}

/* ── Header logo ── */
.header-logo img {
  height: 35px;
  width: auto;
  display: block;
  padding-top: 6px;
}

/* ── Mobile lang selector ── */
.mobile-nav-lang .lang-btn {
  font-size: 12px;
  padding: 5px 10px;
}
.mobile-nav-lang > div { position: relative; }
.nl-heart { color: var(--navy); }
.nl-input:focus { border-color: var(--navy); }
.nl-submit {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px var(--sp-6);
  font-size: 15px;
  font-family: var(--font-sans);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.nl-submit:hover { opacity: 0.9; }
.nl-disclaimer { font-size: 12px; color: var(--muted); line-height: 1.5; }
.nl-close {
  position: absolute;
  top: var(--sp-3); right: var(--sp-3);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  color: var(--navy);
}
.nl-close svg { width: 16px; height: 16px; }
@media (max-width: 767px) {
  .nl-form { flex-direction: column; }
  .nl-submit { width: 100%; padding: 16px; }
  .nl-hero { min-height: 140px; padding: var(--sp-8); }
  .nl-hero svg { width: 56px; height: 56px; }
  .nl-heading { font-size: 24px; }
}

/* =============================================
   PAGE: LOGIN
   ============================================= */
.page-login {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: var(--sp-12) var(--sp-4);
}
.login-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-12) var(--sp-8);
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.login-card-header { text-align: center; }
.login-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}
.login-subtitle {
  font-size: 14px;
  color: var(--muted);
}
.login-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.form-forgot {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  text-align: right;
  align-self: flex-end;
}
.form-forgot:hover { color: var(--navy); }
.login-divider {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--muted);
  font-size: 13px;
}
.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--border);
}
.login-club-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-4);
}
.login-club-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-club-icon svg { width: 18px; height: 18px; color: #fff; }
.login-club-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.login-club-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.login-club-desc a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

/* =============================================
   PROTOTYPE NAV BAR
   ============================================= */
.proto-nav {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 99999;
  background: var(--navy);
  border-radius: 3px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  user-select: none;
  overflow: visible;
}
.proto-nav-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  background: none;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 9px 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: grab;
  width: 100%;
}
.proto-nav-toggle:active { cursor: grabbing; }
.proto-nav-grip {
  margin-left: auto;
  opacity: 0.5;
  flex-shrink: 0;
}
.proto-nav-list {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 4px;
  border-top: 0.5px solid rgba(255,255,255,0.15);
  max-height: 70vh;
  overflow-y: auto;
}
.proto-nav--open .proto-nav-list,
.proto-nav--open-up .proto-nav-list {
  display: flex;
  position: absolute;
  left: 0;
  min-width: 100%;
  background: var(--navy);
  border-radius: 3px;
}
.proto-nav--open .proto-nav-list {
  top: 100%;
  margin-top: 4px;
  border-top: none;
}
.proto-nav--open-up .proto-nav-list {
  bottom: 100%;
  margin-bottom: 4px;
  border-top: none;
  border-bottom: 0.5px solid rgba(255,255,255,0.15);
}
.proto-nav-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  text-align: left;
}
.proto-nav-btn:hover { color: #fff; }
.proto-nav-btn.active {
  background: #fff;
  color: var(--navy);
}

/* =============================================
   PAGE VISIBILITY
   ============================================= */
.page-home,
.page-login,
.page-checkout,
.page-contact,
.page-loyalty,
.page-giftcard,
.page-account { display: none; }
.page-home.active      { display: block; }
.page-login.active     { display: flex; }
.page-checkout.active  { display: block; }
.page-wishlist.active  { display: block; }
.page-contact.active   { display: block; }
.page-loyalty.active   { display: block; }
.page-giftcard.active  { display: block; }
.page-account.active   { display: block; }
.page-home {
  min-height: 100vh;
  background: var(--bg);
}

/* =============================================
   FOOTER
   ============================================= */
.footer-main {
  background: var(--cream);
  color: var(--navy);
}
.footer-main-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.6fr;
  gap: var(--sp-12);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-8);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.footer-col-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.footer-link {
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--navy); }
.footer-col-nl { gap: var(--sp-4); }
.footer-nl-heading {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy);
  line-height: 1.3;
}
.footer-nl-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-nl-disclaimer {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* Legal footer */
.footer-legal {
  background: var(--bg);
  border-top: 0.5px solid var(--border);
}
.footer-legal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-4) var(--sp-8);
  gap: var(--sp-6);
}
.footer-legal-copy {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
.footer-legal-links {
  display: flex;
  gap: var(--sp-6);
}
.footer-legal-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-legal-links a:hover { color: var(--navy); }
.footer-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-2);
}
.footer-badges-row {
  display: flex;
  gap: var(--sp-2);
}
.footer-badge {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 3px 8px;
  white-space: nowrap;
}

/* ── Footer mobile ── */
@media (max-width: 767px) {
  .footer-main-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8) var(--sp-6);
    padding: var(--sp-8) var(--sp-4);
  }
  .footer-col-social { display: flex; }
  .footer-col-nl {
    grid-column: 1 / -1;
  }
  .footer-legal-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--sp-4);
    padding: var(--sp-6) var(--sp-4);
  }
  .footer-badges { align-items: center; }
}

/* ── Empty drawer state ── */
.drawer-empty {
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
}
.drawer-empty-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy);
}
.drawer-empty-sub {
  font-size: 14px;
  color: var(--muted);
}
.drawer-empty-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
  width: 100%;
  margin-top: var(--sp-2);
}
.drawer-empty-cat {
  background: var(--cream);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-4) var(--sp-3);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  text-align: center;
  transition: opacity 0.15s;
}
.drawer-empty-cat:hover { opacity: 0.8; }
.drawer-empty-ht-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: var(--sp-4);
  width: 100%;
  text-align: left;
}
.drawer-empty-ht {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
  width: 100%;
}
.drawer-empty-ht-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  background: #ede9e3;
  border-radius: var(--radius-md);
  padding: var(--sp-6) var(--sp-3);
  text-decoration: none;
  transition: opacity 0.15s;
  aspect-ratio: 1;
}
.drawer-empty-ht-card:hover { opacity: 0.8; }
.drawer-empty-ht-icon {
  width: 36px;
  height: 36px;
  color: #8a8070;
}
.drawer-empty-ht-icon svg { width: 100%; height: 100%; }
.drawer-empty-ht-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
}

/* =============================================
   PAGE: CHECKOUT
   ============================================= */
.page-checkout {
  min-height: 100vh;
  background: var(--bg);
  padding: var(--sp-8) var(--sp-4) var(--sp-16);
}
.checkout-inner {
  display: flex;
  gap: var(--sp-8);
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}
.checkout-left  { flex: 6; min-width: 0; display: flex; flex-direction: column; gap: var(--sp-8); }
.checkout-right { flex: 4; min-width: 0; position: sticky; top: 96px; }
.checkout-section-title {
  font-size: 20px;
  margin-bottom: var(--sp-4);
}

/* ── Club nudge (guest) ── */
.checkout-club-nudge {
  background: var(--cream);
  box-shadow: inset 0 0 0 0.5px var(--border);
  border-radius: var(--radius-sm);
  padding: 40px 48px;
  margin-top: var(--sp-6);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.checkout-club-nudge-content {
  flex: 0 0 65%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checkout-club-nudge-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  opacity: 0.55;
  margin: 0;
}
.checkout-club-nudge-heading {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin: 0;
}
.checkout-club-nudge-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.checkout-club-link {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.checkout-club-nudge-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.checkout-club-btn { white-space: nowrap; }

/* ── Points box (logged in) ── */
.checkout-points-box {
  box-shadow: inset 0 0 0 0.5px var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-6);
  background: #fff;
}
.checkout-points-box-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}
.checkout-points-heading {
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4;
}
.checkout-points-sub {
  font-size: 13px;
  color: var(--muted);
}
.checkout-points-btn { white-space: nowrap; flex-shrink: 0; }

/* ── Gift carousel (member) ── */
.checkout-gifts-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: var(--sp-4);
  margin-top: calc(var(--sp-2) * -1);
}
.checkout-gifts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-2);
}
.checkout-gift-card {
  box-shadow: inset 0 0 0 0.5px var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  background: #fff;
}
.checkout-gift-img {
  background: var(--cream);
  border-radius: var(--radius-sm);
  height: 80px;
  overflow: hidden;
}
.checkout-gift-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.checkout-gift-name {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--navy);
  line-height: 1.3;
}
.checkout-gift-price {
  font-size: 12px;
  color: var(--muted);
}
.checkout-gift-btn {
  margin-top: auto;
  font-family: var(--font-sans);
  font-size: 12px;
  padding: 8px 12px;
  width: 100%;
  text-align: center;
}
.checkout-gift-btn.gift-added {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ── Gift badge in cart ── */
.checkout-gift-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--navy);
  border-radius: var(--radius-sm);
  padding: 2px 6px;
  margin-left: 6px;
  vertical-align: middle;
  font-family: var(--font-sans);
  font-weight: 500;
}

/* ── Points checkbox ── */
.checkout-points-box {
  margin-top: var(--sp-6);
}
.checkout-points-box-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}
.checkout-points-label {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  cursor: pointer;
  flex: 1;
}
.checkout-points-checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}

/* ── Deals slider ── */
.checkout-deals-slider { overflow: hidden; border-radius: var(--radius-sm); }
.checkout-deals-track {
  display: flex;
  transition: transform 0.35s ease;
}
.checkout-deal-card {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-4);
}
.checkout-deal-thumb {
  width: 96px;
  height: 96px;
  min-width: 96px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 0.5px solid var(--border);
  flex-shrink: 0;
  overflow: hidden;
}
.checkout-deal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.checkout-deal-info { flex: 1; min-width: 0; }
.checkout-deal-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}
.checkout-deal-prices { display: flex; align-items: center; gap: var(--sp-3); }
.checkout-deal-original {
  font-size: 13px;
  color: var(--placeholder);
  text-decoration: line-through;
}
.checkout-deal-new {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.checkout-deal-add {
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 12px; white-space: nowrap;
  border: 0.5px solid var(--navy); border-radius: var(--radius-sm);
  background: none; color: var(--navy);
  cursor: pointer; font-family: var(--font-sans); flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.checkout-deal-add:hover { background: var(--navy); color: #fff; }

@media (max-width: 767px) {
  .checkout-deal-thumb { width: 72px; height: 72px; min-width: 72px; }
  .checkout-deal-name { font-size: 13px; }
  .checkout-deal-new { font-size: 15px; }
}
.checkout-deals-dots {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}
.checkout-deals-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.checkout-deals-dot.active { background: var(--navy); }

/* ── Klarna placeholder ── */
.checkout-klarna-frame {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--placeholder);
  font-size: 14px;
}

/* ── Right: order summary ── */
.checkout-summary {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.checkout-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 0.5px solid var(--border);
}
.checkout-item:first-child { padding-top: 0; }
.checkout-item-thumb {
  width: 56px; height: 56px; min-width: 56px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 0.5px solid var(--border);
  flex-shrink: 0;
  overflow: hidden;
}
.checkout-item-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.checkout-item-info { flex: 1; min-width: 0; }
.checkout-item-name { font-size: 13px; color: var(--navy); line-height: 1.3; margin-bottom: var(--sp-2); }
.checkout-item-controls { display: flex; align-items: center; gap: var(--sp-3); }
.checkout-item-price { font-size: 14px; font-weight: 600; color: var(--navy); white-space: nowrap; }
.checkout-discount {
  display: flex;
  gap: var(--sp-2);
}
.checkout-code-btn { flex-shrink: 0; }
.checkout-totals { display: flex; flex-direction: column; gap: var(--sp-3); }
.checkout-totals-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}
.checkout-totals-final {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  padding-top: var(--sp-3);
  border-top: 0.5px solid var(--border);
}

/* ── Checkout mobile ── */
@media (max-width: 767px) {
  .checkout-inner { flex-direction: column; }
  .checkout-right { position: static; order: -1; width: 100%; }
  .checkout-left  { order: 1; width: 100%; }
  .checkout-klarna-frame { width: 100%; }

  /* Club nudge: stack vertically */
  .checkout-club-nudge {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 20px;
  }
  .checkout-club-nudge-content { flex: 1 1 auto; }
  .checkout-club-nudge-cta { width: 100%; }
  .checkout-club-btn { width: 100%; text-align: center; }

  /* Points box: keep inline row, text wraps, checkbox stays pinned right */
  .checkout-points-box-inner {
    align-items: flex-start;
    gap: var(--sp-4);
  }
  .checkout-points-label { flex: 1; min-width: 0; }
  .checkout-points-checkbox { flex-shrink: 0; margin-top: 2px; }

  /* Gift carousel */
  .checkout-gifts-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--sp-4);
    padding-bottom: var(--sp-2);
    grid-template-columns: unset;
  }
  .checkout-gifts-grid::-webkit-scrollbar { display: none; }
  .checkout-gift-card {
    scroll-snap-align: start;
    flex: 0 0 75%;
    min-width: 0;
  }

  /* Member checkout: reorder left column — points before gifts */
  #page-checkout-member .checkout-deals       { order: 2; }
  #page-checkout-member .checkout-points-box  { order: 1; }
  #page-checkout-member .checkout-klarna      { order: 3; }
}

/* ── Checkout page: hide top bar and main footer ── */
body.checkout-active #global-topbar { display: none; }
body.checkout-active .footer-main   { display: none; }

/* ── Checkout header ── */
#checkout-header {
  display: none;
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--bg);
  border-bottom: 0.5px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
body.checkout-active #checkout-header { display: block; }
body.checkout-active #global-header   { display: none; }

.checkout-header-inner {
  display: flex;
  align-items: center;
  padding: 0 var(--sp-6);
  height: 64px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .checkout-header-back br { display: none; }
}
.checkout-header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.checkout-header-logo img {
  height: 28px;
  width: auto;
  display: block;
}
.checkout-header-back {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: none;
  border: none;
  font-size: 13px;
  font-family: var(--font-sans);
  color: var(--navy);
  cursor: pointer;
  letter-spacing: 0.02em;
}
.checkout-header-back svg { width: 16px; height: 16px; }
.checkout-header-spacer { flex: 0 0 120px; }

/* ── Checkout header: Trustpilot badge ── */
.checkout-header-tp {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  margin-left: auto;
}
.checkout-tp-brand {
  display: flex;
  align-items: center;
  gap: 4px;
}
.checkout-tp-logo {
  width: 14px;
  height: 14px;
}
.checkout-tp-wordmark {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
}
.checkout-tp-bottom {
  display: flex;
  align-items: center;
  gap: 6px;
}
.checkout-tp-stars {
  display: flex;
  gap: 2px;
}
.tp-star-tile {
  width: 16px;
  height: 16px;
}
.checkout-tp-score {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-sans);
}
@media (max-width: 767px) {
  .tp-star-hide-mobile { display: none; }
  .tp-score-hide-mobile { display: none; }
}

/* =============================================
   PAGE: WISHLIST
   ============================================= */
.page-wishlist { display: none; background: var(--bg); min-height: 100vh; padding: var(--sp-8) var(--sp-4) var(--sp-16); }
.wishlist-page-inner { max-width: 680px; margin: 0 auto; }

.wishlist-page-eyebrow {
  font-family: var(--font-sans); font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: var(--sp-2);
}
.wishlist-page-title { margin-bottom: var(--sp-2); }
.wishlist-page-meta {
  font-size: 14px; color: var(--muted); margin-bottom: var(--sp-8);
}

/* Share section */
.wishlist-page-share { border-top: 0.5px solid var(--border); padding-top: var(--sp-6); margin-bottom: var(--sp-8); }
.wishlist-page-share-label {
  font-family: var(--font-sans); font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: var(--sp-4);
}
.wishlist-page-share-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.wso-btn {
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-3);
  background: #fff; border: 0.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 13px; color: var(--navy); font-family: var(--font-sans);
  cursor: pointer; transition: border-color 0.15s;
}
.wso-btn:hover { border-color: var(--navy); }
.wso-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.wso-icon svg { width: 20px; height: 20px; }
.wso-icon-link { background: #f0f0f0; color: #555; }
.wso-icon-wa   { background: #e8f8f0; color: #25d366; }
.wso-icon-email { background: #eef0fb; color: #5c6bc0; }

/* Product items */
.wlp-item {
  display: flex; align-items: flex-start; gap: var(--sp-4);
  padding: var(--sp-6) 0; border-bottom: 0.5px solid var(--border);
}
.wlp-item:first-child { border-top: 0.5px solid var(--border); }
.wlp-thumb {
  width: 80px; height: 80px; min-width: 80px;
  background: var(--cream); border-radius: var(--radius-sm);
  border: 0.5px solid var(--border);
  overflow: hidden;
}
.wlp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 768px) { .wlp-thumb { width: 96px; height: 96px; min-width: 96px; } }
.wlp-info { flex: 1; min-width: 0; }
.wlp-name { font-size: 16px; color: var(--navy); line-height: 1.3; margin-bottom: var(--sp-1); }
.wlp-price { font-size: 14px; color: var(--muted); margin-bottom: var(--sp-3); }
.wlp-actions { display: flex; align-items: center; gap: var(--sp-3); }
.wlp-atc { padding: 10px var(--sp-4); font-size: 13px; }
.wlp-remove {
  background: none; border: none; font-size: 13px;
  color: var(--muted); cursor: pointer; font-family: var(--font-sans);
  text-decoration: underline; text-underline-offset: 2px;
}
.wlp-remove:hover { color: var(--navy); }

/* Footer */
.wishlist-page-footer { margin-top: var(--sp-8); }

/* =============================================
   GLOBAL HEADING SCALE
   ============================================= */
h1 { font-family: var(--font-serif); font-size: 28px; color: var(--navy); line-height: 1.2; }
h2 { font-family: var(--font-serif); font-size: 24px; color: var(--navy); line-height: 1.3; }
h3 { font-family: var(--font-serif); font-size: 18px; color: var(--navy); line-height: 1.3; }
h4 { font-family: var(--font-sans);  font-size: 14px; color: var(--navy); line-height: 1.4; }

/* =============================================
   HOMEPAGE — SHARED SECTION STRUCTURE
   ============================================= */
.section { padding: var(--sp-12) 0; }

/* ── BRAND VALUES STRIP ── */
.brand-values-strip {
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 28px var(--sp-6);
}
.brand-values-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: 900px;
  margin: 0 auto;
}
.bv-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--sp-3);
  position: relative;
}
.bv-item + .bv-item::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 0.5px;
  background: var(--border);
}
.bv-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}
@media (max-width: 600px) {
  .brand-values-inner {
    grid-template-columns: repeat(3, 1fr);
    row-gap: var(--sp-6);
  }
  .bv-item + .bv-item::before { display: none; }
}
.section--navy { background: var(--navy); }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 var(--sp-4);
  margin-bottom: var(--sp-6);
}
@media (min-width: 768px) {
  .section-header { padding: 0 var(--sp-8); max-width: 1200px; margin-left: auto; margin-right: auto; margin-bottom: var(--sp-6); }
}

.section-title { margin: 0; }
.section-title--light { color: #fff; }

.section-link {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.section-link--light { color: rgba(255,255,255,0.6); }
.section-link:hover { color: var(--navy); }
.section-link--light:hover { color: #fff; }

/* ─── Carousel track (shared by products, categories, instagram, reviews) ─── */
.carousel-track {
  display: flex;
  gap: var(--sp-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 var(--sp-4) var(--sp-2);
}
.carousel-track::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
  .carousel-track { padding: 0 var(--sp-8) var(--sp-2); max-width: 1200px; margin-left: auto; margin-right: auto; }
}

/* =============================================
   HERO TILES
   ============================================= */
.hero-tiles-wrap {
  padding-left: var(--sp-4);
}

/* Mobile: horizontal scroll with peek */
.hero-tiles-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-4) var(--sp-4) 0;
}
.hero-tiles-track::-webkit-scrollbar { display: none; }

.hero-tile {
  flex: 0 0 88%;
  scroll-snap-align: start;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.hero-tile--bg    { background: var(--cream); }
.hero-tile--cream { background: var(--cream); }

.hero-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-tile-overlay { display: none; }

.hero-tile-inner { position: relative; z-index: 1; }

/* Navy text over cream placeholder */
.hero-tile .hero-eyebrow { color: var(--muted); }
.hero-tile .hero-heading  { color: var(--navy); }
.hero-tile .hero-sub      { color: var(--muted); }

.hero-tile-inner {
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
  width: 100%;
}

/* Desktop: constrained to content width, two equal columns */
@media (min-width: 768px) {
  .hero-tiles-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--sp-6) var(--sp-8);
    overflow: visible;
  }
  .hero-tiles-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow-x: visible;
    gap: var(--sp-4);
    padding: 0;
  }
  .hero-tile {
    flex: none;
    aspect-ratio: unset;
    height: 520px;
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
  }
  .hero-tile-inner {
    max-width: 380px;
  }
}

/* =============================================
   CATEGORY TILES
   ============================================= */
.cat-track { gap: var(--sp-3); }

.cat-tile {
  flex: 0 0 clamp(100px, 28vw, 160px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-decoration: none;
}
@media (min-width: 768px) {
  .cat-tile { flex: 1; min-width: 0; }
}

.cat-tile-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--cream);
  border-radius: var(--radius-sm);
  transition: opacity 0.2s;
}
.cat-tile-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-tile:hover .cat-tile-img { opacity: 0.85; }

.cat-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
}

/* =============================================
   PRODUCT CARD (global — used everywhere)
   ============================================= */
.product-card {
  flex: 0 0 clamp(148px, 42vw, 220px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .product-card { flex: 0 0 220px; }
}

.product-card-media {
  position: relative;
  width: 100%;
  padding-bottom: 125%; /* 4:5 ratio */
  background: var(--cream);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.product-badge {
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-2);
  background: var(--navy);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px var(--sp-2);
  border-radius: var(--radius-sm);
}

.product-card-body {
  padding: var(--sp-2) 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.product-card-bottom {
  margin-top: auto;
  padding-top: var(--sp-2);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-card-name {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--navy);
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--muted);
}
.product-card-stars .stars { color: var(--navy); font-size: 10px; letter-spacing: 1px; }

.product-card-price {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

/* =============================================
   INSTAGRAM TILES
   ============================================= */
.ig-tile-wrap {
  flex: 0 0 clamp(140px, 38vw, 200px);
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.ig-tile {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--cream);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.ig-tile-wrap:nth-child(2n) .ig-tile { background: #d5c9bc; }
.ig-tile-wrap:nth-child(3n) .ig-tile { background: #cdc0b0; }
.ig-tile-wrap:nth-child(4n) .ig-tile { background: #bfb2a2; }
.ig-tile-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
}
.ig-tile-name {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--text);
  line-height: 1.3;
}
.ig-tile-add {
  flex-shrink: 0 !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 3px !important;
  border: none !important;
  background: var(--navy) !important;
  color: #fff !important;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  transition: opacity 0.15s;
}
.ig-tile-add:hover { opacity: 0.85; }
.ig-tile-add--confirmed {
  background: #fff !important;
  border: 0.5px solid var(--border) !important;
  color: var(--navy) !important;
}
.ig-tile-wrap .ig-tile { aspect-ratio: 4 / 5 !important; flex: none !important; width: 100% !important; }

/* =============================================
   TRUSTPILOT REVIEWS
   ============================================= */
.tp-section-tag {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-top: var(--sp-1);
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--muted);
}
.tp-section-tag svg { flex-shrink: 0; }

.tp-card {
  flex: 0 0 clamp(240px, 72vw, 300px);
  scroll-snap-align: start;
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
@media (min-width: 768px) { .tp-card { flex: 0 0 300px; } }

.tp-card-stars {
  display: flex;
  gap: 2px;
}
.tp-star {
  width: 22px;
  height: 22px;
  background: #00b67a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  color: #fff;
  font-size: 13px;
}

.tp-card-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}

.tp-card-text {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tp-card-meta {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--placeholder);
  margin: 0;
}

/* Shared hero text styles */
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}
.hero-heading--dark { color: var(--navy); }

.hero-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.hero-sub--dark { color: var(--muted); }

.hero-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-top: var(--sp-2);
}

/* White outline button */
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 0.5px solid rgba(255,255,255,0.55);
  border-radius: var(--radius-sm);
  background: none;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }

/* =============================================
   BENEFITS BAR
   ============================================= */
.benefits-bar {
  background: var(--bg);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.benefits-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 1200px;
  margin: 0 auto;
}
.benefits-inner::-webkit-scrollbar { display: none; }

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-6);
  flex: 0 0 auto;
  white-space: nowrap;
}
@media (min-width: 600px) {
  .benefit-item {
    flex: 1;
    border-right: 0.5px solid var(--border);
    justify-content: center;
  }
  .benefit-item:last-child { border-right: none; }
}

.benefit-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--navy); }
.benefit-text { display: flex; flex-direction: column; gap: 1px; }
.benefit-title { font-family: var(--font-sans); font-size: 12px; font-weight: 600; color: var(--navy); }
.benefit-sub   { font-family: var(--font-sans); font-size: 11px; color: var(--muted); }

/* =============================================
   SECTION EYEBROW + SUB
   ============================================= */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--sp-1);
}
.section-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted);
  margin: var(--sp-1) 0 0;
}
.section-sub--light { color: rgba(255,255,255,0.5); }

/* =============================================
   CATEGORY TILE — icon placeholder inside
   ============================================= */
.cat-tile-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-tile-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(19,36,64,0.08);
  position: absolute;
}

/* =============================================
   PRODUCT CARD — v2 (adds wishlist + ATC button)
   ============================================= */

.product-card-atc {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px var(--sp-4);
  cursor: pointer;
  margin-top: var(--sp-2);
  transition: opacity 0.15s;
}
.product-card-atc:hover { opacity: 0.85; }
.product-card-atc.atc-confirmed { background: #fff; border-color: var(--navy); color: var(--navy); display: flex; align-items: center; justify-content: center; pointer-events: none; }
.product-card-atc.atc-confirmed:hover { opacity: 1; }

/* =============================================
   TRUSTPILOT SECTION HEADER
   ============================================= */
.tp-header-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.tp-header-wordmark {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.tp-header-rating {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.tp-header-stars { color: #00b67a; font-size: 14px; letter-spacing: 1px; }
.tp-header-score { font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--navy); }
.tp-header-count { font-family: var(--font-sans); font-size: 12px; color: var(--muted); }

/* =============================================
   HERO — centered content, no arrows
   ============================================= */
.hero-slide-inner {
  justify-content: center;
  gap: 0;
}
.hero-text {
  text-align: center;
  align-items: center;
  max-width: 600px;
}
.hero-actions {
  justify-content: center;
}
.hero-visual { display: none !important; }
.hero-arrow  { display: none !important; }

/* Dots centered */
.hero-dots {
  left: 50%;
  transform: translateX(-50%);
}
.hero-dot { background: rgba(19,36,64,0.2); }
.hero-dot.active { background: var(--navy); }

/* =============================================
   HERO — crossfade (replaces slide/transform)
   ============================================= */
.hero-slider {
  /* needs a fixed height so stacked absolute slides have a container */
  height: 480px;
}
@media (min-width: 768px) { .hero-slider { height: 540px; } }

.hero-track {
  position: relative;
  width: 100%;
  height: 100%;
  transition: none;
  transform: none !important;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  min-height: 0;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* More breathing room on mobile */
.hero-slide-inner {
  padding: var(--sp-12) var(--sp-8);
}
@media (min-width: 768px) {
  .hero-slide-inner { padding: var(--sp-16) var(--sp-8); }
}

/* =============================================
   ALL CARDS — 3px radius (var(--radius-sm))
   ============================================= */
.cat-tile-img        { border-radius: var(--radius-sm); }
.product-card-media  { border-radius: var(--radius-sm); }
.ig-tile             { border-radius: var(--radius-sm); }
.tp-card             { border-radius: var(--radius-sm); }

/* =============================================
   INSTAGRAM SECTION — redesigned
   ============================================= */
.ig-section { background: var(--bg); }

.ig-section-header {
  align-items: center;
}

.ig-header-left {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.ig-icon {
  width: 36px;
  height: 36px;
  color: var(--navy);
  flex-shrink: 0;
}

.ig-header-right {
  display: flex;
  gap: var(--sp-2);
}

.ig-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0.5px solid var(--border);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background 0.15s;
}
.ig-arrow svg { width: 18px; height: 18px; }
.ig-arrow:hover { background: var(--border); }

.ig-track {
  scroll-behavior: smooth;
}

.ig-tile {
  flex: 0 0 clamp(200px, 28vw, 320px);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  scroll-snap-align: start;
}
.ig-tile:nth-child(1) { background: #cdc0b0; }
.ig-tile:nth-child(2) { background: #c5b9a8; }
.ig-tile:nth-child(3) { background: #d5c9bc; }
.ig-tile:nth-child(4) { background: #bfb2a2; }
.ig-tile:nth-child(5) { background: #c9bdb0; }
.ig-tile:nth-child(6) { background: #d0c4b5; }

.ig-progress-wrap {
  margin: var(--sp-4) var(--sp-4) 0;
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ig-progress-wrap { margin: var(--sp-4) var(--sp-8) 0; max-width: calc(1200px - var(--sp-16)); margin-left: auto; margin-right: auto; }
}

.ig-progress-bar {
  height: 100%;
  background: var(--navy);
  border-radius: 1px;
  width: 0%;
  transition: width 0.1s linear;
}

/* Instagram tiles — 4:5 ratio */
.ig-tile { aspect-ratio: 4 / 5; }

/* Instagram arrows — 3px radius, no pill */
.ig-arrow { border-radius: var(--radius-sm); }

/* Instagram tiles — 4 full + 5th peek on desktop */
@media (min-width: 768px) {
  .ig-tile { flex: 0 0 250px; }
  .ig-tile-wrap { flex: 0 0 250px; }
}

@media (min-width: 768px) {
  .ig-tile { flex: 0 0 300px; }
  .ig-tile-wrap { flex: 0 0 300px; }
}

@media (min-width: 768px) {
  .ig-tile { flex: 0 0 270px; }
  .ig-tile-wrap { flex: 0 0 270px; }
}

/* =============================================
   PRODUCT CARD — v3 (matches screenshot exactly)
   ============================================= */
.product-card {
  flex: 0 0 clamp(200px, 62vw, 260px);
  background: var(--bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .product-card { flex: 0 0 260px; }
}

/* Image area — cream bg with padding, inner placeholder lighter */
.product-card-media {
  background: var(--cream);
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.product-card-img-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Stars row — stars left, heart right */
.product-card-stars-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Wishlist heart — no background, sits inline next to stars */
.product-card-wishlist {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--navy);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.15s;
}
.product-card-wishlist:hover { opacity: 1; }
.product-card-wishlist.saved { opacity: 1; }

/* Card body */
.product-card-body {
  padding: var(--sp-2) var(--sp-4) var(--sp-2);
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

/* Badge — outlined, not filled */
.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
  margin-bottom: 3px;
}
.product-badge {
  display: inline-block;
  border: 0.5px solid rgba(19,36,64,0.4);
  color: var(--navy);
  background: none;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px var(--sp-2);
  border-radius: var(--radius-sm);
}

/* Name */
.product-card-name {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price */
.product-card-price {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

/* Stars with fill state */
.product-card-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
}
.star-full  { color: var(--navy); }
.star-empty { color: var(--border); }
.star-count { font-family: var(--font-sans); font-size: 12px; color: var(--muted); margin-left: 4px; }

/* ATC button — full width, flush at bottom, no extra radius */
.product-card-atc {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px var(--sp-4);
  cursor: pointer;
  margin-top: 0;
  transition: opacity 0.15s;
  flex-shrink: 0;
}
.product-card-atc:hover { opacity: 0.87; }

/* ─── Product card fixes ─────────────────────────── */

/* More breathing room between cards */
#bestsellerTrack,
#favoritesTrack { gap: var(--sp-4); }

/* Fix badge: old CSS had position:absolute — reset it */
.product-card-body .product-badge {
  position: static;
}

/* Media area bottom padding so image isn't clipped */
.product-card-media {
  padding: var(--sp-4);
  overflow: visible;
}

/* On-image badge — white bg, navy text, absolute top-left of media */
.product-badge-img {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  background: #fff;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px var(--sp-2);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  max-width: calc(100% - var(--sp-6));
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Product cards — 10% smaller + gap between cards only */
.product-card {
  flex: 0 0 clamp(175px, 56vw, 235px);
}
@media (min-width: 768px) {
  .product-card { flex: 0 0 235px; }
}
#bestsellerTrack,
#favoritesTrack { gap: var(--sp-6); }

/* Wishlist heart — SVG, matches header icon */
.product-card-wishlist.saved svg { fill: var(--navy); }

/* =============================================
   CATEGORY TILES — redesigned to match screenshot
   ============================================= */
.cat-tile {
  background: var(--bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 0.5px solid var(--border);
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  text-decoration: none;
  flex: 0 0 clamp(160px, 62vw, 200px);
}
@media (min-width: 768px) {
  .cat-tile { flex: 1; min-width: 0; }
}

.cat-tile-img {
  background: var(--cream);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cat-tile:hover .cat-tile-img { opacity: 1; }

.cat-tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: none;
  border: 1.5px solid rgba(19,36,64,0.2);
  position: static;
}

.cat-label {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--navy);
  text-align: left;
  padding: var(--sp-4);
  display: block;
  line-height: 1.3;
}

.section-title { font-size: 20px; }
.cat-label { font-size: 14px; }

/* =============================================
   MOBILE — consistent 20px side inset ("boxed")
   ============================================= */
@media (max-width: 767px) {
  .section-header      { padding-left: 20px; padding-right: 20px; }
  .carousel-track      { padding-left: 20px; }
  .cat-track           { padding-left: 20px; }
  .ig-progress-wrap    { margin-left: 20px; margin-right: 20px; }
  .hero-slide-inner    { padding-left: 28px; padding-right: 28px; }
  .hero-dots           { left: 20px; }
  .tp-card             { flex: 0 0 80vw; }
}

/* =============================================
   MOBILE INSET — 20px boxed layout (v2)
   ============================================= */
@media (max-width: 767px) {
  /* Section headers */
  .section-header {
    padding-left:  20px !important;
    padding-right: 20px !important;
  }

  /* All carousel tracks — first item starts 20px in, last item has matching right space */
  .carousel-track {
    padding-left:  20px !important;
    padding-right: 20px !important;
  }

  /* Hero content */
  .hero-slide-inner {
    padding-left:  20px !important;
    padding-right: 20px !important;
  }

  /* Hero dots — stay centered */
  .hero-dots {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  /* Instagram progress bar */
  .ig-progress-wrap {
    margin-left:  20px !important;
    margin-right: 20px !important;
  }

  /* Trustpilot cards */
  .tp-card { flex: 0 0 80vw; }
}

@media (max-width: 767px) {
  .home-sections { padding: 0 16px; }
}

/* =============================================
   IG TILE HOVER OVERLAY
   ============================================= */
.ig-tile { position: relative; overflow: hidden; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ig-tile-atc {
  position: absolute;
  bottom: var(--sp-3);
  right: var(--sp-3);
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.ig-tile-atc--confirmed {
  background: #fff !important;
  border: 0.5px solid var(--border) !important;
  color: var(--navy) !important;
}
.ig-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19,36,64,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.ig-tile:hover .ig-tile-overlay { opacity: 1; }
.ig-tile-cta {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* =============================================
   HAIR TYPE TILES
   ============================================= */
.hair-type-tile {
  flex: 0 0 clamp(160px, 62vw, 200px);
  scroll-snap-align: start;
  background: var(--bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  text-decoration: none;
}
@media (min-width: 768px) {
  .hair-type-tile { flex: 1; min-width: 0; }
}
.hair-type-tile-img {
  background: var(--cream);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  width: 100%;
  overflow: hidden;
  position: relative;
}
.hair-type-tile-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =============================================
   HAIR QUIZ BOX
   ============================================= */
.hair-quiz-section { padding-top: 0; }

.hair-quiz-box {
  width: 100%;
  background: var(--cream);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 40px 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.hair-quiz-content {
  flex: 0 0 65%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hair-quiz-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin: 0;
  opacity: 0.55;
}
.hair-quiz-heading {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  margin: 0;
  line-height: 1.25;
}
.hair-quiz-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.hair-quiz-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.hair-quiz-btn {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  white-space: nowrap;
}
.hair-quiz-btn:hover { opacity: 0.85; }

@media (max-width: 767px) {
  .hair-quiz-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 20px;
  }
  .hair-quiz-content { flex: 1; }
  .hair-quiz-heading { font-size: 20px; }
  .hair-quiz-cta { width: 100%; }
  .hair-quiz-btn { width: 100%; white-space: normal; }
}

/* Price + stars always at bottom of card body */
.product-card-body { flex-grow: 1; }
.product-card-price { margin-top: auto; }

@media (min-width: 768px) {
  .hair-type-track { overflow-x: visible; flex-wrap: nowrap; gap: var(--sp-4); }
}

@media (min-width: 768px) {
  .hair-quiz-section {
    padding-left: 32px;
    padding-right: 32px;
  }
  .hair-quiz-section .hair-quiz-box {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

#highestRatedTrack { gap: var(--sp-6); }

.product-card-price-wrap { display: flex; align-items: baseline; gap: 6px; }
.product-card-price--original {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: line-through;
}
.product-card-price--sale { color: var(--navy); }

/* =============================================
   QUIZ PAGE
   ============================================= */
.page-quiz { display: none; }
.page-quiz.active { display: flex; flex-direction: column; min-height: 100vh; }
body.quiz-active #global-footer { display: none; }

/* QUIZ SCREENS */
.quiz-screen {
  display: none;
  animation: none;
}
.quiz-screen.active {
  display: block;
}
.quiz-screen.slide-in-right {
  animation: slideInRight 300ms ease forwards;
}
.quiz-screen.slide-in-left {
  animation: slideInLeft 300ms ease forwards;
}
.quiz-screen.slide-out-left {
  animation: slideOutLeft 300ms ease forwards;
}
.quiz-screen.slide-out-right {
  animation: slideOutRight 300ms ease forwards;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
@keyframes slideInLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}
@keyframes slideOutLeft {
  from { transform: translateX(0);    opacity: 1; }
  to   { transform: translateX(-100%); opacity: 0; }
}
@keyframes slideOutRight {
  from { transform: translateX(0);   opacity: 1; }
  to   { transform: translateX(100%); opacity: 0; }
}

/* QUIZ INTRO */
.intro-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 56px);
}
.intro-image {
  background: #d4c9bc;
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.intro-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(222,207,191,0.04) 40px,
      rgba(222,207,191,0.04) 41px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(222,207,191,0.04) 40px,
      rgba(222,207,191,0.04) 41px
    );
}
.intro-image-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 32px;
}
.intro-image-ornament {
  width: 80px;
  height: 1px;
  background: rgba(19,36,64,0.2);
}
.intro-image-text {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}
.intro-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 48px;
  background: var(--bg);
}
.intro-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  font-variant: small-caps;
}
.intro-h1 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: normal;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 24px;
}
.intro-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 380px;
}

/* QUIZ BUTTONS */
.btn-back {
  background: none;
  border: none;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
  padding: 8px 0;
  display: inline-block;
  text-underline-offset: 3px;
}
.btn-back:hover { opacity: 0.7; }
.btn-cream {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.15s;
}
.btn-cream:hover { opacity: 0.88; }
.btn-plus {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: none;
  box-shadow: none;
  background: var(--navy);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn-plus:hover { opacity: 0.88; }

/* QUIZ PROGRESS */
.progress-bar-wrap {
  height: 3px;
  background: var(--border);
  width: 100%;
}
.progress-bar-fill {
  height: 100%;
  background: var(--navy);
  transition: width 400ms ease;
}
.progress-label {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  padding: 12px 0 0;
  letter-spacing: 0.04em;
}

/* QUESTION SCREEN */
.question-screen {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 32px;
}
.question-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}
.question-sub {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}

/* ICON CARDS */
.icon-cards {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}
.icon-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.icon-cards.cols-4 { grid-template-columns: repeat(4, 1fr); }
.icon-card {
  background: #ffffff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 8px;
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s;
  user-select: none;
}
.icon-card:hover {
  border-color: var(--navy);
  border-width: 1px;
}
.icon-card.selected {
  border-color: var(--navy);
  border-width: 1.5px;
  background: rgba(222,207,191,0.15);
}
.icon-card svg {
  display: block;
  width: 40px;
  height: 40px;
}
.icon-card-label {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}

/* TEXT CARDS */
.text-cards {
  display: grid;
  gap: 8px;
  margin-bottom: 32px;
}
.text-cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.text-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.text-cards.cols-4 { grid-template-columns: repeat(4, 1fr); }
.text-card {
  background: #ffffff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  cursor: pointer;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.3;
  transition: border-color 0.12s, background 0.12s, color 0.12s;
  user-select: none;
}
.text-card:hover {
  border-color: var(--navy);
  border-width: 1px;
}
.text-card.selected {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  border-width: 1px;
}

/* INFO BOX */
.info-box {
  background: var(--bg);
  border-left: 2px solid var(--navy);
  padding: 14px 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  border-radius: 0 4px 4px 0;
  margin-bottom: 32px;
}

/* QUIZ NAV */
.question-nav {
  text-align: center;
}

/* RESULT SCREEN */
.result-screen {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 32px;
}
.result-hero {
  text-align: center;
  margin-bottom: 48px;
}
.result-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.result-h1 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: normal;
  color: var(--navy);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.result-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}
.profile-tag {
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

/* QUIZ PRODUCT SECTION */
.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 0.5px solid var(--border);
}
.quiz-product-cards {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 12px;
  margin-bottom: 48px;
}
.quiz-product-card {
  background: #ffffff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  display: grid;
  grid-template-columns: 33% 1fr;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.quiz-product-image-placeholder {
  background: var(--cream);
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}
.quiz-product-image-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.35;
}
.quiz-product-info {
  padding: 16px 16px 56px;
  min-width: 0;
}
.quiz-product-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: normal;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}
.quiz-product-benefit {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.4;
}
.quiz-product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}
.quiz-product-stars {
  display: flex;
  gap: 1px;
}
.quiz-product-stars svg {
  width: 11px;
  height: 11px;
}
.quiz-product-review-count {
  font-size: 11px;
  color: var(--muted);
}
.quiz-product-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.quiz-product-action {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

/* RESULT NAV */
.result-nav {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* QUIZ FOOTER */
.page-quiz .site-footer {
  background: var(--cream);
  padding: 24px;
  text-align: center;
  margin-top: auto;
}
.page-quiz .site-footer p {
  font-size: 12px;
  color: var(--navy);
  margin: 0;
}

/* QUIZ MOBILE */
@media (max-width: 600px) {
  .intro-hero {
    grid-template-columns: 1fr;
  }
  .intro-image { min-height: 220px; }
  .intro-content {
    padding: 40px 24px 48px;
  }
  .intro-h1 { font-size: 28px; }

  .question-text { font-size: 18px; }
  .question-screen { padding: 32px 16px 64px; }

  .icon-cards.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .text-cards.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .text-cards.cols-3 { grid-template-columns: repeat(2, 1fr); }

  .quiz-product-card {
    grid-template-columns: 33% 1fr;
    grid-template-rows: auto auto;
  }
  .quiz-product-image-placeholder {
    grid-row: 1 / 3;
    min-height: 120px;
  }
  .quiz-product-action {
    grid-column: 2;
    padding-top: 0;
  }

  .btn-cream { width: 100%; text-align: center; }
  .result-h1 { font-size: 24px; }
  .result-screen { padding: 32px 16px 32px; }
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.page-contact {
  background: var(--bg);
  min-height: 100vh;
}

/* Hero */
.contact-hero {
  background: var(--cream);
  padding: var(--sp-12) var(--sp-6) var(--sp-16);
}
.contact-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.contact-breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb-sep { opacity: 0.6; }
.breadcrumb-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.breadcrumb-link:hover { color: var(--navy); }
.contact-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 400;
  color: var(--navy);
  margin: 0;
  line-height: 1.15;
}

/* Body */
.contact-body {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-6) var(--sp-16);
}
.contact-intro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}
.contact-email-link {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Channel cards */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
}
.contact-card {
  box-shadow: inset 0 0 0 0.5px var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-2);
}
.contact-card-icon {
  color: var(--muted);
  margin-bottom: var(--sp-2);
}
.contact-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.contact-card-sub {
  font-size: 13px;
  color: var(--muted);
}
.contact-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-top: var(--sp-3);
  font-family: inherit;
}
.contact-card-link:hover { opacity: 0.7; }

/* Form */
.contact-form-heading {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 var(--sp-8);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.contact-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.contact-input {
  height: 48px;
  padding: 0 var(--sp-4);
  border: none;
  box-shadow: inset 0 0 0 0.5px var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--navy);
  outline: none;
  transition: box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.contact-input::placeholder { color: var(--placeholder); }
.contact-input:focus { box-shadow: inset 0 0 0 1.5px var(--navy); }
.contact-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23686868' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.contact-select option[value=""][disabled] { color: var(--placeholder); }
.contact-textarea {
  height: 160px;
  padding: var(--sp-4);
  resize: vertical;
}
.contact-submit {
  height: 52px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.15s;
  margin-top: var(--sp-4);
}
.contact-submit:hover { opacity: 0.85; }

/* Contact mobile */
@media (max-width: 767px) {
  .contact-hero { padding: var(--sp-8) var(--sp-4) var(--sp-12); }
  .contact-body { padding: var(--sp-8) var(--sp-4) var(--sp-16); }
  .contact-cards { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
  .contact-card { padding: var(--sp-6) var(--sp-4); }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-form-heading { font-size: 22px; margin-bottom: var(--sp-6); }
}


/* =============================================
   SHOP / ARCHIVE PAGE
   ============================================= */
.page-shop { display: none; background: var(--bg); min-height: 100vh; }
.page-shop.active { display: block; }

/* Hero */
.shop-hero {
  padding: var(--sp-12) var(--sp-6) var(--sp-16);
}
.shop-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.shop-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 400;
  color: var(--navy);
  margin: var(--sp-6) 0 0;
  line-height: 1.1;
}

/* Shared inner width */
.shop-body-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

/* Top description */
.shop-desc-wrap {
  padding: var(--sp-8) 0 var(--sp-6);
  border-bottom: 0.5px solid var(--border);
}
.shop-desc-text {
  position: relative;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-height: 4em;
  overflow: hidden;
  margin-bottom: var(--sp-4);
  transition: max-height 0.25s ease;
}
.shop-desc-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3.5em;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 85%);
  pointer-events: none;
}
.shop-desc-text p { margin: 0 0 1em; }
.shop-desc-text p:last-child { margin-bottom: 0; }
.shop-desc-text.shop-desc-expanded {
  max-height: 20em;
  overflow: visible;
}
.shop-desc-text.shop-desc-expanded::after {
  display: none;
}
.shop-desc-toggle {
  display: block;
  margin: 0 auto;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-align: center;
  width: 100%;
}
.shop-desc-toggle:hover { opacity: 0.7; }

/* Controls bar */
.shop-controls-wrap {
  padding: var(--sp-6) 0;
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 10;
}
.shop-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.shop-filter-pill {
  height: 36px;
  padding: 0 var(--sp-4);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.shop-filter-pill:hover { border-color: var(--navy); }
.shop-filter-pill.shop-filter-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.shop-sort {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}
.shop-sort-label {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
.shop-sort-select {
  height: 36px;
  padding: 0 var(--sp-4);
  border: none;
  box-shadow: inset 0 0 0 0.5px var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--navy);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23686868' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

/* Product grid */
.shop-grid-wrap {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.shop-back-top {
  display: block;
  width: fit-content;
  margin: var(--sp-12) auto 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}
.shop-back-top:hover { opacity: 0.7; }

/* SEO section */
.shop-seo-wrap {
  padding: var(--sp-12) 0 var(--sp-16);
  border-top: 0.5px solid var(--border);
}
.shop-seo-heading {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 var(--sp-6);
}

/* Shop mobile */
@media (max-width: 767px) {
  .shop-hero { padding: var(--sp-8) var(--sp-4) var(--sp-12); }
  .shop-body-inner { padding: 0 var(--sp-4); }
  .shop-hero-title { margin-top: var(--sp-4); }
  .shop-controls { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .shop-filters { gap: var(--sp-2); padding-bottom: var(--sp-1); overflow-x: auto; flex-wrap: nowrap; width: 100%; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; }
  .shop-filter-pill { flex-shrink: 0; }
  .shop-grid-wrap { padding-top: var(--sp-6); padding-bottom: var(--sp-6); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
  .shop-back-top { margin-top: var(--sp-8); }
  .shop-seo-wrap { padding: var(--sp-8) 0 var(--sp-12); }
}

/* =============================================
   HOME — LATEST BLOG POSTS
   ============================================= */

.home-blog-section { background: var(--bg); }
.home-blog-track { overscroll-behavior-x: contain; }
.home-blog-card {
  flex-shrink: 0;
  width: 320px;
  scroll-snap-align: start;
  background: #fff;
  box-shadow: inset 0 0 0 0.5px var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s;
  cursor: pointer;
}
.home-blog-card:hover { box-shadow: inset 0 0 0 1px rgba(19,36,64,0.2); }
.home-blog-img {
  width: 100%;
  height: 200px;
  background: var(--cream);
  flex-shrink: 0;
  overflow: hidden;
}
.home-blog-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-blog-body {
  padding: var(--sp-4) var(--sp-4) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}
.home-blog-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .home-blog-card { width: 260px; }
  .home-blog-img { height: 160px; }
}

/* =============================================
   BLOG ARCHIVE PAGE
   ============================================= */

.page-blog { display: none; background: var(--bg); min-height: 100vh; }
.page-blog.active { display: block; }

/* Hero */
.blog-page-hero {
  background: var(--bg);
  padding: var(--sp-12) var(--sp-8) var(--sp-8);
}
.blog-page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.blog-page-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  color: var(--navy);
  margin: var(--sp-4) 0 var(--sp-2);
  line-height: 1.1;
}
.blog-page-lead {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Layout */
.blog-layout-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-8) var(--sp-16);
}
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-12);
  align-items: start;
}

/* ---- Featured post ---- */
.blog-featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  background: #fff;
  box-shadow: inset 0 0 0 0.5px var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--sp-12);
}
.blog-featured-media { min-height: 320px; }
.blog-featured-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: var(--cream);
  overflow: hidden;
  border-radius: var(--radius-md);
}
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-featured-body {
  padding: var(--sp-8) var(--sp-8) var(--sp-8) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  justify-content: center;
}
.blog-cat-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: none;
  border: 0.5px solid rgba(19,36,64,0.4);
  padding: 4px var(--sp-3);
  border-radius: var(--radius-sm);
  align-self: flex-start;
}
.blog-featured-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin: 0;
}
.blog-featured-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 13px;
  color: var(--muted);
}
.blog-meta-sep { opacity: 0.5; }
.blog-read-btn {
  display: inline-block;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(19,36,64,0.4);
  margin-top: var(--sp-2);
}
.blog-read-btn:hover { text-decoration-color: var(--navy); }

/* ---- Post grid ---- */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
}
.blog-filter-pill {
  height: 36px;
  padding: 0 var(--sp-4);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.blog-filter-pill:hover { border-color: var(--navy); }
.blog-filter-pill.blog-filter-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-12);
}
.blog-card {
  background: #fff;
  box-shadow: inset 0 0 0 0.5px var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card-media { flex-shrink: 0; }
.blog-card-img {
  width: 100%;
  height: 160px;
  background: var(--cream);
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body {
  padding: var(--sp-4) var(--sp-4) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}
.blog-card-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(19,36,64,0.4);
  margin-top: auto;
  display: inline-block;
}
.blog-card-link:hover { text-decoration-color: var(--navy); }

/* ---- Pagination ---- */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-8);
  border-top: 0.5px solid var(--border);
}
.blog-page-btn {
  background: none;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-2) var(--sp-4);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.15s;
}
.blog-page-btn:hover:not(:disabled) { border-color: var(--navy); }
.blog-page-btn:disabled { opacity: 0.35; cursor: default; }
.blog-page-numbers { display: flex; gap: var(--sp-2); }
.blog-page-num {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 0.5px solid var(--border);
  background: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.blog-page-num:hover { border-color: var(--navy); }
.blog-page-num.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---- Sidebar ---- */
.blog-sidebar { display: flex; flex-direction: column; gap: var(--sp-8); }
.blog-sidebar-section {
  background: #fff;
  box-shadow: inset 0 0 0 0.5px var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-6);
}
.blog-sidebar-heading {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 var(--sp-4);
}

/* Popular posts */
.blog-popular-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--sp-4); }
.blog-popular-item { display: flex; gap: var(--sp-3); align-items: flex-start; }
.blog-popular-thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--cream);
  overflow: hidden;
}
.blog-popular-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-popular-body { display: flex; flex-direction: column; gap: var(--sp-1); min-width: 0; }
.blog-popular-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.blog-popular-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-popular-date { font-size: 12px; color: var(--muted); }

/* Search */
.blog-search-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  box-shadow: inset 0 0 0 0.5px var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.blog-search-input {
  flex: 1;
  border: none;
  background: none;
  padding: var(--sp-3) var(--sp-4);
  font-size: 14px;
  color: var(--navy);
  outline: none;
  font-family: var(--font-sans);
}
.blog-search-input::placeholder { color: var(--placeholder); }
.blog-search-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  border-left: 0.5px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s;
}
.blog-search-btn:hover { color: var(--navy); }

/* Quiz CTA */
.blog-sidebar-quiz {
  background: var(--cream);
  box-shadow: inset 0 0 0 0.5px var(--border);
  border-radius: var(--radius-sm);
}
.blog-sidebar-quiz-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.55;
  margin: 0 0 var(--sp-2);
}
.blog-sidebar-quiz-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 var(--sp-3);
}
.blog-sidebar-quiz-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 var(--sp-6);
}
.blog-sidebar-quiz-btn {
  display: block;
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.15s;
}
.blog-sidebar-quiz-btn:hover { opacity: 0.85; }

/* Newsletter */
.blog-sidebar-nl-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 var(--sp-2);
}
.blog-sidebar-nl-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 var(--sp-4);
}
.blog-sidebar-nl-form { display: flex; flex-direction: column; gap: var(--sp-3); }
.blog-sidebar-nl-input {
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-3) var(--sp-4);
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s;
}
.blog-sidebar-nl-input::placeholder { color: var(--placeholder); }
.blog-sidebar-nl-input:focus { border-color: var(--navy); }
.blog-sidebar-nl-btn {
  display: block;
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.15s;
}
.blog-sidebar-nl-btn:hover { opacity: 0.85; }

/* ---- Responsive ---- */
@media (max-width: 1023px) {
  .blog-layout { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .blog-page-hero { padding: var(--sp-8) var(--sp-4) var(--sp-6); }
  .blog-layout-wrap { padding: var(--sp-8) var(--sp-4) var(--sp-12); }
  .blog-layout { gap: var(--sp-8); }
  .blog-featured-post { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 220px; }
  .blog-featured-body { padding: var(--sp-6) var(--sp-4); }
  .blog-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .blog-card-img { height: 180px; }
  .blog-sidebar { gap: var(--sp-6); }
}

/* =============================================
   BLOG SINGLE POST PAGE
   ============================================= */

.page-blog-post { display: none; background: var(--bg); min-height: 100vh; }
.page-blog-post.active { display: block; }

/* Header */
.bsp-header {
  background: var(--bg);
  border-bottom: 0.5px solid var(--border);
  padding: var(--sp-12) var(--sp-8) var(--sp-8);
}
.bsp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.bsp-meta-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.bsp-meta-date, .bsp-meta-read { font-size: 13px; color: var(--muted); }
.bsp-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin: 0;
  max-width: 720px;
}
.bsp-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  max-width: 640px;
}
.bsp-author-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}
.bsp-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  flex-shrink: 0;
  overflow: hidden;
}
.bsp-author-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.bsp-author-role {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

/* Hero image */
.bsp-hero-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-6) var(--sp-8) 0;
}
.bsp-hero-img {
  width: 100%;
  height: clamp(240px, 40vw, 480px);
  background: var(--cream);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

/* Layout */
.bsp-layout-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-8) var(--sp-16);
}
.bsp-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-12);
  align-items: start;
}

/* Sidebar sticky */
.bsp-sidebar {
  position: sticky;
  top: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

/* Article typography */
.bsp-article { max-width: 680px; }
.bsp-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  margin: 0 0 var(--sp-6);
}
.bsp-h2 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--navy);
  margin: var(--sp-12) 0 var(--sp-4);
  line-height: 1.25;
}
.bsp-h2:first-of-type { margin-top: var(--sp-8); }

/* Pull quote */
.bsp-quote {
  margin: var(--sp-8) 0;
  padding: var(--sp-6) var(--sp-8);
  border-left: 3px solid var(--cream);
  background: none;
}
.bsp-quote p {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 22px);
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin: 0;
}

/* Tip box */
.bsp-tip-box {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: var(--sp-6);
  margin: var(--sp-8) 0;
}
.bsp-tip-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 var(--sp-2);
}
.bsp-tip-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--navy);
  margin: 0;
}

/* Author card */
.bsp-author-card {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-6);
  box-shadow: inset 0 0 0 0.5px var(--border);
  border-radius: var(--radius-sm);
  margin: var(--sp-12) 0 var(--sp-6);
  background: #fff;
}
.bsp-author-card-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  flex-shrink: 0;
  overflow: hidden;
}
.bsp-author-card-body { display: flex; flex-direction: column; gap: var(--sp-2); }
.bsp-author-card-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.bsp-author-card-bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* Tags */
.bsp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-12);
}
.bsp-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  border: 0.5px solid rgba(19,36,64,0.35);
  border-radius: var(--radius-sm);
  padding: var(--sp-1) var(--sp-3);
}

/* Product recommendations */
.bsp-products {
  margin: var(--sp-8) 0;
  padding: var(--sp-6);
  background: var(--bg);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 0 0 0.5px var(--border);
}
.bsp-products-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--sp-4);
}
.bsp-products-row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.bsp-product-card {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: inset 0 0 0 0.5px var(--border);
  padding: var(--sp-3) var(--sp-4);
  text-decoration: none;
  transition: box-shadow 0.15s;
}
.bsp-product-card:hover { box-shadow: inset 0 0 0 1px rgba(19,36,64,0.25); }
.bsp-product-img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--cream);
}
.bsp-product-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.bsp-product-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}
.bsp-product-benefit {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
  flex: 1;
}
.bsp-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-2);
}
.bsp-product-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.bsp-product-cta {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(19,36,64,0.4);
}
.bsp-product-card:hover .bsp-product-cta { text-decoration-color: var(--navy); }

/* Related posts carousel */
.bsp-related {
  background: var(--bg);
  border-top: 0.5px solid var(--border);
  padding: var(--sp-12) 0 var(--sp-16);
}
.bsp-related-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
}
.bsp-related-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 var(--sp-8);
}
.bsp-related-track-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  margin: 0 calc(-1 * var(--sp-8));
  padding: 0 var(--sp-8);
}
.bsp-related-track {
  display: flex;
  gap: var(--sp-6);
  width: max-content;
  padding-bottom: var(--sp-4);
}
.bsp-related-card {
  width: 300px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1023px) {
  .bsp-layout { grid-template-columns: 1fr; }
  .bsp-sidebar { position: static; }
}
@media (max-width: 767px) {
  .bsp-header { padding: var(--sp-8) var(--sp-4) var(--sp-6); }
  .bsp-layout-wrap { padding: var(--sp-8) var(--sp-4) var(--sp-12); }
  .bsp-related-inner { padding: 0 var(--sp-4); }
  .bsp-related-track-wrap { margin: 0 calc(-1 * var(--sp-4)); padding: 0 var(--sp-4); }
  .bsp-related-card { width: 240px; }
  .bsp-hero-wrap { padding: var(--sp-4) var(--sp-4) 0; }
  .bsp-product-card { height: 88px; align-items: stretch; }
  .bsp-product-img { height: 100%; width: 64px; }
  .bsp-product-benefit { overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
  .bsp-quote { padding: var(--sp-4) var(--sp-6); }
}

/* =============================================
   PAGE: ÖVRIGT
   ============================================= */
.page-ovrigt { display: none; }
.page-ovrigt.active { display: block; }

/* Editorial hero */
.ed-hero {
  background: var(--cream);
  border-bottom: 0.5px solid var(--border);
  padding: var(--sp-16) var(--sp-6);
  text-align: center;
}
.ed-hero-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.ed-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--sp-1);
}
.ed-heading {
  font-family: var(--font-serif);
  font-size: clamp(30px, 5.5vw, 52px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin: 0;
}
.ed-sub {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Intro two-column */
.ed-intro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--sp-12);
  align-items: start;
}
.ed-section-heading {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 var(--sp-4);
}
.ed-body {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 var(--sp-4);
}
.ed-aside-card {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: var(--sp-6);
}
.ed-aside-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 var(--sp-4);
}
.ed-aside-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.ed-aside-list li {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  padding-left: var(--sp-4);
  position: relative;
}
.ed-aside-list a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 0.5px solid var(--border);
  transition: border-color 0.15s;
}
.ed-aside-list a:hover {
  border-bottom-color: var(--navy);
}
.ed-aside-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 5px; height: 1px;
  background: var(--navy);
  opacity: 0.4;
}
@media (max-width: 767px) {
  .ed-intro { grid-template-columns: 1fr; gap: var(--sp-6); padding: 0 var(--sp-4); }
}

/* Guide steps */
.ed-steps {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-8) var(--sp-12);
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}
.ed-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.ed-step--reverse .ed-step-img { order: 2; }
.ed-step--reverse .ed-step-content { order: 1; }
.ed-step-img {
  background: var(--cream);
  border-radius: var(--radius-sm);
  aspect-ratio: 4 / 5;
}
.ed-step-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.ed-step-num {
  font-family: var(--font-serif);
  font-size: 48px;
  color: rgba(19,36,64,0.08);
  line-height: 1;
}
.ed-step-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: var(--navy);
  margin: 0;
}
.ed-step-body {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.ed-step-tip {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--navy);
  font-style: italic;
  padding: var(--sp-3) var(--sp-4);
  border-left: 2px solid var(--cream);
  margin: 0;
}
.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  background: none;
  border: 0.5px solid var(--navy);
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.15s;
}
.btn-outline-navy:hover { background: rgba(19,36,64,0.06); }
@media (max-width: 767px) {
  .ed-hero { padding: var(--sp-12) var(--sp-6); }
  .ed-steps { padding: var(--sp-12) var(--sp-4) var(--sp-8); gap: var(--sp-12); }
  .ed-step { grid-template-columns: 1fr; gap: var(--sp-6); }
  .ed-step--reverse .ed-step-img { order: 0; }
  .ed-step--reverse .ed-step-content { order: 0; }
}

/* Tip box */
.ed-tipbox {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 0.5px solid var(--border);
  padding: var(--sp-8);
}
@media (max-width: 767px) {
  .ed-tipbox { margin: 0 var(--sp-4); padding: var(--sp-6); }
}
.ed-tipbox-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--sp-1);
}
.ed-tipbox-heading {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 var(--sp-6);
}
.ed-tipbox-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.ed-tipbox-list li {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  padding-left: var(--sp-6);
  position: relative;
}
.ed-tipbox-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 16px; height: 0.5px;
  background: var(--navy);
  opacity: 0.3;
}

/* FAQ */
.ed-faq {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: flex;
  flex-direction: column;
  border-top: 0.5px solid var(--border);
}
@media (max-width: 767px) {
  .ed-faq { padding: 0 var(--sp-4); }
}
.ed-faq-item { border-bottom: 0.5px solid var(--border); }
.ed-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: var(--sp-6) 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
}
.ed-faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.ed-faq-item.open .ed-faq-q::after { transform: rotate(45deg); }
.ed-faq-a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, padding 0.28s ease;
  padding: 0;
}
.ed-faq-item.open .ed-faq-a {
  max-height: 200px;
  padding-bottom: var(--sp-6);
}

/* Reviews */
.ed-reviews {
  padding: var(--sp-16) var(--sp-8);
  border-top: 0.5px solid var(--border);
}
@media (max-width: 767px) {
  .ed-reviews { padding: var(--sp-12) var(--sp-4); }
}
.ed-reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ed-reviews-inner .section-eyebrow {
  margin-bottom: var(--sp-1);
}
.ed-reviews-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 var(--sp-8);
}
.ed-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 767px) {
  .ed-reviews-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
}
.ed-review-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.ed-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ed-review-stars {
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 2px;
}
.ed-review-date {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--muted);
}
.ed-review-text {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.ed-review-author {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted);
}

/* =============================================
   PAGE: FAQ
   ============================================= */
.page-faq { display: none; }
.page-faq.active { display: block; }

/* Hero sub */
.faq-hero-sub {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: var(--sp-3) 0 0;
}

/* Search */
.faq-search-wrap {
  padding: var(--sp-8) var(--sp-6);
  border-bottom: 0.5px solid var(--border);
}
.faq-search-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq-search-box {
  position: relative;
  display: flex;
  align-items: center;
}
.faq-search-icon {
  position: absolute;
  left: var(--sp-4);
  pointer-events: none;
  flex-shrink: 0;
}
.faq-search-input {
  width: 100%;
  padding: 14px var(--sp-12) 14px 44px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--navy);
  outline: none;
  transition: border-color 0.15s;
}
.faq-search-input::placeholder { color: var(--placeholder); }
.faq-search-input:focus { border-color: var(--navy); }
.faq-search-clear {
  position: absolute;
  right: var(--sp-4);
  background: none;
  border: none;
  font-size: 18px;
  color: var(--muted);
  cursor: pointer;
  padding: 0 var(--sp-1);
  opacity: 0;
  transition: opacity 0.15s;
  line-height: 1;
}
@media (max-width: 767px) {
  .faq-search-wrap { padding: var(--sp-6) var(--sp-4); }
}

/* No results */
.faq-no-results {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-16) var(--sp-4);
  text-align: center;
}
.faq-no-results p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--muted);
}

/* Body */
.faq-body {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}
@media (max-width: 767px) {
  .faq-body { padding: var(--sp-8) var(--sp-4); gap: var(--sp-8); }
}

/* Category */
.faq-category { display: flex; flex-direction: column; gap: var(--sp-1); }
.faq-cat-header {
  display: flex;
  align-items: baseline;
  gap: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 0.5px solid var(--border);
  margin-bottom: var(--sp-2);
}
.faq-cat-mark {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--navy);
  opacity: 0.25;
  flex-shrink: 0;
  margin-bottom: 3px;
}
.faq-cat-title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 400;
  color: var(--navy);
  margin: 0;
}

/* Items */
.faq-items { display: flex; flex-direction: column; }
.faq-item { border-bottom: 0.5px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: var(--sp-4) 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-6);
  line-height: 1.5;
}
.faq-chevron {
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-bottom 0.3s ease;
  padding-bottom: 0;
}
.faq-a p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: var(--sp-6);
}

/* CTA */
.faq-cta {
  background: var(--cream);
  border-top: 0.5px solid var(--border);
  padding: var(--sp-16) var(--sp-6);
  text-align: center;
}
.faq-cta-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.faq-cta-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--sp-1);
}
.faq-cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 400;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}
.faq-cta-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .faq-cta { padding: var(--sp-12) var(--sp-4); }
}

/* =============================================
   EXTRA MOBILE PADDING — text-heavy pages
   ============================================= */
@media (max-width: 767px) {
  .page-blog-post {
    padding-left: 12px;
    padding-right: 12px;
  }
  .page-ovrigt,
  .page-faq {
    padding: 22px 12px;
  }

  .page-ovrigt #ed-produkter {
    margin-left: 10px;
    margin-right: -12px;
  }

  /* Pull related articles track back to edges on blog post */
  .page-blog-post .bsp-related-track-wrap {
    margin-left: calc(-12px - var(--sp-4));
    margin-right: calc(-12px - var(--sp-4));
  }
}

/* ===========================================
   PDP + BUNDLE PAGES
   =========================================== */

.page-pdp,
.page-bundle {
  display: none;
  background: var(--bg);
  min-height: 100vh;
  padding-bottom: var(--sp-16);
}
.page-pdp.active,
.page-bundle.active {
  display: block;
}

/* Breadcrumb row */
.pdp-bc-wrap { background: var(--bg); }
.pdp-bc-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-4) var(--sp-8);
}

/* ---------- Hero ---------- */
.pdp-hero { padding: var(--sp-6) 0 var(--sp-12); }
.pdp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

/* ---------- Gallery ---------- */
.pdp-gallery { position: sticky; top: 88px; align-self: start; }

.pdp-gal-mobile { display: none; position: relative; }
.pdp-gal-track {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: var(--sp-2);
  padding-right: 40px;
}
.pdp-gal-track::-webkit-scrollbar { display: none; }
.pdp-gal-slide {
  flex: 0 0 calc(100% - 32px);
  scroll-snap-align: start;
  aspect-ratio: 4/5;
  background: var(--border);
  border-radius: var(--radius-sm);
  border: 0.5px solid var(--border);
  overflow: hidden;
  position: relative;
}
.pdp-gal-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-gal-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--sp-4);
}
.pdp-gal-overlay .pdp-gal-wishlist { pointer-events: all; }
.pdp-gal-badges { display: flex; flex-direction: column; gap: var(--sp-2); }

.pdp-gal-desktop { display: block; }

/* Desktop gallery: landscape hero + 2×2 square thumbnails */
.pdp-gal-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}
.pdp-gal-stack-img {
  aspect-ratio: 1/1;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}
.pdp-gal-stack-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* First image spans both columns, landscape ratio */
.pdp-gal-stack-img--first {
  grid-column: 1 / -1;
  aspect-ratio: 3/2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: var(--sp-4);
}

.pdp-gal-wishlist {
  background: white;
  border: 0.5px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  position: relative;
  z-index: 1;
}
.pdp-gal-wishlist.active svg { fill: var(--navy); }

/* ---------- Product info ---------- */
.pdp-info {
  position: sticky;
  top: 88px;
  align-self: start;
}

/* Breadcrumb inside info column (above title) */
.pdp-info-bc {
  margin-bottom: var(--sp-4);
}

.pdp-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: normal;
  margin: 0 0 var(--sp-4);
  line-height: 1.25;
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.pdp-price { font-size: 22px; font-weight: 600; }
.pdp-price-original {
  font-size: 15px;
  color: var(--muted);
  text-decoration: line-through;
}
.pdp-price-save {
  font-size: 12px;
  color: var(--muted);
  border: 0.5px solid var(--border);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.pdp-info-stars { color: var(--navy); font-size: 14px; letter-spacing: 1px; }
.pdp-review-link {
  font-size: 13px;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
  margin-left: var(--sp-1);
}

.pdp-short-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}
.pdp-divider { border: none; border-top: 0.5px solid var(--border); margin: var(--sp-4) 0; }

/* Purchase options */
.pdp-po-wrap { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-6); }
.pdp-po {
  display: block;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: var(--sp-4) var(--sp-4);
  transition: border-color 0.2s;
}
.pdp-po:has(input:checked) {
  border-color: var(--navy);
  border-width: 1.5px;
}
.pdp-po input { display: none; }
.pdp-po-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
}
.pdp-po-title { font-size: 14px; font-weight: 500; color: var(--text); }
.pdp-po-save {
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  margin-left: var(--sp-2);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.pdp-po-price { font-size: 15px; font-weight: 600; white-space: nowrap; color: var(--text); }
.pdp-po-sub-meta {
  font-size: 13px;
  color: var(--muted);
  margin: var(--sp-3) 0 0;
  display: none;
  line-height: 1.8;
}
.pdp-po:has(input:checked) .pdp-po-sub-meta { display: block; }

/* Frequency selector — pops with underline treatment, no white fill */
.pdp-freq-select {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--navy);
  border-radius: 0;
  padding: 0 2px 1px;
  cursor: pointer;
  margin: 0 1px;
  -webkit-appearance: auto;
  appearance: auto;
}

/* Qty + ATC */
.pdp-atc-row {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-6);
  align-items: center;
}
.pdp-qty {
  display: flex;
  align-items: center;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.pdp-qty-btn {
  width: 40px;
  height: 48px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--navy);
}
.pdp-qty-val { width: 36px; text-align: center; font-size: 15px; }
.pdp-atc-btn { flex: 1; height: 48px; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.pdp-atc-wish-btn {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: none;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  transition: border-color 0.2s;
}
.pdp-atc-wish-btn:hover { border-color: var(--navy); }
.pdp-atc-wish-btn.active svg { fill: var(--navy); }

/* Trust row */
.pdp-trust-row {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}
.pdp-trust-item { font-size: 12px; color: var(--muted); }
.pdp-trust-sep {
  width: 1px;
  height: 12px;
  background: var(--border);
  flex-shrink: 0;
}

/* Top review */
.pdp-top-review {
  background: white;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-4) var(--sp-6);
  margin-bottom: var(--sp-6);
}
.pdp-tr-stars { color: var(--navy); font-size: 12px; margin-bottom: var(--sp-2); }
.pdp-tr-text { font-size: 14px; line-height: 1.6; margin: 0 0 var(--sp-2); font-style: italic; color: var(--muted); }
.pdp-tr-author { font-size: 12px; color: var(--muted); }

/* ---------- Accordion ---------- */
.pdp-drivers {
  display: flex;
  justify-content: center;
  gap: var(--sp-6);
  padding: var(--sp-3) 0;
  margin-bottom: var(--sp-2);
}
.pdp-driver {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--muted);
}
.pdp-driver svg { flex-shrink: 0; color: var(--navy); }
.pdp-accordion {
  border-top: 0.5px solid var(--border);
}
.pdp-acc-item {
  border-bottom: 0.5px solid var(--border);
}
.pdp-acc-q {
  width: 100%;
  background: none;
  border: none;
  padding: var(--sp-4) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
}
.pdp-acc-icon {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: var(--muted);
  flex-shrink: 0;
  margin-left: var(--sp-4);
}
.pdp-acc-body {
  display: none;
  padding-bottom: var(--sp-4);
}
.pdp-acc-item--open .pdp-acc-body { display: block; }
.pdp-acc-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 var(--sp-3);
}
.pdp-acc-body ol { padding-left: 20px; margin: 0 0 var(--sp-3); }
.pdp-acc-body li { font-size: 14px; line-height: 1.7; color: var(--muted); margin-bottom: var(--sp-2); }
.pdp-ingr-text { font-size: 13px; line-height: 1.7; }
.pdp-ingr-free { font-size: 13px; color: var(--muted); margin-top: var(--sp-2) !important; }

/* ---------- Bundle hint ---------- */
.pdp-bundle-hint {
  background: white;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  margin-bottom: var(--sp-12);
}
.pdp-bh-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-6) var(--sp-8);
  display: flex;
  gap: var(--sp-6);
  align-items: center;
}
.pdp-bh-imgs { display: flex; gap: var(--sp-2); flex-shrink: 0; }
.pdp-bh-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--border);
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--muted);
}
.pdp-bh-text { flex: 1; }
.pdp-bh-eyebrow { font-family: var(--font-sans); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin: 0 0 var(--sp-1); }
.pdp-bh-title { font-family: var(--font-serif); font-size: 16px; margin: 0 0 var(--sp-1); }
.pdp-bh-sub { font-size: 13px; color: var(--muted); margin: 0; }

/* ---------- Instagram ---------- */
.pdp-ig-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-8) var(--sp-6);
}
.pdp-ig-title-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.pdp-ig-handle { font-size: 12px; color: var(--muted); margin: 0 0 2px; }
.pdp-ig-section-title { font-family: var(--font-serif); font-size: 20px; font-weight: normal; margin: 0; }

/* Instagram carousel */
.pdp-ig-carousel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: flex;
  gap: var(--sp-4);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.pdp-ig-carousel::-webkit-scrollbar { display: none; }
.pdp-ig-item {
  flex: 0 0 220px;
  cursor: pointer;
}
.pdp-ig-img {
  aspect-ratio: 1;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-3);
  position: relative;
}
.pdp-ig-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-2);
}
.pdp-ig-info { flex: 1; min-width: 0; }
.pdp-ig-name { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0 0 2px; }
.pdp-ig-price { font-size: 13px; font-weight: 600; }
.pdp-ig-atc {
  width: 32px;
  height: 32px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  border: none;
  cursor: pointer;
  color: white;
  flex-shrink: 0;
}

/* Also-in-bundle / bundle contents cards */
.pdp-also-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
}
.pdp-also-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin: 0 0 var(--sp-6);
}
.pdp-also-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.pdp-bundle-card {
  background: white;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pdp-bc-img {
  aspect-ratio: 1;
  background: var(--bg);
  border-bottom: 0.5px solid var(--border);
  position: relative;
  overflow: hidden;
}
.pdp-bc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-bc-img-inner {
  width: 50%;
  height: 50%;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
}
.pdp-bc-body {
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}
.pdp-bc-badge {
  position: static;
  font-size: 10px;
  align-self: flex-start;
  display: inline-block;
}
.pdp-bc-name { font-size: 14px; line-height: 1.4; margin: 0; }
.pdp-bc-prices { display: flex; gap: var(--sp-3); align-items: baseline; }
.pdp-bc-sale { font-size: 15px; font-weight: 600; }
.pdp-bc-orig { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.pdp-bc-btn {
  display: block;
  width: 100%;
  padding: var(--sp-3);
  background: none;
  border: 0.5px solid var(--navy);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--navy);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: auto;
}

/* ---------- Reviews section ---------- */
/* Product FAQ */
.pdp-faq-section { padding: var(--sp-12) 0; border-top: 0.5px solid var(--border); }
.pdp-faq-inner { max-width: 1200px; margin: 0 auto; padding: 0 var(--sp-8); }
.pdp-faq-title { font-family: var(--font-serif); font-size: clamp(20px, 2.5vw, 26px); font-weight: normal; margin: var(--sp-2) 0 var(--sp-8); }
.pdp-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6) var(--sp-12);
}
.pdp-faq-item { border-top: 0.5px solid var(--border); padding-top: var(--sp-4); }
.pdp-faq-q { font-size: 14px; font-weight: 600; color: var(--text); margin: 0 0 var(--sp-2); }
.pdp-faq-a { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

.pdp-rev-section { padding: var(--sp-12) 0; }
.pdp-rev-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
}
.pdp-rev-summary {
  display: flex;
  gap: var(--sp-12);
  align-items: flex-start;
  margin-bottom: var(--sp-8);
}
.pdp-rev-score-block { text-align: center; flex-shrink: 0; }
.pdp-rev-big-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: normal;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.pdp-rev-big-stars { color: var(--navy); font-size: 16px; margin-bottom: var(--sp-2); }
.pdp-rev-base-lbl { font-size: 12px; color: var(--muted); }
.pdp-rev-summary-div { width: 0.5px; background: var(--border); align-self: stretch; }
.pdp-rev-bars { flex: 1; display: flex; flex-direction: column; gap: var(--sp-2); }
.pdp-rev-bar-row { display: flex; align-items: center; gap: var(--sp-3); }
.pdp-rev-bar-lbl { font-size: 13px; color: var(--muted); min-width: 80px; }
.pdp-rev-bar-track {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.pdp-rev-bar-fill { height: 100%; background: var(--navy); border-radius: var(--radius-sm); }
.pdp-rev-bar-pct { font-size: 12px; color: var(--muted); min-width: 32px; text-align: right; }
.pdp-rev-sort-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 0.5px solid var(--border);
}
.pdp-rev-range { font-size: 13px; color: var(--muted); }
.pdp-rev-sort {
  font-size: 13px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-2) var(--sp-3);
  background: white;
  color: var(--navy);
  cursor: pointer;
}
.pdp-rev-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); margin-bottom: var(--sp-8); }
.pdp-rev-card {
  background: white;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-6);
}
.pdp-rev-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: var(--sp-3); }
.pdp-rev-card-stars { color: var(--navy); font-size: 12px; }
.pdp-rev-card-date { font-size: 12px; color: var(--muted); }
.pdp-rev-card-text { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 var(--sp-4); }
.pdp-rev-card-author { font-size: 12px; color: var(--muted); }
.pdp-rev-more {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  padding: var(--sp-4);
  background: none;
  border: 0.5px solid var(--navy);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--navy);
  cursor: pointer;
}

/* ---------- Bundle contents ---------- */
.pdp-bc-label { font-family: var(--font-sans); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: var(--sp-3); }
.pdp-bc-list { list-style: none; padding: 0; margin: 0 0 var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-2); }
.pdp-bc-item {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  padding: var(--sp-3);
  background: white;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
}
.pdp-bc-item-img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--border);
  flex-shrink: 0;
}
.pdp-bc-item-info { display: flex; flex: 1; justify-content: space-between; align-items: center; }
.pdp-bc-item-name { font-size: 14px; }
.pdp-bc-item-price { font-size: 13px; color: var(--muted); }

/* ---------- Sticky ATC ---------- */
.pdp-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--bg);
  border-top: 0.5px solid var(--border);
  display: none;
}
.pdp-sticky.visible { display: block; }
#global-footer.sticky-pad { padding-bottom: 80px; }
.pdp-sticky-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-3) var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.pdp-sticky-title { font-family: var(--font-serif); font-size: 15px; }
.pdp-sticky-right { display: flex; align-items: center; gap: var(--sp-4); }
.pdp-sticky-price { font-size: 15px; font-weight: 600; }
.pdp-sticky-qty {
  display: flex;
  align-items: center;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.pdp-sticky-qty button {
  width: 32px;
  height: 36px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--navy);
}
.pdp-sticky-qty span { width: 28px; text-align: center; font-size: 14px; }
.pdp-sticky-atc-btn { height: 36px; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; padding: 0 var(--sp-6); }

/* ---- btn-outline-navy ---- */
.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 var(--sp-6);
  background: none;
  border: 0.5px solid var(--navy);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--navy);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Mobile gallery dot indicator */
.pdp-gal-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: var(--sp-3);
}
.pdp-gal-dot {
  width: 6px;
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  transition: background 0.2s, width 0.2s;
}
.pdp-gal-dot.active {
  background: var(--navy);
  width: 16px;
}

/* ========== MOBILE OVERRIDES ========== */
@media (max-width: 767px) {

  /* ── Hero layout ── */
  .pdp-hero { padding: 0 0 var(--sp-8); }
  .pdp-hero-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    padding: 0;
  }

  /* ── Gallery ── */
  .pdp-gallery { position: static; padding: 0; }
  #pdpIgTrack { margin-left: 20px; }
  #bundleIgTrack { margin-left: 20px; }

  .pdp-info { position: static; }
  .pdp-gal-mobile { display: block; }
  .pdp-gal-desktop { display: none; }

  /* Gallery: constrain track to viewport width, no bleed */
  .pdp-gal-mobile { width: 100%; }
  .pdp-gal-track {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
    gap: var(--sp-3);
  }
  /* Slides: 85% width so next slide peeks at right edge */
  .pdp-gal-slide {
    flex: 0 0 85%;
    aspect-ratio: 3/4;
  }
  .pdp-gal-dots { margin-top: var(--sp-3); }

  /* ── Product info column ── */
  .pdp-info {
    padding: 0 var(--sp-4);
  }
  .pdp-title { font-size: 22px; margin-bottom: var(--sp-3); }
  .pdp-price { font-size: 20px; }

  /* ── Purchase options ── */
  .pdp-po { padding: var(--sp-3) var(--sp-3); }
  .pdp-po-inner { gap: var(--sp-2); }
  .pdp-po-save { font-size: 9px; padding: 2px 4px; }
  .pdp-po-title { font-size: 13px; }
  .pdp-po-price { font-size: 14px; }
  .pdp-freq-select { font-size: 13px; }

  /* ── Qty + ATC ── */
  .pdp-atc-row { flex-wrap: nowrap; }
  .pdp-qty-btn { width: 36px; height: 44px; }
  .pdp-qty-val { width: 32px; font-size: 14px; }
  .pdp-atc-btn { flex: 1; height: 44px; font-size: 13px; }

  /* ── Trust row ── */
  .pdp-trust-row { gap: var(--sp-2); flex-wrap: wrap; }
  .pdp-trust-sep { display: none; }
  .pdp-trust-item { font-size: 11px; }

  /* ── Top review quote ── */
  .pdp-top-review { padding: var(--sp-4); }
  .pdp-tr-text { font-size: 13px; }

  /* ── Accordion ── */
  .pdp-acc-q { font-size: 13px; padding: var(--sp-3) 0; }
  .pdp-acc-body p, .pdp-acc-body li { font-size: 13px; }

  /* ── Also-in-bundle / bundle contents ── */
  .pdp-also-inner { padding: 0 var(--sp-4); }
  .pdp-also-grid, .pdp-also-grid--4 { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }

  /* Card body: tighter padding on narrow mobile cards */
  .pdp-bc-body { padding: var(--sp-3); gap: var(--sp-2); }

  /* Badge: clip if too wide, never wrap mid-word */
  .pdp-bc-badge {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  /* Name: allow wrapping, smaller font */
  .pdp-bc-name { font-size: 12px; line-height: 1.35; word-break: break-word; }

  /* Prices: tighter gap, smaller text */
  .pdp-bc-prices { gap: var(--sp-2); flex-wrap: wrap; align-items: baseline; }
  .pdp-bc-sale { font-size: 14px; }
  .pdp-bc-orig { font-size: 12px; }

  /* CTA button */
  .pdp-bc-btn { font-size: 11px; padding: 7px var(--sp-2); letter-spacing: 0.04em; }

  /* ── Bundle contents list (on Bundle page) ── */
  .pdp-bc-list { gap: var(--sp-3); }
  .pdp-bc-item { padding: var(--sp-3); }
  .pdp-bc-item-img { width: 40px; height: 40px; min-width: 40px; }
  .pdp-bc-item-name { font-size: 13px; word-break: break-word; }
  .pdp-bc-item-info { gap: var(--sp-2); }

  /* ── Instagram feed ── */
  .ig-section-header,
  .ig-section-header.section-header { padding-left: var(--sp-4); padding-right: var(--sp-4); }
  .ig-header-right { display: none; } /* hide arrows on mobile — swipe only */
  .pdp-ig-header { padding-left: var(--sp-4); padding-right: var(--sp-4); }
  .pdp-ig-carousel { padding-left: var(--sp-4); padding-right: var(--sp-4); }
  .pdp-ig-item { flex: 0 0 160px; }

  /* ── Reviews section ── */
  .pdp-faq-inner { padding: 0 var(--sp-4); }
  .pdp-faq-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .pdp-faq-title { font-size: 20px; margin-bottom: var(--sp-6); }
  .pdp-rev-inner { padding-left: var(--sp-4); padding-right: var(--sp-4); }
  .pdp-rev-summary { flex-direction: column; gap: var(--sp-6); }
  .pdp-rev-summary-div { display: none; }
  .pdp-rev-bars { width: 100%; }
  .pdp-rev-list { grid-template-columns: 1fr; }
  .pdp-rev-big-num { font-size: 40px; }
  .pdp-rev-sort-row { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }

  /* ── Bundle highlight bar ── */
  .pdp-bh-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
    padding-left: var(--sp-4);
    padding-right: var(--sp-4);
  }
  .pdp-bh-inner .btn-outline-navy { width: 100%; }

  /* ── Sticky ATC bar ── */
  .pdp-sticky-title { display: none; }
  .pdp-sticky-qty { display: none; }
  .pdp-sticky-price { display: none; }
  .pdp-sticky-inner {
    padding: var(--sp-3) var(--sp-4);
  }
  .pdp-sticky-right { width: 100%; }
  .pdp-sticky-atc-btn { width: 100%; height: 48px; font-size: 14px; letter-spacing: 0.05em; }

  /* Bottom padding: content clears fixed sticky bar */
  .page-pdp, .page-bundle { padding-bottom: 72px; }
}

/* ==============================================
   BOBBYS CLUB — Loyalty page
   ============================================== */

.page-loyalty { background: var(--bg); }

/* Image banners */
.loyalty-banner {
  height: 600px;
  overflow: hidden;
}
.loyalty-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

@media (max-width: 600px) {
  .loyalty-banner { height: 420px; }
}

/* Hero */
.loyalty-hero {
  background: #fff;
  border-bottom: 0.5px solid var(--border);
  padding: var(--sp-12) var(--sp-4) var(--sp-8);
  text-align: center;
}
.loyalty-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}
.loyalty-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--sp-4);
}
.loyalty-heading {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 var(--sp-4);
}
.loyalty-heading em {
  font-style: italic;
  color: var(--navy);
}
.loyalty-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 var(--sp-8);
}
.loyalty-hero-ctas {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}
.loyalty-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 0.5px solid var(--border);
}
.loyalty-stat { text-align: center; }
.loyalty-stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.loyalty-stat-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
}
.loyalty-stat-divider {
  width: 0.5px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Shared section layout */
.loyalty-how,
.loyalty-tiers,
.loyalty-earn,
.loyalty-cta-section {
  padding: var(--sp-12) var(--sp-4);
}
.loyalty-tiers { background: #fff; }
.loyalty-cta-section { background: #fff; border-top: 0.5px solid var(--border); }
.loyalty-section-inner {
  max-width: 1040px;
  margin: 0 auto;
}
.loyalty-section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--sp-2);
}
.loyalty-tiers .loyalty-section-eyebrow,
.loyalty-earn-left .loyalty-section-eyebrow {
  color: var(--muted);
}
.loyalty-section-heading {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 var(--sp-8);
}

/* Steps */
.loyalty-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}
.loyalty-step {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.loyalty-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}
.loyalty-step-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  margin: 0;
}
.loyalty-step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Tier cards */
.loyalty-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.loyalty-tier-card {
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  background: var(--bg);
}
.loyalty-tier-card--highlight {
  background: var(--bg);
}
.loyalty-tier-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--sp-2);
}
.loyalty-tier-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 var(--sp-2);
}
.loyalty-tier-desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 var(--sp-4);
  line-height: 1.5;
}
.loyalty-tier-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.loyalty-tier-perks li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.loyalty-tier-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 5px;
  border-left: 1.5px solid var(--navy);
  border-bottom: 1.5px solid var(--navy);
  transform: rotate(-45deg);
}

/* Earn + Redeem */
.loyalty-earn-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}
.loyalty-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.loyalty-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 0.5px solid var(--border);
  padding: var(--sp-2) 0 var(--sp-2);
}
.loyalty-table th:last-child,
.loyalty-table td:last-child { text-align: right; }
.loyalty-table td {
  padding: var(--sp-3) 0;
  color: var(--navy);
  border-bottom: 0.5px solid var(--border);
}
.loyalty-redeem-box {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
}
.loyalty-redeem-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 var(--sp-3);
}
.loyalty-redeem-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 var(--sp-4);
}
.loyalty-redeem-rates {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.loyalty-redeem-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: var(--sp-2) 0;
  border-bottom: 0.5px solid var(--border);
  color: var(--navy);
}
.loyalty-redeem-row:last-child { border-bottom: none; }

/* CTA section */
.loyalty-cta-inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.loyalty-cta-heading {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 var(--sp-3);
}
.loyalty-cta-sub {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 var(--sp-8);
  line-height: 1.6;
}
.loyalty-cta-btn-inv {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 0 var(--sp-6);
  height: 44px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.15s;
}
.loyalty-cta-btn-inv:hover { opacity: 0.85; }
.loyalty-cta-btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 0.5px solid var(--navy);
  padding: 0 var(--sp-6);
  height: 44px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.15s;
}
.loyalty-cta-btn-ghost:hover { opacity: 0.75; }

/* Mobile */
@media (max-width: 768px) {
  .loyalty-heading { font-size: 28px; }
  .loyalty-stats { gap: var(--sp-4); }
  .loyalty-stat-value { font-size: 20px; }
  .loyalty-steps { grid-template-columns: 1fr; gap: var(--sp-6); }
  .loyalty-tier-grid { grid-template-columns: 1fr; }
  .loyalty-earn-inner { grid-template-columns: 1fr; gap: var(--sp-8); }
}

/* ==============================================
   PRESENTKORT — Gift card page
   ============================================== */
.page-giftcard { background: var(--bg); }

/* Gift card visual */
.gc-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}
.gc-card-wrap {
  width: 100%;
  max-width: 420px;
  padding: var(--sp-8);
}
.gc-card {
  background: var(--cream);
  border-radius: 16px;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: flex-end;
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
  border: 0.5px solid var(--border);
}
.gc-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 40px solid rgba(19,36,64,0.06);
}
.gc-card::after {
  content: '';
  position: absolute;
  top: -20px;
  right: 60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 30px solid rgba(19,36,64,0.04);
}
.gc-card-inner { position: relative; z-index: 1; width: 100%; }
.gc-card-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(19,36,64,0.45);
  margin-bottom: var(--sp-2);
}
.gc-card-title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--navy);
  margin-bottom: var(--sp-1);
}
.gc-card-amount {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: var(--sp-4);
  transition: all 0.2s;
}
.gc-card-line {
  width: 32px;
  height: 1px;
  background: rgba(19,36,64,0.2);
  margin-bottom: var(--sp-3);
}
.gc-card-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(19,36,64,0.4);
}

/* Mini gift card — used in cart thumbnail, checkout line item */
.gc-card-mini {
  background: var(--cream);
  border-radius: 4px;
  border: 0.5px solid var(--border);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6px 8px;
  position: relative;
  overflow: hidden;
}
.gc-card-mini::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 12px solid rgba(19,36,64,0.06);
}
.gc-card-mini-brand {
  font-family: var(--font-serif);
  font-size: 8px;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gc-card-mini-label {
  font-family: var(--font-sans);
  font-size: 7px;
  color: rgba(19,36,64,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Info column elements */
.gc-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-2);
}
.gc-section-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
}

/* Amount pills */
.gc-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.gc-amount-btn {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: var(--sp-2) var(--sp-4);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.gc-amount-btn--active {
  border-color: var(--navy);
  border-width: 1.5px;
  background: var(--navy);
  color: #fff;
}
.gc-amount-btn--custom { color: var(--muted); }
.gc-amount-btn--custom.gc-amount-btn--active { color: #fff; }

/* Custom input */
.gc-custom-wrap {
  display: none;
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-5);
}
.gc-custom-wrap.gc-custom-visible { display: block; }
.gc-input-wrap {
  position: relative;
}
.gc-input-wrap .gc-input {
  padding-right: 36px;
}
.gc-input-suffix {
  position: absolute;
  right: var(--sp-3);
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--muted);
  pointer-events: none;
}

/* Fields */
.gc-fields {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.gc-field-group { display: flex; flex-direction: column; gap: var(--sp-1); }
.gc-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
}
.gc-required { color: var(--navy); }
.gc-optional { color: var(--muted); font-weight: 400; }
.gc-input {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-3) var(--sp-3);
  width: 100%;
  outline: none;
  transition: border-color 0.15s;
}
.gc-input:focus { border-color: var(--navy); }
.gc-input::placeholder { color: var(--text-placeholder, #c8bfb5); }
.gc-textarea { resize: vertical; min-height: 80px; }

/* ATC */
.gc-atc { width: 100%; margin-bottom: var(--sp-4); }

@media (max-width: 768px) {
  .gc-card-wrap { padding: var(--sp-4); max-width: 100%; }
  .gc-card-title { font-size: 22px; }
  .gc-card-amount { font-size: 26px; }
}

/* ==============================================
   MITT KONTO — Account dashboard
   ============================================== */

.page-account {
  background: var(--bg);
  min-height: 100vh;
}
.account-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-4);
  gap: var(--sp-8);
  align-items: start;
}

/* Sidebar */
.account-sidebar {
  background: none;
  border: none;
  border-radius: 0;
  padding: var(--sp-2) 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 88px;
}
.account-nav-list {
  list-style: none;
  padding: 0 var(--sp-2);
  margin: 0;
}
.account-nav-list--lower {
  border-top: 0.5px solid var(--border);
  padding-top: var(--sp-2);
  margin-top: var(--sp-3);
  padding-left: var(--sp-2);
  padding-right: var(--sp-2);
}
.account-nav-btn {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  width: 100%;
  padding: var(--sp-3) var(--sp-3);
  background: none;
  border: none;
  text-align: left;
  font-size: 14px;
  color: var(--navy);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.1s;
}
.account-nav-btn:hover { background: var(--border); }
.account-nav-btn.active {
  background: var(--navy);
  color: #fff;
}
.account-nav-btn.active svg { stroke: #fff; }
.account-logout-btn {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  width: 100%;
  padding: var(--sp-3) var(--sp-3);
  margin: var(--sp-3) var(--sp-2) 0;
  width: calc(100% - var(--sp-4));
  background: none;
  border: none;
  border-top: 0.5px solid var(--border);
  padding-top: var(--sp-4);
  text-align: left;
  font-size: 14px;
  color: #c0392b;
  cursor: pointer;
  transition: opacity 0.15s;
}
.account-logout-btn:hover { opacity: 0.7; }
.account-logout-btn svg { stroke: #c0392b; }

/* Main content */
.account-main { min-width: 0; }
.account-tab { }
.account-tab--hidden { display: none; }
.account-tab-heading {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 var(--sp-6);
}

/* Greeting */
.account-greeting {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 var(--sp-1);
}
.account-meta {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 var(--sp-6);
}

/* Club card */
.account-club-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  margin-bottom: var(--sp-6);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.account-club-card-content { flex: 1; min-width: 0; position: relative; z-index: 1; }
.account-club-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.6;
  margin: 0 0 var(--sp-1);
}
.account-club-brand {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 var(--sp-4);
}
.account-club-points {
  font-size: 14px;
  color: var(--navy);
  margin: 0 0 var(--sp-4);
}
.account-club-points strong { font-size: 28px; font-weight: 700; }
.account-club-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--navy);
  opacity: 0.7;
  margin-bottom: var(--sp-2);
}
.account-club-bar-track {
  background: rgba(19,36,64,0.15);
  border-radius: 99px;
  height: 6px;
  overflow: hidden;
  margin-bottom: var(--sp-2);
}
.account-club-bar-fill {
  height: 100%;
  background: var(--navy);
  border-radius: 99px;
  transition: width 0.6s ease;
}
.account-club-progress-note {
  font-size: 12px;
  color: var(--navy);
  opacity: 0.7;
  margin: 0;
}
.account-club-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 24px solid rgba(19,36,64,0.08);
  flex-shrink: 0;
  margin: auto -24px auto var(--sp-4);
}

/* Stat tiles */
.account-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.account-stat-tile {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.account-stat-value {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  font-weight: 400;
}
.account-stat-label {
  font-size: 12px;
  color: var(--muted);
}

/* Orders */
.account-orders-section {
  background: none;
  border: none;
  border-radius: 0;
  padding-bottom: var(--sp-3);
}
.account-orders-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 var(--sp-3) 0;
  border-bottom: none;
}
.account-orders-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.account-orders-see-all {
  font-size: 13px;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.account-order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-4) var(--sp-4);
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-3);
}
.account-order-row:last-child { margin-bottom: 0; }
.account-order-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.account-order-num {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.account-order-date {
  font-size: 12px;
  color: var(--muted);
}
.account-order-items {
  font-size: 13px;
  color: var(--muted);
}
.account-order-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-2);
}
.account-order-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.account-order-status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}
.account-order-status--processing {
  background: #fff3cd;
  color: #7d5a00;
}
.account-order-status--delivered {
  background: var(--bg);
  color: var(--muted);
}

/* Account action cards (gift card + referral) */
.account-action-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.account-action-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.account-action-card-top {
  margin-bottom: var(--sp-3);
}
.account-action-card-gc-visual {
  width: 100%;
  height: 56px;
}
.account-action-card-gc-visual .gc-card-mini {
  width: 100%;
  height: 100%;
}
.account-action-card-title {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--navy);
  margin: 0;
}
.account-action-card-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.account-action-card-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--sp-4);
}
.account-action-card-btn {
  background: var(--navy);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.account-action-card-btn:hover { opacity: 0.85; }
.account-referral-row {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 7px 10px;
  margin-top: var(--sp-4);
}
.account-referral-link {
  font-size: 12px;
  color: var(--navy);
  font-weight: 500;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-referral-copy {
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  white-space: nowrap;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 680px) {
  .account-action-cards {
    grid-template-columns: 1fr;
  }
}

/* Perks grid */
.account-perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.account-perk-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  opacity: 0.5;
}
.account-perk-card--active { opacity: 1; }
.account-perk-label {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 var(--sp-2);
}
.account-perk-desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* Order cards */
.account-order-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-6);
  margin-bottom: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.account-order-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-1);
}
.account-order-card-bottom {
  margin-top: var(--sp-2);
  display: flex;
  justify-content: flex-end;
}

/* Perks */
.account-perks-intro {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 var(--sp-6);
}
.account-perk-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
}
.account-perk-card--locked .account-perk-icon { opacity: 0.4; }
.account-perk-card--locked .account-perk-label { color: var(--muted); }
.account-perk-card--locked .account-perk-desc { color: #aaa; }
.account-perk-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  margin-top: var(--sp-3);
}
.account-perk-badge--active { background: #e6f4ee; color: #2a7c5c; }
.account-perk-badge--elite  { background: var(--bg); color: var(--muted); }
.account-perks-progress {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  margin-top: var(--sp-6);
}
.account-perks-progress-top { margin-bottom: var(--sp-2); font-size: 15px; color: var(--navy); }
.account-perks-progress-desc { font-size: 14px; color: var(--muted); margin: 0 0 var(--sp-4); line-height: 1.5; }
.account-perks-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

/* Settings form */
.account-settings-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: 480px;
}
.account-field { display: flex; flex-direction: column; gap: var(--sp-2); }
.account-field-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Address cards */
.account-address-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  margin-bottom: var(--sp-4);
}
.account-address-type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--sp-4);
}
.account-address-line { font-size: 14px; color: var(--navy); margin: 0; line-height: 1.8; }
.account-address-line--muted { color: var(--muted); font-style: italic; }

/* Points history */
.account-history-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 14px;
  color: var(--navy);
}
.account-history-row:last-child { border-bottom: none; }
.account-history-pts { font-weight: 600; }
.account-history-pts--plus { color: #2a7c5c; }
.account-history-pts--minus { color: #c0392b; }

/* Mobile */
@media (max-width: 768px) {
  .account-wrap {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
  }
  .account-sidebar {
    position: static;
    background: none;
    border: none;
    padding: var(--sp-4) var(--sp-4) 0;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    align-items: center;
  }
  .account-sidebar::-webkit-scrollbar { display: none; }
  .account-nav-list {
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    padding: 0;
    gap: var(--sp-1);
  }
  .account-nav-list--lower {
    border-top: none;
    border-left: 0.5px solid var(--border);
    padding-top: 0;
    margin-top: 0;
    margin-left: var(--sp-2);
    padding-left: var(--sp-2);
    padding-right: 0;
    display: flex;
    flex-direction: row;
    gap: var(--sp-1);
  }
  .account-nav-btn {
    flex-shrink: 0;
    width: auto;
    padding: var(--sp-2) var(--sp-3);
    font-size: 13px;
    border-radius: var(--radius-sm);
    background: none;
    color: var(--navy);
    border-bottom: none;
    gap: var(--sp-2);
    white-space: nowrap;
  }
  .account-nav-btn svg { display: block; }
  .account-nav-btn:hover { background: var(--border); color: var(--navy); }
  .account-nav-btn.active {
    background: var(--navy);
    color: #fff;
    border-bottom: none;
  }
  .account-nav-btn.active svg { stroke: #fff; }
  .account-logout-btn {
    flex-shrink: 0;
    border-top: none;
    border-left: 0.5px solid var(--border);
    margin: 0 0 0 var(--sp-2);
    width: auto;
    padding: var(--sp-2) var(--sp-3);
    font-size: 13px;
  }
  .account-logout-btn svg { display: block; }
  .account-main { padding: var(--sp-6) var(--sp-4); }
  .account-stats { grid-template-columns: 1fr 1fr; }
  .account-club-circle { display: none; }
  .account-perks-grid { grid-template-columns: 1fr; }
}


.wishlist-item-thumb img,
.cart-item-thumb img,
.cart-rec-thumb img,
.srch-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-sm);
}
.quiz-product-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}