/** Shopify CDN: Minification failed

Line 3105:0 All "@import" rules must come first

**/
/* Zarina Theme - Base CSS */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-bg: #fdf8f6;
  --color-text: #1a1a1a;
  --color-text-light: #7a6f6f;
  --color-border: #ecddd9;
  --color-accent: #dcacae;
  --color-accent-hover: #c99496;
  --color-accent-dark: #b07a7c;
  --color-badge: #dcacae;
  --color-badge-text: #ffffff;
  --color-sale: #b07a7c;
  --font-main: 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Helvetica Neue', Arial, sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.2s ease;
  --shadow: 0 2px 12px rgba(176,122,124,0.10);
  --shadow-lg: 0 8px 32px rgba(176,122,124,0.18);
  --prose-link: #8a4f52;
  --prose-link-hover: #5e3537;
}

html, body {
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
*, *::before, *::after { box-sizing: border-box; }
img, video { max-width: 100%; height: auto; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Policy & prose links (not header/footer/nav CTAs) */
.zarina-legal__content a,
.page-prose a,
.content-section__body a,
.accordion__body a,
.zarina-sporing__help a,
.zarina-sporing__tips a {
  color: var(--prose-link);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.zarina-legal__content a:hover,
.page-prose a:hover,
.content-section__body a:hover,
.accordion__body a:hover,
.zarina-sporing__help a:hover,
.zarina-sporing__tips a:hover {
  color: var(--prose-link-hover);
}
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ANNOUNCEMENT BAR */
.announcement-bar {
  background: #dcacae;
  color: #fff;
  padding: 9px 0;
  overflow: hidden;
  position: relative;
}
.announcement-bar__track {
  display: flex;
  animation: marquee 24s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.announcement-bar__item {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 48px;
}
.announcement-bar__item::after {
  content: '•';
  margin-left: 48px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
  height: 64px;
  max-width: 1400px;
  margin: 0 auto;
}
.header__nav { display: flex; gap: 28px; align-items: center; }
.header__nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: opacity var(--transition);
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width var(--transition);
}
.header__nav a:hover::after { width: 100%; }
.header__logo {
  text-align: center;
}
.header__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header__logo a {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b07a7c;
}
.header__logo img {
  max-height: 28px;
  width: auto;
  height: auto;
  margin: 0 auto;
  display: block;
  transform: translateY(3px);
}
.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.header__icon-btn {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: var(--color-text);
  transition: opacity var(--transition);
  position: relative;
}
.header__icon-btn:hover { opacity: 0.6; }
.cart-count {
  position: absolute;
  top: -2px; right: -4px;
  background: #dcacae;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  display: none;
}
.cart-count.visible { display: flex; }

/* CART DRAWER */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 400px; max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.cart-drawer.active { transform: translateX(0); }
.cart-drawer__body { min-height: 0; }
.cart-drawer__footer { flex-shrink: 0; padding-bottom: max(20px, env(safe-area-inset-bottom)); }
.cart-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}
.cart-drawer__title { font-size: 16px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.cart-drawer__close {
  padding: 4px;
  font-size: 20px;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}
.cart-drawer__close,
.cart-drawer__close:hover,
.cart-drawer__close:focus,
.cart-drawer__close:active { color: #000; }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 24px; }
.cart-drawer__empty { text-align: center; padding: 60px 20px; color: var(--color-text-light); }
.cart-drawer__empty p { margin-bottom: 16px; }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}
.cart-item__img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius); }
.cart-item__title { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.cart-item__price-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 2px; }
.cart-item__price { font-size: 14px; font-weight: 700; color: #000; }
.cart-item__compare { font-size: 13px; color: var(--color-text-light); text-decoration: line-through; }
.cart-item__save { font-size: 11px; font-weight: 700; color: #fff; background: #2e7d32; padding: 2px 6px; border-radius: 4px; letter-spacing: 0.02em; }
.cart-item__qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.cart-item__qty button { width: 24px; height: 24px; border: 1px solid var(--color-border); border-radius: var(--radius); font-size: 14px; display: flex; align-items: center; justify-content: center; transition: all var(--transition); background: #fff; color: #000; -webkit-tap-highlight-color: transparent; -webkit-appearance: none; appearance: none; }
.cart-item__qty button:hover { background: #000; color: #fff; border-color: #000; }
.cart-item__remove {
  font-size: 18px;
  color: var(--color-text-light);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}
.cart-item__remove,
.cart-item__remove:hover,
.cart-item__remove:focus,
.cart-item__remove:active { color: var(--color-text-light); }

/* Cart add-ons (Markdal layout, Zarina colors) */
.cart-drawer__addons-stack {
  display: grid;
  gap: 10px;
  width: 100%;
}
.cart-drawer__footer .cart-drawer__addons-stack {
  padding: 0 0 14px;
}
.cart-drawer__insurance,
.cart-drawer__brush-heads {
  width: 100%;
  padding: 14px 16px;
  border: 0;
  background: #f3e8e9;
  border-radius: var(--radius-lg);
  display: grid;
}
.cart-drawer__brush-heads {
  border: 1px solid var(--color-border);
  background: rgba(220, 172, 174, 0.12);
}
.cart-drawer__insurance-row,
.cart-drawer__brush-heads-row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 12px;
}
.cart-drawer__insurance-toggle,
.cart-drawer__brush-heads-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.cart-drawer__insurance-toggle input,
.cart-drawer__brush-heads-toggle input {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.cart-drawer__insurance-toggle span,
.cart-drawer__brush-heads-toggle span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #d9d9d9;
  transition: background 0.2s ease;
}
.cart-drawer__insurance-toggle span::before,
.cart-drawer__brush-heads-toggle span::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.16);
  transition: transform 0.2s ease;
}
.cart-drawer__insurance-toggle input:checked + span,
.cart-drawer__brush-heads-toggle input:checked + span {
  background: #2d8659;
}
.cart-drawer__insurance-toggle input:checked + span::before,
.cart-drawer__brush-heads-toggle input:checked + span::before {
  transform: translateX(24px);
}
.cart-drawer__insurance-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  color: var(--color-accent-dark);
  flex-shrink: 0;
}
.cart-drawer__insurance-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.cart-drawer__brush-heads-media {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
}
.cart-drawer__brush-heads-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cart-drawer__insurance-copy,
.cart-drawer__brush-heads-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.cart-drawer__insurance-copy strong,
.cart-drawer__brush-heads-copy strong {
  font-size: 0.95rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--color-text);
}
.cart-drawer__insurance-copy > span {
  color: var(--color-text-light);
  font-size: 0.92rem;
}
.cart-drawer__brush-heads-prices {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.92rem;
  color: var(--color-text-light);
}
.cart-drawer__brush-heads-compare {
  text-decoration: line-through;
  color: #9a8587;
}
.cart-drawer__brush-heads-prices > span:last-child {
  color: var(--color-text);
  font-weight: 700;
}
.cart-inline-addon {
  margin-top: 8px;
}
.cart-inline-addon__toggle {
  justify-self: end;
}
.cart-inline-addon__variant {
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 2px;
}
.cart-inline-addon__placeholder {
  background: #fff;
}

.cart-bundle {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 12px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
  align-items: start;
}
.cart-bundle__img {
  object-fit: contain;
  object-position: center;
}
.cart-bundle__body { min-width: 0; }
.cart-bundle__lines {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.4;
  margin-top: 4px;
}
.cart-bundle__note {
  font-size: 11px;
  color: var(--color-text-light);
  margin: 8px 0 0;
  line-height: 1.35;
}

