/** Shopify CDN: Minification failed

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

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

html {
  scroll-behavior: smooth;
  max-width: 100%;
  width: 100%;
}
body {
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}
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; }
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 a {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b07a7c;
}
.header__logo img { max-height: 40px; margin: 0 auto; }
.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); }

/* 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-subtotal { display: flex; justify-content: space-between; margin-bottom: 14px; font-weight: 600; font-size: 15px; }
.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 { display: flex; gap: 6px; justify-content: center; margin-top: 12px; flex-wrap: wrap; }
.cart-payment-icons span {
  font-size: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 2px 7px;
  color: #555;
  font-weight: 600;
}

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

/* FOOTER */
.footer {
  border-top: 1px solid var(--color-border);
  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-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.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: 32px; }
.footer__copyright { font-size: 12px; color: var(--color-text-light); }
.footer__payments { display: flex; gap: 6px; flex-wrap: wrap; }
.footer__payments span {
  font-size: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 3px 8px;
  color: #555;
  font-weight: 600;
}

/* 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 { color: #f4a31a; font-size: 14px; letter-spacing: 1px; }
.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__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 10px;
  display: flex; flex-direction: column; gap: 2px;
}
.product-info__bullets li, .product-info__bullets p { font-size: 15px; line-height: 1.5; display: flex; align-items: center; gap: 8px; }

/* 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: center; justify-content: space-between; gap: 12px;
}
.package-option__title { font-size: 16px; font-weight: 700; color: #1a1a1a; }
.package-option__tag { font-size: 12px; color: var(--color-text-light); margin-top: 2px; }
.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--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: 12px; }
.package-option__radio {
  width: 20px; height: 20px;
  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 { text-align: right; }
.package-option__price { font-size: 18px; font-weight: 800; color: #dcacae; }
.package-option__old { font-size: 14px; color: var(--color-text-light); text-decoration: line-through; }

.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 { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.product-payment-icons span {
  font-size: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 3px 8px;
  color: #555;
  font-weight: 600;
}

/* 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: Zanna 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 Zanna-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;
  }

  /* Insurance — luftigere, ikke klemt opp mot produktet */
  .cart-insurance, .cart-accessory {
    margin: 8px 20px 0;
    padding: 16px;
    gap: 14px;
    border-radius: 12px;
  }
  .cart-insurance__icon { width: 32px; height: 32px; }
  .cart-insurance__icon svg { width: 26px; height: 26px; }
  .cart-insurance__title { font-size: 13px; }
  .cart-insurance__price { font-size: 12px; margin-top: 3px; }

  /* 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-saved { margin-bottom: 6px; font-size: 13px; }
  .cart-subtotal { font-size: 17px; margin-bottom: 12px; }
  .cart-checkout-btn { padding: 17px; font-size: 14.5px; border-radius: 10px; }
  .cart-payment-icons { margin-top: 10px; gap: 5px; opacity: 0.85; }
  .cart-payment-icons .pay-icon img { height: 18px !important; }

  .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);
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  z-index: 3000;
  transition: transform 0.3s ease;
  white-space: nowrap;
}
.toast.visible { transform: translateX(-50%) translateY(0); }

/* 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; }
  .product-info__title { margin-bottom: 6px; }
  .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; }

  /* Vilkår-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;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
@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;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
@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 */
.pay-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.pay-icon {
  background: #fff;
  border: 1px solid #e8e0dd;
  border-radius: 6px;
  padding: 4px 8px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pay-icon img {
  height: 18px;
  width: auto;
  display: block;
  object-fit: contain;
}
.pay-icon--klarna img {
  height: 14px;
}
.cart-payment-icons {
  padding-top: 10px;
}
.cart-payment-icons .pay-icons {
  justify-content: center;
  gap: 4px;
}
.cart-payment-icons .pay-icon {
  height: 22px;
  padding: 2px 5px;
  border-radius: 4px;
}
.cart-payment-icons .pay-icon img {
  height: 12px;
}
.cart-payment-icons .pay-icon--klarna img {
  height: 9px;
}
.product-payment-icons {
  margin: 12px 0;
}
.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); }
}

/* EXIT INTENT MODAL */
.exit-modal {
  position: fixed; inset: 0;
  z-index: 10000;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.exit-modal.visible { display: flex; animation: exitModalFade 0.3s ease; }
@keyframes exitModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.exit-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
}
.exit-modal__box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: exitModalPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes exitModalPop {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.exit-modal__close {
  position: absolute; top: 12px; right: 14px;
  font-size: 28px; line-height: 1;
  color: #999; background: none; border: none;
  cursor: pointer; padding: 4px;
}
.exit-modal__close:hover { color: #000; }
.exit-modal__emoji { font-size: 48px; margin-bottom: 8px; }
.exit-modal__title {
  font-size: 26px; font-weight: 800;
  margin-bottom: 8px; color: #1a1a1a;
}
.exit-modal__sub {
  font-size: 14px; color: #666;
  margin-bottom: 20px;
}
.exit-modal__code {
  background: #fdf5f5;
  border: 2px dashed #dcacae;
  border-radius: 8px;
  padding: 14px;
  font-size: 22px; font-weight: 800;
  letter-spacing: 0.1em;
  color: #b07a7c;
  margin-bottom: 14px;
}
.exit-modal__btn {
  width: 100%;
  background: #000; color: #fff;
  padding: 14px;
  border: none; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s ease;
}
.exit-modal__btn:hover { background: #333; }
.exit-modal__small {
  font-size: 11px; color: #999;
  margin-top: 12px;
}

/* 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__title {
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.mobile-nav__close {
  font-size: 24px; line-height: 1;
  background: none; border: none; cursor: pointer;
  padding: 4px 8px;
}
.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;
  padding: 16px 22px 24px;
  border-top: 1px solid var(--color-border);
  gap: 10px;
}
.mobile-nav__footer a {
  font-size: 13px;
  color: var(--color-text-light);
}

/* 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: var(--color-text-light);
  text-decoration: underline;
}
.product-info__terms a:hover { color: var(--color-text); }

/* 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 */
  .exit-modal__overlay { backdrop-filter: none !important; }
  .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 "Til kassen" */
.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 */
.cart-saved {
  display: flex; justify-content: space-between;
  font-size: 13px; color: #2d8659; font-weight: 600;
  margin-bottom: 8px;
}

.package-option__popular-badge--value {
  background: #2d8659;
}

/* SPAR % BADGE PÅ PAKKEVALG */
.package-option__old-row {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
  margin-top: 2px;
}
.package-option__save {
  background: #2d8659;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

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


/* === Anker-scroll-fiks: reservere plass + offset === */
#anmeldelser { scroll-margin-top: 20px; }
.product-reviews { contain: layout; }
.review-card { contain: layout style; }
.review-card__avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.photos-carousel__item img {
  aspect-ratio: 1 / 1;
}


/* === LAYOUT-SHIFT FIX: reserver plass for alle bilder før de lastes === */
.mini-swiper__photo { width: 56px; height: 56px; flex-shrink: 0; }
.mini-swiper__photo img { width: 100%; height: 100%; object-fit: cover; }
.content-section__media { aspect-ratio: 1 / 1; }
.content-section__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photos-carousel__item { aspect-ratio: 1 / 1; }
.product-gallery__thumb { aspect-ratio: 1 / 1; }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__main { aspect-ratio: 1 / 1; }
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.also-viewed__img-wrap { aspect-ratio: 1 / 1; }