/* Upsell in cart */
.cart-upsell {
  background: #f8f8f8;
  border-radius: var(--radius-lg);
  padding: 14px;
  margin: 16px 0;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: center;
}
.cart-upsell img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius); }
.cart-upsell__title { font-size: 13px; font-weight: 500; }
.cart-upsell__price { font-size: 13px; color: var(--color-text-light); }
.cart-upsell__add {
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cart-drawer__footer { padding: 20px 24px; border-top: 1px solid var(--color-border); }
.cart-checkout-block {
  --cart-btn-radius: 10px;
  position: relative;
  margin-bottom: 14px;
}
.cart-total {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 14px 16px 0;
  padding-bottom: 70px;
  margin: 0;
  background: #f3e8e9;
  border-radius: 12px 12px var(--cart-btn-radius) var(--cart-btn-radius);
}
.cart-total__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cart-total__label {
  font-size: 12px;
  font-weight: 600;
  color: #6b5c5d;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
  flex-shrink: 0;
}
.cart-total__saved {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: #2d8659;
  padding: 6px 10px;
  border-radius: 6px;
  text-align: right;
  line-height: 1.3;
  white-space: nowrap;
}
.cart-total__saved span {
  font-weight: 700;
  color: #fff;
}
.cart-total__prices {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}
.cart-total__compare,
.cart-total__amount {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cart-total__compare {
  font-weight: 600;
  color: #9a8587;
  text-decoration: line-through;
}
.cart-total__amount {
  color: #1a1a1a;
}
.cart-checkout-block .cart-checkout-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  width: 100%;
  background: #dcacae;
  color: #fff;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--cart-btn-radius);
  text-align: center;
  transition: background var(--transition);
  margin: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.cart-checkout-block .cart-checkout-btn:hover { background: #c99496; }
.cart-checkout-btn {
  display: block;
  width: 100%;
  background: #dcacae;
  color: #fff;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-align: center;
  transition: background var(--transition);
}
.cart-checkout-btn:hover { background: #c99496; }
.cart-payment-icons { margin-top: 14px; }

/* HERO BANNER */
.hero { position: relative; overflow: hidden; }
.hero__media { width: 100%; }
.hero__media img, .hero__media video {
  width: 100%;
  height: 70vh;
  min-height: 400px;
  object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.35));
}
.hero__content {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 600px;
}
.hero__title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.hero__btn {
  display: inline-block;
  background: #dcacae;
  color: #fff;
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.hero__btn:hover { background: #b07a7c; color: #fff; }

/* SECTION TITLES */
.section { padding: 60px 24px; max-width: 1400px; margin: 0 auto; }
.section--full { max-width: none; }
.section__title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
  text-align: center;
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.product-card {
  position: relative;
  cursor: pointer;
}
.product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #f5f5f5;
  aspect-ratio: 1;
  margin-bottom: 14px;
}
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__badge {
  position: absolute;
  top: 10px; left: 10px;
  background: #dcacae;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.product-card__title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.product-card__prices { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.product-card__price { font-size: 15px; font-weight: 700; }
.product-card__compare { font-size: 13px; color: var(--color-text-light); text-decoration: line-through; }
.product-card__add {
  margin-top: 10px;
  width: 100%;
  background: #dcacae;
  color: #fff;
  padding: 11px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.product-card__add:hover { background: #b07a7c; }
.collection-link {
  text-align: center;
  margin-top: 36px;
}
.collection-link a {
  display: inline-block;
  border: 2px solid #000;
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.collection-link a:hover { background: #dcacae; color: #fff; border-color: #dcacae; }

/* NEWSLETTER */
.newsletter {
  background: #f5f5f5;
  padding: 60px 24px;
  text-align: center;
}
.newsletter__title { font-size: 20px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 8px; }
.newsletter__sub { font-size: 14px; color: var(--color-text-light); margin-bottom: 24px; }
.newsletter__form { display: flex; max-width: 420px; margin: 0 auto; gap: 0; }
.newsletter__input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid #ccc;
  border-right: none;
  font-size: 14px;
  font-family: inherit;
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
}
.newsletter__input:focus { border-color: #000; }
.newsletter__btn {
  background: #dcacae;
  color: #fff;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter__btn:hover { background: #b07a7c; }

/* Scroll til toppen — rett over footer */
.scroll-top-bar {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.scroll-top-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 14px 24px;
  border: none;
  border-radius: 14px 14px 0 0;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s;
}
.scroll-top-bar__btn:hover {
  background: #222;
}
.scroll-top-bar__btn svg {
  flex-shrink: 0;
}

/* FOOTER */
.footer {
  border-top: none;
  padding: 48px 24px 24px;
  background: #fff;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 40px;
}
.footer__brand-logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer__brand-logo-img {
  max-height: 44px;
  width: auto;
  height: auto;
  display: block;
}
.footer__contact-item { font-size: 13px; color: var(--color-text-light); margin-bottom: 6px; line-height: 1.7; }
.footer__heading { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 13px; color: var(--color-text-light); transition: color var(--transition); }
.footer__links a:hover { color: #000; }
.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__logo-img {
  max-height: 28px;
  width: auto;
  height: auto;
  display: block;
}
.footer__copyright {
  font-size: 12px;
  color: var(--color-text-light);
}
.footer__payments { margin-top: 8px; }

/* PRODUCT PAGE */
.product-page { padding: 40px 24px 60px; max-width: 1200px; margin: 0 auto; }
.product-page__grid > * { min-width: 0; }
.product-info { min-width: 0; }
.product-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-gallery__main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 1;
  margin-bottom: 12px;
}
.product-gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}
/* Pilnavigasjon på hovedbilde */
.product-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  color: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background var(--transition), transform var(--transition);
  z-index: 5;
  -webkit-tap-highlight-color: transparent;
  padding: 0;
}
.product-gallery__nav:hover { background: #fff; }
.product-gallery__nav:active { transform: translateY(-50%) scale(0.92); }
.product-gallery__nav--prev { left: 10px; }
.product-gallery__nav--next { right: 10px; }
@media (max-width: 768px) {
  .product-gallery__nav { width: 34px; height: 34px; }
  .product-gallery__nav--prev { left: 8px; }
  .product-gallery__nav--next { right: 8px; }
}

.product-gallery__thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.product-gallery__thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.product-gallery__thumb.active { border-color: #dcacae; }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* LIVE SOCIAL PROOF */
.live-proof {
  background: #fbf7f5;
  border: 1px solid #f0e4e0;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 16px 0;
  display: flex; flex-direction: column; gap: 8px;
}
.live-proof__row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: #1a1a1a;
}
.live-proof__row strong { font-weight: 700; }
.live-proof__icon { font-size: 14px; line-height: 1; }
.live-proof__dot {
  width: 8px; height: 8px; border-radius: 50%;
  display: inline-block; flex-shrink: 0;
  position: relative;
}
.live-proof__dot--green { background: #2e7d32; box-shadow: 0 0 0 0 rgba(46,125,50,0.6); animation: livePulse 2s infinite; }
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,125,50,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(46,125,50,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,125,50,0); }
}
#liveViewers, #liveSold {
  transition: opacity 0.2s ease;
  display: inline-block;
}

.product-info__rating {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  scroll-behavior: smooth;
}
.product-info__rating:hover .rating-text { text-decoration: underline; }
:target { scroll-margin-top: 80px; }
.stars { font-size: 14px; line-height: 1; }
/* Snitt ~4,7 — 4 hela + 1 halv stjärna */
.rating-stars-45 {
  display: inline-flex;
  align-items: center;
  gap: 0;
  letter-spacing: 0.06em;
  line-height: 1;
}
.rating-stars-45__full {
  color: #f4a31a;
}
.rating-stars-45__half {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  font-size: 1em;
  line-height: 1;
}
.rating-stars-45__half-bg {
  position: absolute;
  left: 0;
  top: 0;
  color: #ddd;
}
.rating-stars-45__half-fg {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #f4a31a;
  white-space: nowrap;
}
.glowtrim-reviews__stars .rating-stars-45 {
  font-size: 22px;
}
.rating-text { font-size: 13px; color: var(--color-text-light); }

.product-info__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 10px;
}
.product-info__lead {
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-text-light);
  margin: 0 0 12px;
}
.product-info__prices {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 6px;
}
.product-info__price { font-size: 28px; font-weight: 800; }
.product-info__compare { font-size: 18px; text-decoration: line-through; color: var(--color-text-light); }
.product-info__badge {
  background: #2d8659;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.product-info__bullets {
  margin: 8px 0 12px;
}

/* PACKAGE SELECTOR */
.package-selector { margin: 12px 0; }

.offer-heading {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 10px;
}
.offer-heading__line { flex: 1; height: 1px; background: var(--color-border); }
.offer-heading__text { font-size: 14px; font-weight: 700; white-space: nowrap; letter-spacing: 0.03em; }

.package-options { display: flex; flex-direction: column; gap: 10px; }
.package-option {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 14px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  position: relative;
  background: #fff;
}
.package-option__top {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
}
.package-option__title { font-size: 16px; font-weight: 700; color: #1a1a1a; line-height: 1.25; }
.package-option__tag { font-size: 12px; color: var(--color-text-light); margin-top: 0; line-height: 1.35; }
.package-option__colors {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #eedfd9;
  display: none;
}
.package-option.active .package-option__colors { display: block; }
.color-slot { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.color-slot:last-child { margin-bottom: 0; }
.color-slot__label {
  font-size: 12px; font-weight: 600; color: #666;
  min-width: 64px; flex-shrink: 0;
}
.color-slot__pills { display: flex; gap: 6px; flex-wrap: wrap; flex: 1; min-width: 0; }
.color-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px 5px 5px;
  background: #fff;
  border: 2px solid var(--color-border);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  transition: border-color var(--transition), background var(--transition);
}
.color-pill:hover { border-color: var(--color-text-light); }
.color-pill.active { border-color: var(--color-accent-dark); background: #fef1f1; }
.color-pill__swatch {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  position: relative;
  display: inline-block;
}
.color-pill__swatch--rosa { background: #e8b4b8; }
.color-pill__swatch--lila { background: #b08fc4; }
.color-pill__swatch--bla { background: #6c95c4; }
.color-pill__swatch--vit { background: #f6f3ef; }
.color-pill__swatch--gron { background: #6ba66b; }
.color-pill--soldout { opacity: 0.45; cursor: not-allowed; }
.color-pill--soldout .color-pill__swatch::after {
  content: ''; position: absolute;
  left: -2px; right: -2px; top: 50%;
  height: 1.5px; background: #333;
  transform: rotate(-30deg);
}
.color-pill__soldout-tag {
  font-size: 9px; background: #fae6e6; color: #a14444;
  padding: 1px 5px; border-radius: 3px; font-weight: 700; margin-left: 2px;
}
.package-option.active {
  border-color: #dcacae;
  background: #fdf5f5;
}
.package-option__popular-badge {
  position: absolute;
  top: -10px; right: 14px;
  background: #dcacae;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  white-space: nowrap;
}
.package-option__left {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  min-width: 0;
}
.package-option__bundle-thumb {
  flex: 0 0 auto;
  line-height: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.package-option__bundle-thumb img {
  width: auto;
  height: 100%;
  max-height: 88px;
  min-height: 64px;
  max-width: 72px;
  object-fit: contain;
  object-position: center left;
  display: block;
}
/* Bundle 3 — bredere bilde, venstre kant som 1 og 2 (vokser mot høyre) */
.package-option[data-qty="3"] .package-option__bundle-thumb {
  justify-content: flex-start;
}
.package-option[data-qty="3"] .package-option__bundle-thumb img {
  max-width: 104px;
  object-position: left center;
}
.package-option__copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.package-option__radio {
  width: 20px; height: 20px;
  margin-right: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--transition);
}
.package-option.active .package-option__radio { border-color: #dcacae; }
.package-option.active .package-option__radio::after {
  content: '';
  width: 10px; height: 10px;
  background: #dcacae;
  border-radius: 50%;
}
.package-option__qty { font-size: 17px; font-weight: 700; }
.package-option__prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  text-align: right;
  flex-shrink: 0;
  align-self: center;
  min-width: 72px;
}
.package-option__price { font-size: 18px; font-weight: 800; color: #dcacae; line-height: 1.2; }
.package-option__old { font-size: 14px; color: var(--color-text-light); text-decoration: line-through; line-height: 1.2; }

.stock-indicator {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  margin: 10px 0 2px;
}
.stock-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #e67e22;
  flex-shrink: 0;
}

/* ATC + sticky */
.product-info__atc {
  width: 100%;
  background: #dcacae;
  color: #fff;
  padding: 18px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  margin: 10px 0 6px;
  transition: background var(--transition);
  box-shadow: 0 4px 14px rgba(220, 172, 174, 0.4);
}
.product-info__atc:hover { background: #b07a7c; }
.product-info__guarantee {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; color: var(--color-text-light);
  margin: 8px 0;
}
.guarantee-icon {
  width: 22px; height: 22px;
  border: 1.5px solid var(--color-text-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.product-payment-icons { margin: 10px 0 14px; }

/* ACCORDION */
.accordion { border-top: 1px solid var(--color-border); margin: 24px 0; }
.accordion__item { border-bottom: 1px solid var(--color-border); }
.accordion__trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  color: #000;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  text-align: left;
  font-family: inherit;
}
.accordion__trigger,
.accordion__trigger:hover,
.accordion__trigger:focus,
.accordion__trigger:active { color: #000; }
.accordion__icon { font-size: 20px; transition: transform 0.2s; flex-shrink: 0; }
.accordion__item.open .accordion__icon { transform: rotate(45deg); }
.accordion__body { overflow: hidden; max-height: 0; transition: max-height 0.3s ease; }
.accordion__body.open { max-height: 500px; }
.accordion__body p { font-size: 14px; color: var(--color-text-light); line-height: 1.7; padding-bottom: 16px; }

/* PRODUCT PAGE REVIEWS */
.product-reviews { padding: 60px 24px; background: #f9f9f9; }
.product-reviews__inner { max-width: 1200px; margin: 0 auto; }
.reviews-header {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.reviews-score { font-size: 48px; font-weight: 800; line-height: 1; }
.reviews-stars { color: #f4a31a; font-size: 20px; }
.reviews-count { font-size: 13px; color: var(--color-text-light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}
.review-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-card__avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.review-card__name { font-size: 14px; font-weight: 600; }
.review-card__stars { color: #f4a31a; font-size: 12px; }
.review-card__star-empty { color: #d8d8d8; }
.review-card__title { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.review-card__body { font-size: 13px; color: var(--color-text-light); line-height: 1.6; }

/* CONTENT SECTIONS */
.content-section { padding: 60px 24px; max-width: 1200px; margin: 0 auto; }
.content-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.content-section__grid.reverse { direction: rtl; }
.content-section__grid.reverse > * { direction: ltr; }
.content-section__media { border-radius: var(--radius-lg); overflow: hidden; }
.content-section__media img,
.content-section__media video { width: 100%; border-radius: var(--radius-lg); }
.content-section__title { font-size: clamp(20px, 2.5vw, 28px); font-weight: 800; margin-bottom: 16px; line-height: 1.3; }
.content-section__body { font-size: 15px; color: var(--color-text-light); line-height: 1.8; }

/* CUSTOMER PHOTOS */
.customer-photos { padding: 60px 24px; max-width: 1200px; margin: 0 auto; }
.customer-photos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.customer-photos__item { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 0.8; }
.customer-photos__item img { width: 100%; height: 100%; object-fit: cover; }
.customer-photo__caption { font-size: 12px; color: var(--color-text-light); margin-top: 8px; text-align: center; }

/* BOTTOM SCROLLING BAR */
.product-scroll-bar {
  background: #dcacae;
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
}
.product-scroll-bar__track {
  display: flex;
  animation: marquee 20s linear infinite;
  width: max-content;
  white-space: nowrap;
}
.product-scroll-bar__item {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 40px;
}
.product-scroll-bar__item::after {
  content: '✦';
  margin-left: 40px;
}

/* COLLECTION PAGE */
.collection-page { padding: 40px 24px 60px; max-width: 1400px; margin: 0 auto; }
.collection-page__header { margin-bottom: 32px; }
.collection-page__title { font-size: 28px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.collection-page__count { font-size: 14px; color: var(--color-text-light); }

/* STICKY ATC BAR (mobile) */
.sticky-atc {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 12px 20px;
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}
.sticky-atc.visible { transform: translateY(0); }
body:has(.sticky-atc.visible) {
  padding-bottom: 72px;
}
.sticky-atc__btn {
  width: 100%;
  background: #dcacae;
  color: #fff;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sticky-atc__sep { opacity: 0.7; font-weight: 400; }
.sticky-atc__price { font-weight: 800; }

/* SAMMENLIGNINGSTABELL: Zarina vs Barberhøvel */
.zh-compare {
  margin: 24px 0 20px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.zh-compare__title {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000;
  margin-bottom: 12px;
  text-align: center;
}
.zh-compare__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid #e8e0dd;
  border-radius: 10px;
  overflow: hidden;
  font-size: 13px;
}
.zh-compare__table th,
.zh-compare__table td {
  padding: 11px 10px;
  text-align: center;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  border-bottom: 1px solid #f0e8e5;
}
.zh-compare__table tbody tr:last-child td { border-bottom: none; }
.zh-compare__table th {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #faf7f5;
  color: var(--color-text-light);
  padding: 12px 10px;
}
.zh-compare__table th.zh-compare__zanna {
  color: #1a1a1a;
  background: #fbeeee;
}
.zh-compare__table td:first-child,
.zh-compare__table th:first-child {
  text-align: left;
  padding-left: 14px;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 13px;
}
.zh-compare__table th:first-child { font-weight: 700; }
.zh-compare__yes {
  color: #2e7d32;
  font-weight: 700;
  background: #fbeeee;
}
.zh-compare__no {
  color: #c0392b;
  font-weight: 700;
}
.zh-compare__table td.zh-compare__yes:not(:nth-child(2)) { background: transparent; }
/* Sørg for at Zarina-kolonnen alltid har lett rosa bakgrunn */
.zh-compare__table td:nth-child(2),
.zh-compare__table th:nth-child(2) {
  background: #fbeeee;
}

/* BREADCRUMB */
.breadcrumb { font-size: 12px; color: var(--color-text-light); margin-bottom: 24px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb a:hover { color: #000; }

/* TRUST BADGES */
.trust-badges { display: flex; gap: 16px; flex-wrap: wrap; margin: 8px 0 4px; justify-content: center; }
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--color-text-light); }
.trust-badge-icon { font-size: 16px; }

/* MINI REVIEWS SWIPER (under ATC) — kompakt, Lunero-stil */
.mini-swiper {
  margin: 10px 0 4px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  max-width: 100%;
  overflow: hidden;
}

.mini-swiper__viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.mini-swiper__track {
  display: flex;
  width: 100%;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.mini-swiper__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  padding: 2px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mini-swiper__photo {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: #f8f0ee;
}
.mini-swiper__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.mini-swiper__content {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column;
  gap: 4px;
}
.mini-swiper__text {
  font-size: 13px; line-height: 1.4; color: var(--color-text);
  margin: 0;
}
.mini-swiper__author {
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap;
}
.mini-swiper__name { font-size: 12px; font-weight: 700; color: #1a1a1a; }
.mini-swiper__s-stars { color: #f4a31a; font-size: 11px; letter-spacing: 1px; }
@media (max-width: 600px) {
  .mini-swiper__photo { width: 52px; height: 52px; }
  .mini-swiper__text { font-size: 12.5px; }
}

.mini-swiper__nav {
  display: flex; align-items: center; justify-content: center;
  margin-top: 8px;
  gap: 10px;
}
.mini-swiper__arrow {
  width: 24px; height: 24px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  -webkit-tap-highlight-color: transparent;
  padding: 0;
}
.mini-swiper__arrow svg { width: 12px; height: 12px; }
.mini-swiper__arrow:hover { background: #f5f5f5; border-color: #c0c0c0; }
.mini-swiper__arrow:disabled { opacity: 0.35; cursor: not-allowed; }
.mini-swiper__dots {
  display: flex; align-items: center; gap: 6px;
  flex: 1; justify-content: center;
}
.mini-swiper__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #d4d4d4;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}
.mini-swiper__dot.is-active { background: #dcacae; width: 18px; border-radius: 3px; }
@media (max-width: 600px) {
  .mini-swiper { padding: 14px; margin: 14px 0; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-page__grid { grid-template-columns: 1fr; gap: 32px; }
  .content-section__grid { grid-template-columns: 1fr; gap: 32px; }
  .content-section__grid.reverse { direction: ltr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .customer-photos__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .header__inner { padding: 0 16px; height: 56px; }
  .header__nav { display: none; }
  .section { padding: 40px 16px; }
  .product-page { padding: 24px 16px 80px; }
  .hero__media img, .hero__media video { height: 55vh; }
  .footer__grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cart-drawer { width: 100vw; }

  /* === MOBIL HANDLEKURV: mye luft, rolig hierarki === */
  .cart-drawer__header { padding: 20px 20px 18px; border-bottom: none; }
  .cart-drawer__title { font-size: 15px; }
  .cart-drawer__close {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; padding: 0; margin-right: -8px;
  }

  .cart-drawer__urgency { padding: 9px 16px; font-size: 11.5px; }
  .cart-drawer__urgency strong { font-size: 12px; }

  .cart-drawer__body { padding: 24px 20px; }

  .cart-item {
    grid-template-columns: 84px 1fr auto;
    gap: 16px;
    padding: 0 0 28px;
    border-bottom: none;
    align-items: start;
  }
  .cart-item__img { width: 84px; height: 84px; }
  .cart-item__title { font-size: 15px; line-height: 1.35; }
  .cart-item__qty { gap: 12px; margin-top: 14px; }
  .cart-item__qty button {
    width: 34px; height: 34px; font-size: 18px;
  }
  .cart-item__qty span { min-width: 20px; text-align: center; font-size: 15px; }
  .cart-item__remove {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; padding: 0; margin: -4px -8px 0 0;
  }

  .cart-drawer__footer .cart-drawer__addons-stack {
    padding: 0 0 12px;
  }
  .cart-drawer__insurance,
  .cart-drawer__brush-heads {
    padding: 12px 14px;
  }

  /* Footer: kort og lett — la body få vokse */
  .cart-drawer__footer {
    padding: 16px 20px max(16px, env(safe-area-inset-bottom));
    border-top: 1px solid #f0eaea;
  }
  .cart-checkout-block { --cart-btn-radius: 10px; margin-bottom: 12px; }
  .cart-total {
    padding: 16px 18px 0;
    padding-bottom: 74px;
    gap: 8px;
    border-radius: 14px 14px var(--cart-btn-radius) var(--cart-btn-radius);
  }
  .cart-total__compare,
  .cart-total__amount { font-size: 22px; }
  .cart-checkout-block .cart-checkout-btn { padding: 18px; font-size: 14.5px; }
  .cart-payment-icons { margin-top: 8px; opacity: 0.9; }

  .newsletter__form { flex-direction: column; }
  .newsletter__input { border-right: 1px solid #ccc; border-bottom: none; border-radius: var(--radius) var(--radius) 0 0; }
  .newsletter__btn { border-radius: 0 0 var(--radius) var(--radius); }
  .reviews-grid { grid-template-columns: 1fr; }
  .package-options { gap: 8px; }
}

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lightbox__close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 32px; cursor: pointer;
  background: rgba(0,0,0,0.4); border-radius: 50%;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(60px);
  opacity: 0;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  z-index: 3000;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}
.toast.visible { transform: translateX(-50%) translateY(0); opacity: 1; }

/* PAGE TRANSITIONS */
.page-enter { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* USP BAR */
.usp-bar {
  background: #fff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 24px;
}
.usp-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.usp-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.usp-bar__icon {
  font-size: 24px;
  flex-shrink: 0;
}
.usp-bar__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
}
.usp-bar__sub {
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 2px;
}
@media (max-width: 768px) {
  .usp-bar__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .usp-bar__inner { grid-template-columns: 1fr; }
}

/* CONTENT SECTION BUTTON */
.content-section__btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: var(--color-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.content-section__btn:hover {
  background: var(--color-accent-hover);
}
.content-section--alt {
  background: #f9f9f9;
  max-width: none;
  padding: 60px 24px;
}
.content-section--alt > .content-section__grid {
  max-width: 1200px;
  margin: 0 auto;
}

/* HOME PRODUCT SECTION */
.home-product {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 20px 32px;
}
.home-product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.home-product__main-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}
.home-product__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.home-product__thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
}
.home-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-product__thumb.active {
  border-color: var(--color-accent);
}
.home-product__title {
  font-size: 28px;
  font-weight: 800;
  margin: 12px 0 16px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .home-product__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .home-product { padding: 14px 12px 28px; }
  .home-product__title { font-size: 22px; margin: 6px 0; }
  .home-product__info { padding: 0; }
  /* Strammere mellomrom på mobil */
  .product-info__rating { margin-bottom: 6px; }
  .package-option__bundle-thumb img {
    max-height: 72px;
    max-width: 58px;
    min-height: 56px;
  }
  .package-option[data-qty="3"] .package-option__bundle-thumb img {
    max-width: 86px;
    max-height: 72px;
    min-height: 56px;
    object-position: left center;
  }
  .product-info__title { margin-bottom: 6px; font-size: 20px; }
  .product-info__prices { margin-bottom: 4px; }
  .product-info__bullets { margin: 6px 0 8px; gap: 2px; }
  .product-info__bullets li, .product-info__bullets p { font-size: 14px; line-height: 1.4; }
  .package-selector { margin: 10px 0; }
  .package-option { padding: 12px 12px; }
  .package-options { gap: 8px; }
  .offer-heading { margin-bottom: 8px; }
  .product-info__atc { padding: 16px; font-size: 16px; margin: 8px 0 6px; }
  .product-info__guarantee { margin: 8px 0; font-size: 12px; }
  .trust-badges { gap: 10px; margin: 8px 0 4px; }
  .trust-badge { font-size: 11px; }
  .color-selector { margin: 8px 0 10px; }
  .product-accessory { margin: 8px 0; }
  .mini-swiper { padding: 12px; margin: 10px 0 4px; }
  .mini-reviews__header { padding-bottom: 10px; margin-bottom: 10px; }
  .mini-reviews__list { gap: 10px; }
  .stock-indicator { margin: 8px 0 2px; }
  .home-product__thumbs { gap: 6px; margin-top: 6px; }
  .home-product__thumb { width: 56px; height: 56px; }

  /* Produktgalleri thumbs — horisontal scroll i stedet for rotete wrap */
  .product-gallery__thumbs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
    scroll-snap-type: x mandatory;
  }
  .product-gallery__thumbs::-webkit-scrollbar { display: none; }
  .product-gallery__thumb {
    width: 64px; height: 64px;
    scroll-snap-align: start;
  }

  /* Sammenligningstabell — kompakt, ingen pris-wrap */
  .zh-compare { margin: 16px 0 14px; max-width: 100%; }
  .zh-compare__title { font-size: 13px; margin-bottom: 10px; }
  .zh-compare__table { font-size: 12px; table-layout: fixed; width: 100%; }
  .zh-compare__table th,
  .zh-compare__table td {
    padding: 10px 4px;
    font-size: 11.5px;
    word-break: normal;
    overflow-wrap: break-word;
    line-height: 1.3;
  }
  .zh-compare__table th { font-size: 10px; padding: 10px 4px; letter-spacing: 0.02em; }
  .zh-compare__table th:first-child,
  .zh-compare__table td:first-child {
    padding-left: 8px;
    font-size: 11.5px;
    width: 50%;
  }
  .zh-compare__table th:nth-child(2),
  .zh-compare__table td:nth-child(2),
  .zh-compare__table th:nth-child(3),
  .zh-compare__table td:nth-child(3) { width: 25%; padding-left: 2px; padding-right: 2px; }
  .zh-compare__table td.zh-compare__yes,
  .zh-compare__table td.zh-compare__no { font-size: 12px; }

  /* Farge-knapper — la wrappe pent */
  .color-options { gap: 6px; }
  .color-option { padding: 6px 10px 6px 6px; max-width: 100%; }
  .color-option__swatch { width: 20px; height: 20px; }
  .color-option__name { font-size: 12px; }
  .color-option--soldout .color-option__name::after {
    font-size: 9px; padding: 1px 5px;
  }

  /* Pakke-velger — sikre at priser ikke kuttes */
  .package-option { padding: 12px 12px; min-width: 0; }
  .package-option__left { min-width: 0; flex-shrink: 1; }
  .package-option__qty { font-size: 16px; }
  .package-option__prices { flex-shrink: 0; min-width: 0; }
  .package-option__price { font-size: 16px; }
  .package-option__old { font-size: 12px; }
  .package-option__popular-badge { font-size: 9px; padding: 3px 8px; right: 10px; }

  /* Live proof — la ikke teksten sprenge */
  .live-proof, .live-proof__row { max-width: 100%; }
  .live-proof__row { font-size: 12.5px; flex-wrap: wrap; }

  /* Pristekst + spar-badge — la wrappe */
  .product-info__prices { flex-wrap: wrap; gap: 8px; }

  /* Sticky ATC — beholde innholdet tydelig på smale skjermer */
  .sticky-atc { padding: 10px 14px; padding-bottom: max(10px, env(safe-area-inset-bottom)); }
  .sticky-atc__btn { padding: 14px 10px; font-size: 13.5px; gap: 6px; }
  .sticky-atc__sep { display: inline; }

  /* Villkor-tekst — wrappe pent */
  .product-info__terms { font-size: 12px; line-height: 1.45; word-break: normal; overflow-wrap: anywhere; }

  /* Betalingsikoner — wrap til 2 rader hvis nødvendig */
  .payment-icons-static { flex-wrap: wrap; justify-content: center; }
}

/* Veldig smale skjermer (iPhone SE/mini ≤380px) */
@media (max-width: 380px) {
  .product-page { padding: 16px 12px 80px; }
  .zh-compare__table th:first-child,
  .zh-compare__table td:first-child { font-size: 11px; width: 50%; padding-left: 6px; }
  .zh-compare__table th { font-size: 9.5px; padding: 9px 3px; }
  .zh-compare__table td { padding: 9px 3px; }
  .zh-compare__table td.zh-compare__yes,
  .zh-compare__table td.zh-compare__no { font-size: 11px; }
  .color-option__name { font-size: 11.5px; }
  .color-option__swatch { width: 18px; height: 18px; }
  .product-gallery__thumb { width: 58px; height: 58px; }
  .package-option__price { font-size: 14.5px; }
  .package-option__old { font-size: 11.5px; }
  .package-option__qty { font-size: 14.5px; }
  .sticky-atc__btn { padding: 14px 8px; font-size: 12.5px; letter-spacing: 0.04em; }
}

/* SWIPE SUPPORT */
.product-gallery__main,
#HomeMainImg {
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}
.product-gallery__main:active,
#HomeMainImg:active {
  cursor: grabbing;
}

/* REVIEWS CAROUSEL */
.reviews-carousel {
  overflow: hidden;
  padding: 16px 0 40px;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.reviews-carousel__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviewsScroll 240s linear infinite;
}
@media (hover: hover) {
  .reviews-carousel__track:hover {
    animation-play-state: paused;
  }
}
.reviews-carousel .review-card {
  width: 300px;
  flex-shrink: 0;
}
@keyframes reviewsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* PHOTOS CAROUSEL */
.photos-carousel {
  overflow: hidden;
  padding: 16px 0 40px;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.photos-carousel__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: photosScroll 24s linear infinite;
}
@media (hover: hover) {
  .photos-carousel__track:hover {
    animation-play-state: paused;
  }
}
.photos-carousel__item {
  width: 280px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photos-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes photosScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* PAYMENT ICONS — uniform 38×24 badge size (payment_icons repo) */
.pay-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pay-icon {
  width: 40px;
  height: 25px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
}
.pay-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.product-payment-icons .pay-icons {
  justify-content: center;
  gap: 10px;
}

/* SilkTrim PDP — luftigere tilbud + kjøpsblokk */
.product-page--glowtrim .package-selector .offer-heading {
  margin-top: 32px;
  margin-bottom: 14px;
}
.product-page--glowtrim .package-selector {
  margin-bottom: 0;
}
.product-page--glowtrim .package-selector .stock-indicator {
  margin-top: 36px;
  margin-bottom: 0;
}
.product-page--glowtrim .guarantee-badge {
  margin: 12px 0 12px;
}
.product-page--glowtrim .product-info__atc {
  margin-top: 0;
  margin-bottom: 14px;
}
.product-page--glowtrim .product-payment-icons {
  margin: 0 0 36px;
}
.product-page--glowtrim .mini-swiper {
  margin-top: 0;
}
.product-page--glowtrim .mini-swiper__slide[data-scroll-to-review] {
  cursor: pointer;
}
.mini-swiper__star-empty { color: #ddd; }
.glowtrim-review--highlight {
  animation: glowtrimReviewHighlight 2s ease;
}
@keyframes glowtrimReviewHighlight {
  0%, 100% { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04); }
  15%, 85% { box-shadow: 0 0 0 2px #dcacae, 0 4px 16px rgba(220, 172, 174, 0.35); }
}
.guarantee-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1.5px solid #e8d8d0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fdf8f7 0%, #fff 100%);
  text-align: left;
}
.guarantee-badge__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  display: block;
  line-height: 0;
  color: #dcacae;
}
.guarantee-badge__icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
.guarantee-badge__copy {
  flex: 1;
  min-width: 0;
}
.guarantee-badge__title {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a1a;
}
.guarantee-badge__text {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: #666;
}
@media (max-width: 768px) {
  .product-page--glowtrim .package-selector .offer-heading {
    margin-top: 24px;
    margin-bottom: 12px;
  }
  .product-page--glowtrim .package-selector .stock-indicator {
    margin-top: 28px;
  }
  .product-page--glowtrim .guarantee-badge {
    margin: 10px 0 10px;
    padding: 12px 14px;
    gap: 12px;
  }
  .product-page--glowtrim .product-payment-icons {
    margin-bottom: 28px;
  }
  .guarantee-badge__title { font-size: 13px; }
  .guarantee-badge__text { font-size: 12px; }
}
/* SilkTrim — zon-par (armhålor + bikinilinje) */
.glowtrim-zone {
  padding: 48px 20px 20px;
  background: #fdf8f8;
}
.glowtrim-zone--intro {
  padding-top: 20px;
}
.glowtrim-zone--has-next { padding-bottom: 12px; }
.glowtrim-zone:not(.glowtrim-zone--has-next) {
  padding-top: 12px;
  padding-bottom: 56px;
}
.glowtrim-zone__inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.glowtrim-zone__series {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b07a7c;
  text-align: center;
}
.glowtrim-zone__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  width: 100%;
}
.glowtrim-zone__icon { line-height: 0; }
.glowtrim-zone__icon img {
  width: 72px;
  height: auto;
  display: block;
}
.glowtrim-zone__title {
  margin: 0;
  font-size: clamp(22px, 5.5vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  color: #1a1a1a;
}
.glowtrim-zone__media {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}
.glowtrim-zone__media img {
  width: 100%;
  height: auto;
  display: block;
}
.glowtrim-zone__body {
  text-align: center;
  padding: 0 4px;
  width: 100%;
  font-size: 15px;
  line-height: 1.75;
  color: #555;
}
.glowtrim-zone__body p { margin: 0; }
/* SilkTrim — vertikala kundomdömen */
.glowtrim-reviews {
  padding: 48px 20px 56px;
  background: #fdf8f8;
}
.glowtrim-reviews__inner {
  max-width: 640px;
  margin: 0 auto;
}
.glowtrim-reviews__header {
  margin-bottom: 28px;
  text-align: center;
}
.glowtrim-reviews__label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b07a7c;
}
.glowtrim-reviews__score-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.glowtrim-reviews__score {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: #1a1a1a;
}
.glowtrim-reviews__stars {
  line-height: 1;
}
.glowtrim-reviews__rating-text {
  margin: 8px 0 0;
  font-size: 14px;
  color: #666;
}
.glowtrim-reviews__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.glowtrim-review {
  background: #fff;
  border: 1px solid #efe6e6;
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.glowtrim-review--hidden {
  display: none;
}
.glowtrim-review__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.glowtrim-review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.glowtrim-review__who {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin-bottom: 2px;
}
.glowtrim-review__name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}
.glowtrim-review__verified {
  font-size: 11px;
  font-weight: 600;
  color: #2d8659;
  background: #e8f5ed;
  padding: 2px 8px;
  border-radius: 999px;
}
.glowtrim-review__date {
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
}
.glowtrim-review__stars {
  color: #f4a31a;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.glowtrim-review__star-empty { color: #ddd; }
.glowtrim-review__title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}
.glowtrim-review__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #555;
}
.glowtrim-reviews__actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.glowtrim-reviews__more {
  appearance: none;
  border: 1px solid #d4b8ba;
  background: #fff;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.glowtrim-reviews__more:hover {
  background: #fdf8f8;
  border-color: #b07a7c;
}
.glowtrim-reviews__more[hidden] {
  display: none;
}
.glowtrim-reviews__write {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 0;
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  transition: color 0.2s;
}
.glowtrim-reviews__write:hover {
  color: #b07a7c;
}
@media (min-width: 750px) {
  .glowtrim-reviews { padding: 56px 24px 64px; }
}

.glowtrim-zone--has-next .glowtrim-zone__inner::after {
  content: '';
  display: block;
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, #e8d8d0, transparent);
  margin-top: 4px;
}
@media (min-width: 750px) {
  .glowtrim-zone { padding: 56px 24px 24px; }
  .glowtrim-zone--intro { padding-top: 24px; }
  .glowtrim-zone:not(.glowtrim-zone--has-next) {
    padding-top: 16px;
    padding-bottom: 64px;
  }
  .glowtrim-zone__inner { max-width: 520px; gap: 24px; }
  .glowtrim-zone__icon img { width: 80px; }
}

.cart-payment-icons .pay-icons {
  justify-content: center;
  gap: 6px;
}
.cart-payment-icons .pay-icon {
  width: 34px;
  height: 22px;
}
.footer__payments .pay-icons {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .footer__payments .pay-icons { justify-content: center; }
}

/* URGENCY TIMER BANNER */
.urgency-timer {
  background: #dcacae;
  color: #fff;
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  padding-top: 0;
  padding-bottom: 0;
}
.urgency-timer.visible {
  max-height: 60px;
  opacity: 1;
  padding: 11px 20px;
}
.urgency-timer__fire { font-size: 16px; flex-shrink: 0; }
.urgency-timer__text { line-height: 1.3; }
.urgency-timer__text strong { font-size: 15px; color: #fff; }
.urgency-timer--urgent { background: #c99496; }
.urgency-timer--urgent strong { color: #fff; }
@keyframes urgencyPulse {
  0%, 100% { background: #c99496; }
  50% { background: #dcacae; }
}

/* CART DRAWER URGENCY TIMER */
.cart-drawer__urgency {
  background: #dcacae;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  text-align: center;
  line-height: 1.3;
}
.cart-drawer__urgency.visible { display: flex; }
.cart-drawer__urgency strong { font-size: 13px; color: #fff; }
.cart-drawer__urgency.urgency-timer--urgent { background: #c99496; animation: urgencyPulse 1.2s ease infinite; }

/* VERIFIED PURCHASE BADGE */
.review-card__verified {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: #2d8659;
  background: #e8f5ed;
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: 6px;
  letter-spacing: 0.02em;
  vertical-align: middle;
}

/* GALLERY SKELETON LOADING */
.product-gallery__main, #HomeMainImg {
  position: relative;
  background: #f5f0ee;
}
.product-gallery__main img, #HomeMainImg img {
  transition: opacity 0.25s ease;
}
.product-gallery__main.is-loading::before,
#HomeMainImg.is-loading::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #f5f0ee 0%, #faf6f4 50%, #f5f0ee 100%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.2s ease-in-out infinite;
  z-index: 1;
}
@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* CART BUTTON BUMP ON ATC */
.cart-btn--bump {
  animation: cartBump 0.4s cubic-bezier(0.4, 0, 0.6, 1);
}
@keyframes cartBump {
  0%, 100% { transform: scale(1); }
  30% { transform: scale(1.25); }
  60% { transform: scale(0.95); }
}

/* HAMBURGER (mobile only) */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 28px; height: 28px;
  background: none; border: none;
  padding: 0; cursor: pointer;
}
.header__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* MOBILE NAV DRAWER */
.mobile-nav {
  position: fixed; inset: 0;
  z-index: 1500;
  visibility: hidden;
  pointer-events: none;
}
.mobile-nav.active { visibility: visible; pointer-events: auto; }
.mobile-nav__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav.active .mobile-nav__overlay { opacity: 1; }
.mobile-nav__panel {
  position: absolute; top: 0; left: 0;
  width: 280px; max-width: 85vw;
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.active .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav__brand {
  display: inline-flex;
  align-items: center;
}
.mobile-nav__logo-img {
  max-height: 26px;
  width: auto;
  height: auto;
  display: block;
}
.mobile-nav__close {
  font-size: 28px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  color: #000;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}
.mobile-nav__close:hover,
.mobile-nav__close:focus,
.mobile-nav__close:active {
  color: #000;
}
.mobile-nav__links {
  display: flex; flex-direction: column;
  padding: 12px 0;
  flex: 1;
}
.mobile-nav__links a {
  padding: 14px 22px;
  font-size: 16px; font-weight: 600;
  color: var(--color-text);
  border-bottom: 1px solid #f5efed;
  transition: background var(--transition);
}
.mobile-nav__links a:hover, .mobile-nav__links a:active { background: #fdf5f5; }
.mobile-nav__footer {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding: 20px 22px max(24px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--color-border);
  gap: 16px;
  background: #fff;
}
.mobile-nav__footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav__footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-light);
  text-decoration: none;
}
.mobile-nav__footer-links a:hover,
.mobile-nav__footer-links a:active {
  color: var(--color-text);
}
.mobile-nav__copyright {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--color-text-light);
  margin: 0;
}
.mobile-nav__payments .pay-icons {
  justify-content: flex-start;
  gap: 8px;
}
.mobile-nav__payments .pay-icon img {
  display: block;
  height: 22px;
  width: auto;
}

/* TERMS NOTICE BELOW ATC */
.product-info__terms {
  font-size: 11px;
  color: var(--color-text-light);
  text-align: center;
  margin: 10px 0 14px;
  line-height: 1.5;
}
.product-info__terms a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.product-info__terms a:hover { color: inherit; }

.guarantee-badge__text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Show hamburger on mobile, hide nav links */
@media (max-width: 768px) {
  .header__hamburger { display: flex; }
  .header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .header__nav { display: none; }
}

/* ATC LOADING STATE */
.product-info__atc.is-loading,
.sticky-atc__btn.is-loading {
  opacity: 0.75;
  cursor: wait;
  pointer-events: none;
}

/* MOBILE PERFORMANCE OPTIMIZATIONS */
@media (max-width: 768px) {
  /* Lette skygger og fjern blur */
  .cart-drawer { box-shadow: -2px 0 12px rgba(0,0,0,0.1); }

  /* Saktere/jevnere karuseller */
  .reviews-carousel__track { animation-duration: 300s; }
  .photos-carousel__track { animation-duration: 50s; }
  .product-scroll-bar__track { animation-duration: 30s; }
  .announcement-bar__track { animation-duration: 36s; }

  /* Pause animasjoner når elementet er off-screen */
  .reviews-carousel, .photos-carousel, .product-scroll-bar { content-visibility: auto; contain-intrinsic-size: 400px; }

  /* Hindre dobbeltrykk-zoom + responsive tap på alle interaktive elementer */
  button, a, .product-info__atc, .cart-checkout-btn, .sticky-atc__btn,
  .color-option, .package-option, .home-product__thumb, .product-gallery__thumb,
  .cart-insurance__toggle, .product-accessory, .cart-item__remove {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  /* Mindre tunge gradient/shadow på pakkekort */
  .package-option { transition: border-color 0.15s ease; }

  /* Reduser hero-høyde litt */
  .hero__media img, .hero__media video { height: 50vh; min-height: 320px; }
}

/* Respekter prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reviews-carousel__track, .photos-carousel__track,
  .product-scroll-bar__track, .announcement-bar__track {
    animation: none !important;
  }
}

/* CART INSURANCE ROW */
.cart-insurance {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  margin: 0 16px 12px;
  background: #fdf5f5;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}
.cart-insurance__icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  color: #b07a7c;
  flex-shrink: 0;
}
.cart-insurance__info { flex: 1; }
.cart-insurance__title { font-size: 13px; font-weight: 700; }
.cart-insurance__price { font-size: 13px; color: var(--color-text-light); margin-top: 2px; }

/* Toggle switch */
.cart-insurance__toggle {
  position: relative;
  display: inline-block;
  width: 44px; height: 24px;
  flex-shrink: 0;
}
.cart-insurance__toggle input { opacity: 0; width: 0; height: 0; }
.cart-insurance__slider {
  position: absolute; inset: 0;
  background: #ccc;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.cart-insurance__slider::before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.cart-insurance__toggle input:checked + .cart-insurance__slider { background: #2d8659; }
.cart-insurance__toggle input:checked + .cart-insurance__slider::before { transform: translateX(20px); }
.cart-insurance__toggle input:disabled + .cart-insurance__slider { opacity: 0.6; cursor: wait; }

/* CART ACCESSORY ROW (reuses .cart-insurance__* styles) */
.cart-accessory {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  margin: 0 16px 12px;
  background: #faf7fb;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}
.cart-accessory__img {
  width: 48px; height: 48px;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.cart-accessory__img img {
  width: 100%; height: 100%; object-fit: contain;
}
.cart-accessory__desc {
  font-size: 11px;
  color: var(--color-text-light);
  margin-top: 2px;
  line-height: 1.3;
}
.cart-accessory__price {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-left: auto;
  flex-shrink: 0;
}

/* OFTE KJØPT SAMMEN — kompakt rad under "Till kassan" */
.cart-fbt {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.cart-fbt__heading {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: 8px;
}
.cart-fbt__card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
}
.cart-fbt__img-wrap {
  width: 56px; height: 56px;
  background: #faf7fb;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cart-fbt__img-wrap img {
  width: 90%; height: 90%; object-fit: contain;
}
.cart-fbt__info {
  flex: 1;
  min-width: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.cart-fbt__name {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  line-height: 1.25;
  margin: 0;
}
.cart-fbt__desc {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 11px;
  color: var(--color-text-light);
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-fbt__price {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  margin-top: 2px;
}
.cart-fbt__add {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  border: none;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  flex-shrink: 0;
  transition: transform 0.15s ease, background 0.15s ease;
}
.cart-fbt__add:hover { background: #333; transform: scale(1.08); }
.cart-fbt__add:active { transform: scale(0.94); }
.cart-fbt__add.added { background: #2e7d32; pointer-events: none; }

/* PRODUCT-PAGE ACCESSORY UPSELL */
.product-accessory {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin: 18px 0 8px;
  background: #faf7fb;
  border: 1.5px solid #e8dff0;
  border-radius: 10px;
}
.product-accessory__badge {
  position: absolute;
  top: -9px;
  left: 14px;
  background: #dcacae;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
  white-space: nowrap;
}
.product-accessory .cart-accessory__img {
  width: 56px; height: 56px;
}
.product-accessory .cart-insurance__title {
  font-size: 14px;
}
.product-accessory__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .product-accessory { padding: 12px; gap: 10px; }
  .product-accessory .cart-accessory__img { width: 48px; height: 48px; }
  .product-accessory__price { font-size: 14px; }
}

/* Cart "saved" line */
.package-option__popular-badge--value {
  background: #2d8659;
}

/* SPAR % BADGE PÅ PAKKEVALG — stablet under pris */
.package-option__old-row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin-top: 0;
}
.package-option__save {
  background: #2d8659;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* FARGEVELGER */
/* STANDARD PRODUKT — variantvelger */
.product-variant-picker { margin: 14px 0 16px; }
.product-option {
  border: none;
  margin: 0 0 14px;
  padding: 0;
}
.product-option__label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
  padding: 0;
}
.product-option__values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-option__value {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 6px;
  background: #fff;
  border: 2px solid var(--color-border);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  transition: border-color var(--transition), background var(--transition);
}
.product-option__value:hover:not(:disabled) { border-color: var(--color-text-light); }
.product-option__value.active {
  border-color: #dcacae;
  background: #fdf5f5;
}
.product-option__value--soldout,
.product-option__value:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.product-option__swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.product-page--standard .product-info__description {
  margin-bottom: 4px;
}
.product-page--standard .product-info__atc {
  margin-top: 0;
  margin-bottom: 14px;
}
.product-page--standard .product-payment-icons {
  margin: 0 0 24px;
}

.color-selector { margin: 10px 0 12px; }
.color-selector__label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text);
}
.color-selector__current {
  font-weight: 500;
  color: var(--color-text-light);
  margin-left: 4px;
}
.color-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.color-option {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 8px 14px 8px 8px;
  cursor: pointer;
  transition: border-color var(--transition);
  font-family: inherit;
}
.color-option:hover { border-color: var(--color-text-light); }
.color-option.active {
  border-color: var(--color-accent-dark);
  background: #fdf5f5;
}
.color-option__swatch {
  display: inline-block;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.color-option__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* UTSOLGT FARGEVALG */
.color-option--soldout {
  opacity: 0.55;
  cursor: not-allowed;
  position: relative;
}
.color-option--soldout .color-option__swatch {
  position: relative;
}
.color-option--soldout .color-option__swatch::after {
  content: '';
  position: absolute;
  top: 50%; left: -2px; right: -2px;
  height: 2px;
  background: #1a1a1a;
  transform: rotate(-30deg);
}
.color-option__soldout-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  color: #c0392b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-left: 4px;
  background: rgba(192,57,43,0.1);
  padding: 1px 6px;
  border-radius: 8px;
}

/* ============================================ */
/* PREMIUM HOMEPAGE (zh-*) — Seed-inspirert     */
/* ============================================ */

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

:root {
  --zh-rose: #d9a8aa;
  --zh-rose-soft: #e8c4c5;
  --zh-rose-deep: #8a4f52;
  --zh-rose-darker: #5e3537;
  --zh-cream: #faf3ee;
  --zh-cream-2: #f4e6dd;
  --zh-cream-3: #f0d9d0;
  --zh-dark: #1c1414;
  --zh-text: #2a1f1f;
  --zh-text-light: #8a7a7a;
  --zh-border: #ecd9d4;
}

.zh-serif, .zh-hero__title, .zh-section__title, .zh-pcard__name,
.zh-featured__title, .zh-why__name, .zh-brand__title, .zh-stats__number,
.zh-review__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* HERO */
.zh-hero {
  background: linear-gradient(180deg, var(--zh-cream-2) 0%, var(--zh-cream-3) 50%, #e8b8b0 100%);
  padding: 80px 24px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.zh-hero__deco {
  position: absolute; top: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.4), transparent);
  border-radius: 50%; pointer-events: none;
}
.zh-hero__deco--l { left: -100px; }
.zh-hero__deco--r { right: -100px; top: 30%; }
.zh-hero__inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.zh-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  color: var(--zh-rose-darker);
  padding: 8px 18px; border-radius: 50px;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.6);
}
.zh-hero__title {
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.0;
  max-width: 880px; margin: 0 auto 22px;
  color: var(--zh-rose-darker);
}
.zh-hero__sub {
  font-size: 17px; color: var(--zh-rose-darker);
  max-width: 520px; margin: 0 auto 36px;
  opacity: 0.75;
}
.zh-hero__cta {
  display: inline-block;
  background: var(--zh-rose-darker); color: #fff;
  padding: 18px 42px; border-radius: 50px;
  text-decoration: none; font-weight: 500;
  letter-spacing: 1px; font-size: 14px;
  transition: transform 0.2s, background 0.2s;
}
.zh-hero__cta:hover { background: var(--zh-dark); transform: translateY(-2px); color: #fff; }
.zh-hero__product { margin-top: 50px; display: flex; justify-content: center; }
.zh-hero__product img {
  max-width: 720px; width: 100%; height: auto;
  filter: drop-shadow(0 60px 50px rgba(94,53,55,0.35));
}

/* SECTION GENERIC */
.zh-section { padding: 110px 32px; background: var(--zh-cream); }
.zh-section--alt { background: var(--zh-cream-2); }
.zh-section__inner { max-width: 1200px; margin: 0 auto; }
.zh-section__label {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--zh-rose-deep); margin-bottom: 16px; font-weight: 600;
}
.zh-section__label--light { color: var(--zh-rose-soft); }
.zh-section__title {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05; margin-bottom: 18px;
  color: var(--zh-rose-darker);
}
.zh-section__head {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 28px; margin-bottom: 48px;
}
.zh-section__head--center { display: block; text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; margin-bottom: 56px; }
.zh-section__intro { font-size: 15px; color: var(--zh-text-light); max-width: 380px; text-align: right; }

/* PRODUCT GRID */
.zh-pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.zh-pcard {
  background: var(--zh-cream);
  border-radius: 24px; padding: 24px;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--zh-border);
}
.zh-pcard:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -20px rgba(94,53,55,0.15); }
.zh-pcard__img {
  background: linear-gradient(135deg, var(--zh-cream-3) 0%, var(--zh-rose-soft) 100%);
  aspect-ratio: 1; border-radius: 16px;
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.zh-pcard__img img {
  max-width: 70%; max-height: 80%;
  transition: transform 0.45s cubic-bezier(0.2,0.8,0.2,1);
  filter: drop-shadow(0 20px 30px rgba(94,53,55,0.25));
}
.zh-pcard:hover .zh-pcard__img img {
  transform: scale(1.08) rotate(-4deg);
}
.zh-pcard__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.9); color: var(--zh-rose-darker);
  padding: 4px 10px; border-radius: 50px;
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
}
.zh-pcard__name { font-size: 22px; font-weight: 500; margin-bottom: 4px; color: var(--zh-rose-darker); }
.zh-pcard__desc { font-size: 13px; color: var(--zh-text-light); margin-bottom: 18px; min-height: 38px; line-height: 1.5; }
.zh-pcard__price-row { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.zh-pcard__price { font-weight: 600; font-size: 15px; }
.zh-pcard__compare { font-size: 13px; color: var(--zh-text-light); text-decoration: line-through; }
.zh-pcard__cta {
  background: transparent; color: var(--zh-rose-darker);
  text-align: center; padding: 12px; border-radius: 50px;
  text-decoration: none; font-size: 13px; font-weight: 600;
  margin-top: auto; border: 1.5px solid var(--zh-rose-darker);
  transition: background 0.2s, color 0.2s; letter-spacing: 0.5px;
}
.zh-pcard:hover .zh-pcard__cta { background: var(--zh-rose-darker); color: #fff; }
.zh-pcard--empty { background: transparent; border: 2px dashed rgba(138,79,82,0.2); pointer-events: none; }
.zh-pcard--empty .zh-pcard__img { background: transparent; border: 1.5px dashed rgba(138,79,82,0.2); }
.zh-pcard__placeholder { color: var(--zh-text-light); font-style: italic; font-size: 13px; text-align: center; padding: 30px 0; }

/* FEATURED PRODUCT */
.zh-featured-wrap { background: var(--zh-cream-2); }
.zh-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.zh-featured__visual {
  aspect-ratio: 4/5; border-radius: 24px;
  background: linear-gradient(180deg, var(--zh-cream-3) 0%, #e8b8b0 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  cursor: grab;
}
.zh-featured__hero-img {
  max-width: 62%; max-height: 90%;
  filter: drop-shadow(0 40px 50px rgba(94,53,55,0.3));
  animation: zh-float 5.5s ease-in-out infinite;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease-out;
  opacity: 1;
}
.zh-featured__visual--still { cursor: default; }
.zh-featured__visual--still:hover .zh-featured__hero-img {
  transform: scale(1.05) rotate(-3deg);
}
@keyframes zh-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}
.zh-featured__hint {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.7); backdrop-filter: blur(8px);
  color: var(--zh-rose-darker);
  padding: 6px 14px; border-radius: 50px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  pointer-events: none; opacity: 0.85;
  transition: opacity 0.2s;
}
.zh-featured__visual:hover .zh-featured__hint { opacity: 0; }
.zh-featured__badge {
  display: inline-block; background: var(--zh-cream); color: var(--zh-rose-darker);
  padding: 6px 14px; border-radius: 50px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 600; margin-bottom: 18px;
}
.zh-featured__title { font-size: clamp(34px, 4vw, 48px); line-height: 1.05; margin-bottom: 14px; color: var(--zh-rose-darker); }
.zh-featured__rating { font-size: 13px; color: var(--zh-text-light); margin-bottom: 18px; }
.zh-stars { color: #f4a31a; letter-spacing: 1px; }
.zh-featured__prices { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.zh-featured__price { font-size: 30px; font-weight: 600; }
.zh-featured__compare { text-decoration: line-through; color: var(--zh-text-light); }
.zh-featured__save { background: #2d8659; color: #fff; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 4px; letter-spacing: 0.5px; }
.zh-featured__bullets { margin-bottom: 22px; font-size: 14px; color: var(--zh-text); }
.zh-featured__bullets p, .zh-featured__bullets li { margin: 6px 0; line-height: 1.5; }
.zh-featured__bullets ul { list-style: none; padding: 0; }
.zh-atc {
  width: 100%; background: var(--zh-rose-darker); color: #fff;
  padding: 18px; border: none; border-radius: 50px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; font-size: 13px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 10px 24px rgba(94,53,55,0.25);
  margin: 16px 0 8px;
}
.zh-atc:hover { background: var(--zh-dark); transform: translateY(-1px); }

/* WHY */
.zh-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.zh-why__card { padding: 40px 32px; background: #fff; border-radius: 24px; border: 1px solid var(--zh-border); }
.zh-why__icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--zh-cream-3); display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 24px;
}
.zh-why__name { font-size: 26px; margin-bottom: 10px; color: var(--zh-rose-darker); font-weight: 500; }
.zh-why__text { font-size: 14px; color: var(--zh-text-light); line-height: 1.7; }

/* BRAND STATEMENT */
.zh-brand { background: var(--zh-rose-darker); color: var(--zh-cream); text-align: center; padding: 140px 24px; position: relative; overflow: hidden; }
.zh-brand__deco { position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(217,168,170,0.15), transparent); border-radius: 50%; }
.zh-brand__inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.zh-brand__title { font-size: clamp(40px, 6vw, 72px); line-height: 1.05; margin: 14px auto 24px; color: var(--zh-cream); }
.zh-brand__sub { font-size: 17px; max-width: 480px; margin: 0 auto 36px; opacity: 0.75; }
.zh-brand__cta {
  display: inline-block; background: var(--zh-cream); color: var(--zh-rose-darker);
  padding: 16px 36px; border-radius: 50px;
  text-decoration: none; font-weight: 600; letter-spacing: 1px; font-size: 13px;
}
.zh-brand__cta:hover { background: #fff; color: var(--zh-rose-darker); }

/* STATS */
.zh-stats { text-align: center; padding: 100px 24px; background: var(--zh-cream); }
.zh-stats__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 14vw, 180px); font-weight: 300;
  color: var(--zh-rose-darker); line-height: 0.9;
  margin-bottom: 24px; letter-spacing: -0.04em;
}
.zh-stats__caption { font-size: 19px; max-width: 520px; margin: 0 auto; color: var(--zh-text-light); }

/* REVIEWS */
.zh-reviews { background: var(--zh-cream-2); }
.zh-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.zh-review { background: var(--zh-cream); padding: 32px; border-radius: 20px; }
.zh-review__stars { color: #f4a31a; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.zh-review__text { font-size: 18px; line-height: 1.6; margin-bottom: 18px; font-style: italic; color: var(--zh-rose-darker); }
.zh-review__author { font-size: 13px; font-weight: 600; }
.zh-review__verified { color: #2d8659; font-size: 11px; font-weight: 500; margin-left: 8px; letter-spacing: 0.5px; }

/* COLOR SELECTOR overrides for featured */
.zh-featured__info .color-selector { margin: 14px 0 18px; }
.zh-featured__info .color-selector__label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }

/* PACKAGE selector tighter in featured */
.zh-featured__info .package-selector { margin: 16px 0; }

/* MOBILE */
@media (max-width: 768px) {
  .zh-hero { padding: 50px 18px 0; }
  .zh-hero__product img { max-width: 320px; }
  .zh-section { padding: 60px 18px; }
  .zh-pgrid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .zh-pcard { padding: 16px; border-radius: 18px; }
  .zh-pcard__name { font-size: 18px; }
  .zh-featured { grid-template-columns: 1fr; gap: 28px; }
  .zh-featured__visual { aspect-ratio: 1; }
  .zh-why__grid { grid-template-columns: 1fr; gap: 14px; }
  .zh-why__card { padding: 28px 24px; }
  .zh-brand { padding: 80px 20px; }
  .zh-stats { padding: 60px 20px; }
  .zh-reviews__grid { grid-template-columns: 1fr; gap: 14px; }
  .zh-review { padding: 24px; }
  .zh-review__text { font-size: 16px; }
  .zh-section__head { display: block; }
  .zh-section__intro { text-align: left; margin-top: 8px; }
}

/* ============================================ */
/* HOMEPAGE V2 — SilkTrim lifestyle redesign    */
/* ============================================ */

:root {
  --zh-sand: #e6ddd4;
  --zh-sand-deep: #d9cfc4;
  --zh-blush: #c9a8a8;
}

/* Hero split */
.zh-hero--v2 {
  background: linear-gradient(135deg, var(--zh-cream) 0%, var(--zh-sand) 55%, var(--zh-cream-3) 100%);
  padding: clamp(48px, 8vw, 100px) clamp(20px, 5vw, 48px) clamp(40px, 6vw, 72px);
  text-align: left;
  overflow: hidden;
}
.zh-hero--v2 .zh-hero__deco { display: none; }
.zh-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.zh-hero--v2 .zh-hero__badge {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.65);
}
.zh-hero--v2 .zh-hero__title {
  margin: 0 0 18px;
  text-align: left;
  max-width: none;
  font-size: clamp(36px, 5.5vw, 68px);
}
.zh-hero--v2 .zh-hero__sub {
  margin: 0 0 28px;
  text-align: left;
  max-width: 480px;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
}
.zh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.zh-hero__cta--ghost {
  background: transparent;
  color: var(--zh-rose-darker);
  border: 1.5px solid var(--zh-rose-darker);
  box-shadow: none;
}
.zh-hero__cta--ghost:hover {
  background: var(--zh-rose-darker);
  color: #fff;
}
.zh-hero__trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--zh-rose-deep);
}
.zh-hero__trust li::before {
  content: '✓ ';
  color: #2d8659;
}
.zh-hero--v2 .zh-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.zh-hero--v2 .zh-hero__cta {
  display: inline-block;
  margin-top: 4px;
  margin-bottom: 0;
}
.zh-hero--v2 .zh-hero__trust {
  margin-top: clamp(32px, 4vw, 44px);
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  max-width: 420px;
}
.zh-hero--v2 .zh-hero__trust li {
  display: block;
  line-height: 1.4;
}
.zh-hero__media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(94, 53, 55, 0.28);
}
.zh-hero__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 1 / 1;
}

/* Colors section */
.zh-colors {
  background: var(--zh-sand);
  padding: clamp(64px, 9vw, 110px) clamp(20px, 5vw, 48px);
}
.zh-colors__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.zh-colors__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--zh-text-light);
  margin: 0 0 24px;
  max-width: 420px;
}
.zh-colors__media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(60, 40, 40, 0.2);
}
.zh-colors__media img {
  width: 100%;
  height: auto;
  display: block;
}
.zh-colors__swatches {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}
.zh-colors__swatches li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--zh-rose-darker);
}
.zh-colors__swatches span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* SilkTrim feature */
.zh-silktrim {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.zh-silktrim__media {
  background: linear-gradient(160deg, var(--zh-cream-3) 0%, var(--zh-sand) 100%);
  border-radius: 28px;
  padding: clamp(32px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.zh-silktrim__media img {
  max-width: 78%;
  filter: drop-shadow(0 32px 40px rgba(94, 53, 55, 0.22));
}
.zh-silktrim__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  margin: 0 0 10px;
  color: var(--zh-rose-darker);
}
.zh-silktrim__rating {
  font-size: 13px;
  color: var(--zh-text-light);
  margin-bottom: 16px;
}
.zh-silktrim__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--zh-text);
  margin-bottom: 20px;
}
.zh-silktrim__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.zh-silktrim__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--zh-text);
}
.zh-silktrim__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2d8659;
  font-weight: 700;
}
.zh-silktrim__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.zh-silktrim__price {
  font-size: 28px;
  font-weight: 700;
  color: var(--zh-rose-darker);
}
.zh-silktrim__compare {
  font-size: 16px;
  text-decoration: line-through;
  color: var(--zh-text-light);
}
.zh-silktrim__cta { display: inline-block; width: auto; min-width: 240px; text-align: center; }
.zh-silktrim__note {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--zh-text-light);
  letter-spacing: 0.04em;
}

/* Tre steg — minimal horisontal flyt */
.zh-steps {
  background: var(--zh-cream-2);
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 48px);
}
.zh-steps__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.zh-steps__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.zh-steps__label {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--zh-rose-deep);
}
.zh-steps__title {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--zh-rose-darker);
}
.zh-steps__flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.zh-steps__item {
  flex: 1 1 200px;
  max-width: 300px;
  text-align: center;
  padding: 0 clamp(16px, 3vw, 32px);
}
.zh-steps__index {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px solid var(--zh-rose-darker);
  font-size: 14px;
  font-weight: 600;
  line-height: 34px;
  color: var(--zh-rose-darker);
}
.zh-steps__name {
  margin: 0 0 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--zh-rose-darker);
}
.zh-steps__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--zh-text-light);
}
.zh-steps__dot {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 15px;
  border-radius: 50%;
  background: var(--zh-rose-soft);
  align-self: flex-start;
}

/* Brand split */
.zh-brand--split {
  padding: 0;
  text-align: left;
  background: var(--zh-rose-darker);
}
.zh-brand__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}
.zh-brand--split .zh-brand__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  width: 100%;
}
.zh-brand--split .zh-brand__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  aspect-ratio: 1 / 1;
}
.zh-brand--split .zh-brand__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 88px) clamp(32px, 6vw, 72px);
}
.zh-brand--split .zh-brand__title {
  text-align: left;
  margin-left: 0;
}
.zh-brand--split .zh-brand__sub {
  margin-left: 0;
  text-align: left;
}
.zh-brand--split .zh-brand__deco { display: none; }

/* Newsletter on homepage */
.zh-newsletter {
  background: var(--zh-cream-2);
  padding: clamp(64px, 8vw, 100px) 24px;
  text-align: center;
  border-top: 1px solid var(--zh-border);
}
.zh-newsletter .newsletter__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--zh-rose-darker);
  margin-bottom: 12px;
}
.zh-newsletter .newsletter__sub {
  color: var(--zh-text-light);
  margin-bottom: 28px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.zh-newsletter .newsletter__form {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.zh-newsletter .newsletter__input {
  flex: 1 1 220px;
  padding: 14px 18px;
  border-radius: 50px;
  border: 1px solid var(--zh-border);
}
.zh-newsletter .newsletter__btn {
  background: var(--zh-rose-darker);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 600;
  cursor: pointer;
}
.zh-newsletter .newsletter__btn:hover {
  background: var(--zh-dark);
}

@media (max-width: 900px) {
  .zh-hero__grid,
  .zh-colors__inner,
  .zh-silktrim,
  .zh-brand__grid {
    grid-template-columns: 1fr;
  }
  .zh-hero--v2 { text-align: center; }
  .zh-hero--v2 .zh-hero__title,
  .zh-hero--v2 .zh-hero__sub { text-align: center; margin-left: auto; margin-right: auto; }
  .zh-hero__actions { justify-content: center; }
  .zh-hero--v2 .zh-hero__copy { align-items: center; }
  .zh-hero--v2 .zh-hero__trust {
    align-items: center;
    text-align: center;
    margin-top: 36px;
  }
  .zh-hero__media { order: -1; max-width: 420px; margin: 0 auto; }
  .zh-colors__copy { text-align: center; }
  .zh-colors__text { margin-left: auto; margin-right: auto; }
  .zh-colors__swatches { justify-content: center; }
  .zh-silktrim__media { order: -1; min-height: 280px; }
  .zh-steps__flow {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
  .zh-steps__dot { display: none; }
  .zh-steps__item { max-width: 360px; padding: 0; }
  .zh-brand--split .zh-brand__media {
    aspect-ratio: 1 / 1;
    max-height: none;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
  .zh-brand--split .zh-brand__copy { text-align: center; align-items: center; }
  .zh-brand--split .zh-brand__title,
  .zh-brand--split .zh-brand__sub { text-align: center; margin-left: auto; margin-right: auto; }
}

/* Nyhetsbrev — full bredde e-postfelt på mobil */
@media (max-width: 749px) {
  .zh-newsletter .newsletter__form {
    width: 100%;
    max-width: none;
  }
  .zh-newsletter .newsletter__input {
    width: 100%;
    flex: 1 1 100%;
    box-sizing: border-box;
  }
}
