/** Shopify CDN: Minification failed

Line 667:0 Unexpected "}"

**/
/* ===== NORDIC COMPASS - Base CSS ===== */
:root {
  --color-primary: #4A5568;
  --color-primary-light: #000000;
  --color-primary-dark: #111111;
  --color-accent: #D4A853;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F7F5F2;
  --color-bg-warm: #FAF8F5;
  --color-text: #1A1A1A;
  --color-text-light: #6B6B6B;
  --color-text-muted: #999999;
  --color-border: #E5E5E5;
  --color-border-light: #F0F0F0;
  --color-success: #4A5568;
  --color-error: #D44444;
  --color-sale: #D44444;
  --color-heart: #E25555;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-heading: 'DM Sans', 'Inter', sans-serif;
  --max-width: 1280px;
  --max-width-narrow: 800px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 100px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --duration: 0.3s;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: ; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.25; }
h1 { font-size: clamp(28px, 4vw, 42px); }
h2 { font-size: clamp(22px, 3vw, 32px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }

/* Old announcement bar styles removed - see marquee styles below */

/* ===== HEADER ===== */
.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--duration);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
  gap: 24px;
}
.header-logo a {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  white-space: nowrap;
}
.header-logo img { height: 32px; width: auto; }

.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
  transition: color var(--duration);
}
.header-nav a:hover { color: var(--color-primary); }
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: width var(--duration) var(--ease);
  border-radius: 1px;
}
.header-nav a:hover::after { width: 100%; }

/* Nav dropdown */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: -16px;
  min-width: 200px; background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.nav-dropdown-wrap:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block; padding: 8px 20px;
  font-size: 14px; font-weight: 400;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { background: var(--color-bg-alt); color: var(--color-primary); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-action-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-full);
  background: none; border: none; color: var(--color-text);
  transition: background var(--duration), color var(--duration);
}
.header-action-btn:hover { background: var(--color-bg-alt); }
.header-action-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.header-badge, .wishlist-count {
  position: absolute; top: 2px; right: 2px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--color-primary); color: #fff;
  font-size: 10px; font-weight: 600;
  border-radius: var(--radius-full);
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* Mobile toggle */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; height: 28px; justify-content: center;
  background: none; border: none; padding: 4px 0; cursor: pointer;
}
.mobile-toggle span { display: block; width: 100%; height: 2px; background: var(--color-text); border-radius: 1px; transition: all var(--duration); }

@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-toggle { display: flex; }
  .header-actions { gap: 8px; }
  .header-action-btn { width: 36px; height: 36px; }
  .header-inner { padding: 10px 16px; }
}

/* Old mobile menu styles removed — see redesigned version below */

/* ===== PREDICTIVE SEARCH ===== */
.search-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.4); z-index: 3000;
}
.search-overlay.active { display: block; }
.search-modal {
  position: fixed; top: 0; left: 0; right: 0;
  background: #fff; z-index: 3001;
  padding: 20px; transform: translateY(-100%);
  transition: transform 0.3s var(--ease);
  box-shadow: var(--shadow-lg);
}
.search-overlay.active .search-modal { transform: translateY(0); }
.search-input-wrap {
  max-width: 640px; margin: 0 auto;
  position: relative;
}
.search-input-wrap input {
  width: 100%; padding: 14px 48px 14px 16px;
  border: 2px solid var(--color-primary); border-radius: var(--radius-md);
  font-size: 16px; outline: none;
}
.search-input-wrap svg {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; stroke: var(--color-text-muted); fill: none; stroke-width: 2;
}
.search-suggestions {
  max-width: 640px; margin: 16px auto 0;
}
.search-suggestions-label {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--color-text-muted); margin-bottom: 8px;
}
.search-suggestion-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  cursor: pointer; transition: background 0.15s;
  font-size: 14px; color: var(--color-text);
}
.search-suggestion-item:hover { background: var(--color-bg-alt); }
.search-suggestion-item svg { width: 16px; height: 16px; stroke: var(--color-text-muted); fill: none; stroke-width: 2; }

/* Old static hero styles removed - see slideshow styles below */

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.product-card {
  position: relative; border-radius: var(--radius-md);
  overflow: hidden; background: var(--color-bg);
  transition: box-shadow var(--duration);
}
.product-card:hover { box-shadow: var(--shadow-md); }

.product-card-img {
  position: relative; aspect-ratio: 3/4;
  overflow: hidden; background: var(--color-bg-alt);
}
.product-card-img-primary, .product-card-img-hover {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.4s ease, transform 0.5s var(--ease);
}
.product-card-img-hover { opacity: 0; }
.product-card:hover .product-card-img-primary { opacity: 0; }
.product-card:hover .product-card-img-hover { opacity: 1; }
.product-card:hover .product-card-img-primary,
.product-card:hover .product-card-img-hover { transform: scale(1.03); }
/* Fallback for cards with only one image */
.product-card-img img:only-child {
  position: relative; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-card-img img:only-child { transform: scale(1.04); }

/* Wishlist heart */
.wishlist-btn {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: none;
  display: flex; align-items: center; justify-content: center;
  z-index: 5; transition: all var(--duration);
  backdrop-filter: blur(4px);
}
.wishlist-btn:hover { background: #fff; transform: scale(1.1); }
.wishlist-btn svg { width: 18px; height: 18px; stroke: var(--color-text-light); fill: none; stroke-width: 2; transition: all var(--duration); }
.wishlist-btn.active svg { stroke: var(--color-heart); fill: var(--color-heart); }

/* Color variant swatches below card image */
.product-card-swatches {
  display: flex; gap: 6px; padding: 8px 4px 0;
  flex-wrap: wrap;
}
.product-card-swatch {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--color-border); cursor: pointer;
  box-shadow: none;
  transition: all 0.2s;
  background-color: var(--color-bg-alt);
}
.product-card-swatch:hover { border-color: var(--color-text-light); transform: scale(1.1); }
.product-card-swatch.active { border-color: var(--color-primary); box-shadow: 0 0 0 2px var(--color-bg), 0 0 0 4px var(--color-primary); }
.product-card-info-link { text-decoration: none; color: inherit; }

/* Product card badges */
.product-card-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; z-index: 5;
}
.badge-sale { background: var(--color-sale); color: #fff; }
.badge-preorder { background: #1a1a1a; color: #fff; }
.badge-soldout { background: var(--color-text-muted); color: #fff; }
.badge-new { background: var(--color-primary); color: #fff; }

.product-card-info { padding: 14px 4px 4px; }
.product-card-title { font-size: 14px; font-weight: 500; margin-bottom: 4px; color: var(--color-text); }
.product-card-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 6px; }
.product-card-stars { color: #00B67A; font-size: 12px; letter-spacing: 1px; }
.product-card-rating-num { font-size: 12px; color: var(--color-text-muted); }
.product-card-price { font-size: 16px; font-weight: 600; }
.product-card-compare { text-decoration: line-through; color: var(--color-text-muted); font-weight: 400; font-size: 13px; margin-left: 6px; }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center; margin-bottom: 40px;
}
.section-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--color-primary);
  margin-bottom: 8px;
}
.section-header h2 { margin-bottom: 8px; }
.section-header p { font-size: 15px; color: var(--color-text-light); max-width: 520px; margin: 0 auto; }

/* Old UGC styles removed - see video scroll styles below */

/* ===== TRUSTPILOT REVIEWS ===== */
.tp-section { padding: 64px 0; background: #fff; }
.tp-header { text-align: center; margin-bottom: 40px; }
.tp-header-top { margin-bottom: 8px; }
.tp-rated {
  font-family: var(--font-heading); font-size: clamp(20px, 3vw, 28px);
  font-weight: 700; color: var(--color-text);
}
.tp-score-row {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 14px; color: var(--color-text-light);
  margin-bottom: 14px; flex-wrap: wrap;
}
.tp-score { font-weight: 700; font-size: 16px; color: var(--color-text); }
.tp-separator { color: var(--color-border); }
@media (max-width: 480px) {
  .tp-score-row { gap: 4px 8px; font-size: 12px; }
  .tp-separator { display: none; }
  .tp-based { display: block; width: 100%; text-align: center; margin-top: 2px; }
  .tp-section { padding: 40px 0; }
  .tp-header { margin-bottom: 28px; }
  .tp-star-box { width: 24px; height: 24px; }
  .tp-star-box svg { width: 14px; height: 14px; }
}
.tp-stars-summary {
  display: flex; align-items: center; justify-content: center;
  gap: 3px; margin-bottom: 10px;
}
.tp-star-box {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; background: #00B67A; border-radius: 3px;
}
.tp-star-box svg { width: 16px; height: 16px; fill: #fff; }
.tp-star-box.tp-star-empty { background: #dcdce6; }
.tp-star-box.tp-star-empty svg { fill: #fff; }
.tp-brand-row {
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.tp-logo { flex-shrink: 0; }
.tp-brand-name {
  font-size: 15px; font-weight: 700; color: #191919;
  letter-spacing: -0.01em;
}

.tp-reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 768px) { .tp-reviews-grid { grid-template-columns: 1fr; } }

.tp-review-card {
  padding: 28px; border: 1px solid #e5e5e5;
  border-radius: 8px; background: #fff;
  transition: box-shadow 0.25s;
}
.tp-review-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.tp-review-stars {
  display: flex; gap: 3px; margin-bottom: 14px;
}
.tp-review-stars .tp-star-box { width: 24px; height: 24px; }
.tp-review-stars .tp-star-box svg { width: 14px; height: 14px; }
.tp-review-text {
  font-size: 14px; line-height: 1.7; color: #333;
  margin-bottom: 16px;
}
.tp-review-author {
  font-size: 14px; font-weight: 600; color: var(--color-text);
  margin-bottom: 4px;
}
.tp-review-verified {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: #00B67A; font-weight: 500;
}

.tp-cta { text-align: center; margin-top: 32px; }
.tp-cta-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: #00B67A; font-size: 15px; font-weight: 600;
  transition: gap 0.2s;
}
.tp-cta-link:hover { gap: 12px; }

/* ===== PRODUCT PAGE ===== */
.product-page { padding: 24px 0 0; }
.breadcrumbs {
  font-size: 13px; color: var(--color-text-muted);
  margin-bottom: 20px; padding: 0 20px;
  max-width: var(--max-width); margin-left: auto; margin-right: auto;
}
.breadcrumbs ol {
  display: flex; align-items: center; flex-wrap: wrap;
  list-style: none; padding: 0; margin: 0; gap: 0;
}
.breadcrumbs li { display: flex; align-items: center; }
.breadcrumbs a { color: var(--color-text-muted); transition: color 0.15s; text-decoration: none; }
.breadcrumbs a:hover { color: var(--color-primary); }
.bc-sep { margin: 0 8px; color: var(--color-border); font-size: 11px; }

.product-layout {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 28px; max-width: var(--max-width);
  margin: 0 auto; padding: 0 20px;
  align-items: start;
}
@media (max-width: 768px) { .product-layout { grid-template-columns: 1fr; gap: 20px; padding: 0; } }

/* Product gallery — Away-style: vertical thumbs left + horizontal main image */
.product-gallery-wrap { position: sticky; top: 80px; align-self: start; display: flex; gap: 10px; }
@media (max-width: 768px) { .product-gallery-wrap { position: static; flex-direction: column-reverse; gap: 8px; } }

/* Vertical thumbnails (left side on desktop) */
.pg-thumbs {
  display: flex; flex-direction: column; gap: 8px;
  flex-shrink: 0; width: 72px;
  max-height: 520px; overflow-y: auto; scrollbar-width: none;
}
.pg-thumbs::-webkit-scrollbar { display: none; }
@media (max-width: 768px) {
  .pg-thumbs {
    flex-direction: row; width: auto;
    overflow-x: auto; overflow-y: visible;
    padding: 0 16px; max-height: none;
  }
}
.pg-thumb {
  flex: 0 0 72px; height: 72px; padding: 0;
  border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; border: 2px solid transparent;
  background: var(--color-bg-alt); transition: border-color 0.2s, opacity 0.2s;
}
.pg-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pg-thumb:hover { opacity: 0.75; }
.pg-thumb.active { border-color: var(--color-primary); }
@media (max-width: 768px) { .pg-thumb { flex: 0 0 60px; height: 60px; } }

/* Main image (horizontal / landscape) */
.pg-main {
  position: relative; border-radius: var(--radius-md);
  overflow: hidden; background: var(--color-bg-alt);
  flex: 1; min-width: 0;
}
.pg-main img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  transition: opacity 0.25s ease;
}
@media (max-width: 768px) { .pg-main { border-radius: 0; max-height: 400px; } .pg-main img { aspect-ratio: auto; max-height: 400px; object-fit: contain; } }

/* Navigation arrows on main image */
.pg-main-prev, .pg-main-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5; box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  transition: all 0.2s; opacity: 0;
}
.product-gallery-wrap:hover .pg-main-prev,
.product-gallery-wrap:hover .pg-main-next { opacity: 1; }
.pg-main-prev:hover, .pg-main-next:hover { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.15); }
.pg-main-prev { left: 12px; }
.pg-main-next { right: 12px; }
@media (max-width: 768px) { .pg-main-prev, .pg-main-next { opacity: 1; width: 34px; height: 34px; } }

/* Hide old grid/mobile carousel */
.pg-grid, .pg-mobile-carousel { display: none; }

/* Product details — sticky on desktop */
.product-details { padding: 8px 0; position: sticky; top: 80px; }
@media (max-width: 768px) { .product-details { position: static; padding: 0 20px; } }
.product-title { font-size: clamp(24px, 3vw, 32px); font-weight: 600; margin-bottom: 8px; }
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; text-decoration: none; }
.product-rating:hover .product-rating-text { text-decoration: underline; }
.product-tp-stars { display: flex; gap: 2px; }
.product-tp-stars .tp-star-box {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; background: #00B67A; border-radius: 2px;
}
.product-tp-stars .tp-star-box svg { width: 12px; height: 12px; fill: #fff; }
.product-tp-stars .tp-star-half { background: linear-gradient(90deg, #00B67A 50%, #dcdce6 50%); }
.product-rating-stars { color: #00B67A; font-size: 14px; }
.product-rating-text { font-size: 13px; color: var(--color-primary); font-weight: 500; }
.product-price { font-size: 24px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.product-price .compare { text-decoration: line-through; color: var(--color-text-muted); font-weight: 400; font-size: 16px; }
.product-save-badge {
  padding: 3px 10px; background: var(--color-sale); color: #fff;
  font-size: 12px; font-weight: 600; border-radius: var(--radius-sm);
}

/* Add to cart */
.product-atc-btn {
  width: 100%; padding: 16px; border: none;
  background: var(--color-primary); color: #fff;
  font-size: 15px; font-weight: 600; letter-spacing: 0.03em;
  border-radius: var(--radius-md); cursor: pointer;
  transition: all var(--duration);
  margin-bottom: 12px;
}
.product-atc-btn:hover { background: var(--color-primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.product-atc-btn:disabled { background: var(--color-text-muted); cursor: not-allowed; transform: none; }

/* Variant options */
.product-option-group { margin-bottom: 16px; }
.product-option-label { font-size: 13px; font-weight: 600; margin-bottom: 8px; display: block; }
.product-option-values { display: flex; gap: 8px; flex-wrap: wrap; }
.product-option-value {
  padding: 8px 16px; border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 500;
  background: transparent; color: var(--color-text);
  cursor: pointer; transition: all 0.2s;
  font-family: inherit; -webkit-appearance: none;
}
.product-option-value:hover { border-color: var(--color-text); }
.product-option-value.active { border-color: var(--color-primary); background: var(--color-primary); color: #fff; }

/* Color swatches — supports both solid color and image backgrounds */
.color-swatch {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--color-border); cursor: pointer;
  transition: all 0.2s; position: relative;
  background-size: cover; background-position: center;
}
.color-swatch:hover { transform: scale(1.1); border-color: var(--color-text-light); }
.color-swatch.active { border-color: var(--color-primary); box-shadow: 0 0 0 2px var(--color-bg), 0 0 0 4px var(--color-primary); }

/* Delivery info */
.delivery-info {
  padding: 14px 16px; border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md); margin: 16px 0;
  background: var(--color-bg-warm);
}
.delivery-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--color-text);
  padding: 4px 0;
}
.delivery-row svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Product description */
.product-description { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--color-border-light); }
.product-description h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.product-description p { font-size: 14px; line-height: 1.75; color: var(--color-text-light); }
.product-description ul { padding-left: 20px; margin-top: 8px; }
.product-description li { font-size: 14px; color: var(--color-text-light); margin-bottom: 4px; }

/* ===== PRODUCT STOCK & DELIVERY (Cainte-style) ===== */
.product-stock-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px; font-size: 13px; color: var(--color-text);
}
.stock-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #00B67A;
  box-shadow: 0 0 0 3px rgba(0,182,122,0.15);
  animation: stockPulse 2s infinite;
}
@keyframes stockPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0,182,122,0.15); }
  50% { box-shadow: 0 0 0 6px rgba(0,182,122,0.08); }
}
.product-delivery-est {
  font-size: 13px; color: var(--color-text-light);
  margin-bottom: 16px; padding-left: 16px;
}

/* Payment row */
.product-payment-row {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin: 12px 0 0; padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-light);
}
.product-payment-row svg { height: 22px; width: auto; opacity: 0.6; }

/* ===== CAINTE-STYLE USP ICONS BAR ===== */
.product-usp-bar {
  display: flex; align-items: flex-start; gap: 0;
  margin: 20px 0; padding: 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}
.product-usp-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  padding: 20px 8px; text-align: center;
  border-right: 1px solid var(--color-border-light);
}
.product-usp-item:last-child { border-right: none; }
.product-usp-item img { width: 28px; height: 28px; object-fit: contain; opacity: 0.7; }
.product-usp-emoji { font-size: 22px; line-height: 1; }
.product-usp-text {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--color-text);
  line-height: 1.3;
}
@media (max-width: 480px) {
  .product-usp-item { padding: 14px 4px; }
  .product-usp-text { font-size: 10px; }
}

/* ===== COLLAPSIBLE PRODUCT TABS (Cainte-style) ===== */
.product-tabs { margin-top: 4px; }
.product-tab {
  border-bottom: 1px solid var(--color-border-light);
}
.product-tab-header {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 18px 0; background: none; border: none;
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; text-align: left;
  color: var(--color-text); cursor: pointer;
  font-family: inherit;
}
.product-tab-header svg {
  flex-shrink: 0; color: var(--color-text-muted);
  transition: transform 0.3s;
}
.product-tab.open .product-tab-header svg { transform: rotate(45deg); }
.product-tab-content {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.product-tab.open .product-tab-content {
  max-height: 600px; padding-bottom: 20px;
}
.product-tab-content p {
  font-size: 14px; line-height: 1.75; color: var(--color-text-light);
  margin-bottom: 8px;
}
.product-tab-content ul { padding-left: 18px; }
.product-tab-content li {
  font-size: 14px; color: var(--color-text-light);
  margin-bottom: 4px; line-height: 1.6;
}

/* ===== PRODUCT LIFESTYLE SECTIONS (Cainte-style) ===== */
.product-lifestyle {
  padding: 48px 0;
}
.product-lifestyle:nth-child(even) { background: var(--color-bg-alt); }
.product-lifestyle-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.product-lifestyle-reverse { direction: rtl; }
.product-lifestyle-reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .product-lifestyle-inner { grid-template-columns: 1fr 1fr; }
}

}
.product-lifestyle-media {
  aspect-ratio: 4/5; overflow: hidden;
  border-radius: var(--radius-md); background: var(--color-bg-alt);
}
.product-lifestyle-media img,
.product-lifestyle-media video {
  width: 100%; height: 100%; object-fit: cover;
}
.product-lifestyle-text {
  text-align: center; max-width: 640px;
  margin: 32px auto 0; padding: 0 20px;
}
.product-lifestyle-text h2 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 12px;
}
.product-lifestyle-text p {
  font-size: 14px; line-height: 1.7; color: var(--color-text-light);
}

/* ===== CART ===== */
.cart-page { padding: 40px 0; }
.cart-page h1 { margin-bottom: 28px; }

.free-shipping-bar { margin-bottom: 24px; padding: 16px 20px; background: var(--color-bg-warm); border-radius: var(--radius-md); text-align: center; }
.free-shipping-text { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.free-shipping-progress { width: 100%; height: 8px; background: var(--color-border); border-radius: var(--radius-full); overflow: hidden; }
.free-shipping-fill { height: 100%; background: var(--color-success); border-radius: var(--radius-full); transition: width 0.5s var(--ease); }
.free-shipping-note { font-size: 12px; color: var(--color-text-muted); margin-top: 6px; }

.cart-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 16px; padding: 20px 0;
  border-bottom: 1px solid var(--color-border-light);
  align-items: start;
}
.cart-item-img { width: 80px; height: 100px; border-radius: var(--radius-sm); overflow: hidden; background: var(--color-bg-alt); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-title { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.cart-item-variant { font-size: 13px; color: var(--color-text-muted); margin-bottom: 8px; }
.cart-item-delivery { font-size: 12px; color: var(--color-primary); display: flex; align-items: center; gap: 4px; }
.cart-item-price { font-size: 16px; font-weight: 600; text-align: right; }
.cart-item-remove { font-size: 12px; color: var(--color-text-muted); background: none; border: none; cursor: pointer; margin-top: 4px; }
.cart-item-remove:hover { color: var(--color-error); }

.cart-summary { padding: 24px 0; }
.cart-summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
.cart-savings { color: var(--color-success); font-weight: 600; }
.cart-free-shipping { color: var(--color-success); font-weight: 700; }
.cart-total { font-size: 18px; font-weight: 700; padding-top: 12px; border-top: 2px solid var(--color-text); margin-top: 8px; }
.cart-checkout-btn {
  width: 100%; padding: 16px; margin-top: 16px;
  background: var(--color-primary); color: #fff;
  border: none; border-radius: var(--radius-md);
  font-size: 16px; font-weight: 600;
  cursor: pointer; transition: all var(--duration);
}
.cart-checkout-btn:hover { background: var(--color-primary-dark); }

/* ===== NEWSLETTER POPUP ===== */
.popup-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 5000;
  align-items: center; justify-content: center;
}
.popup-overlay.active { display: flex; }
.popup-modal {
  background: #fff; border-radius: var(--radius-lg);
  padding: 40px 32px; max-width: 420px; width: 90%;
  text-align: center; position: relative;
  animation: popupIn 0.3s var(--ease);
}
@keyframes popupIn { from { opacity: 0; transform: scale(0.95) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.popup-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; font-size: 24px;
  color: var(--color-text-muted); cursor: pointer;
}
.popup-emoji { font-size: 36px; margin-bottom: 12px; }
.popup-title { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.popup-text { font-size: 14px; color: var(--color-text-light); margin-bottom: 20px; }
.popup-input {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md); font-size: 15px; margin-bottom: 12px;
  outline: none; transition: border-color 0.2s;
}
.popup-input:focus { border-color: var(--color-primary); }
.popup-submit {
  width: 100%; padding: 12px; background: var(--color-primary);
  color: #fff; border: none; border-radius: var(--radius-md);
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: background var(--duration);
}
.popup-submit:hover { background: var(--color-primary-dark); }

/* ===== FOOTER ===== */
.site-footer {
  background: #EAEAEA; color: rgba(0,0,0,0.6);
}
.footer-main { padding: 52px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px; max-width: var(--max-width); margin: 0 auto; padding: 0 20px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand h3 { color: #1a1a1a; font-size: 17px; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 12px; }
.footer-desc { font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
.footer-contact-line { font-size: 13px; margin-bottom: 6px; }
.footer-contact-line strong { color: #1a1a1a; }
.footer-contact-line a { color: rgba(0,0,0,0.55); transition: color 0.2s; }
.footer-contact-line a:hover { color: #1a1a1a; }
.footer-hours { font-size: 13px; margin: 12px 0; }
.footer-hours strong { color: #1a1a1a; display: block; margin-bottom: 6px; }
.footer-hours-table { display: grid; grid-template-columns: auto auto; gap: 2px 12px; }
.footer-address { font-size: 13px; margin-bottom: 4px; margin-top: 10px; }
.footer-cvr { font-size: 12px; color: rgba(0,0,0,0.35); }
.footer-col h4 { color: #1a1a1a; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; padding: 4px 0; color: rgba(0,0,0,0.5); transition: color 0.2s; }
.footer-col a:hover { color: #1a1a1a; }
.footer-newsletter-col { min-width: 0; overflow: visible; }
.footer-newsletter-text { font-size: 13px; margin-bottom: 12px; }
.footer-newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.footer-newsletter-form input {
  flex: 1; padding: 10px 14px; border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius-sm); font-size: 14px;
  background: #fff; color: #1a1a1a; outline: none;
}
.footer-newsletter-form input::placeholder { color: rgba(0,0,0,0.35); }
.footer-newsletter-form input:focus { border-color: var(--color-primary); }
.footer-newsletter-form button {
  padding: 10px 16px; background: var(--color-primary); color: #fff;
  border: none; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600;
  cursor: pointer; white-space: nowrap; transition: background 0.2s;
}
.footer-newsletter-form button:hover { background: var(--color-primary-dark); }

/* Footer Trustpilot bar */
.footer-tp-bar {
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 36px; padding: 20px;
  max-width: var(--max-width); margin-left: auto; margin-right: auto;
}
.footer-tp-link {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap; text-decoration: none;
}
.footer-tp-stars { display: flex; gap: 3px; }
.footer-tp-stars .tp-star-box {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; background: #00B67A; border-radius: 2px;
}
.footer-tp-stars .tp-star-box svg { width: 13px; height: 13px; fill: #fff; }
.footer-tp-stars .tp-star-half { background: linear-gradient(90deg, #00B67A 50%, #ddd 50%); }
.footer-tp-score { color: #1a1a1a; font-size: 14px; font-weight: 600; }
.footer-tp-sub { color: rgba(0,0,0,0.4); font-size: 12px; }
.footer-tp-cta { color: #00B67A; font-size: 13px; font-weight: 500; }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 18px 20px; text-align: center; font-size: 12px;
  max-width: var(--max-width); margin: 0 auto;
}
.footer-payments {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-top: 10px; flex-wrap: wrap;
}
.footer-payments svg { height: 24px; width: auto; opacity: 0.5; }

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section { padding: 56px 0; background: var(--color-bg-alt); text-align: center; }
.newsletter-form {
  display: flex; max-width: 480px; margin: 24px auto 0; gap: 8px;
}
.newsletter-form input {
  flex: 1; padding: 12px 16px; border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md); font-size: 14px; outline: none;
  background: #fff;
}
.newsletter-form input:focus { border-color: var(--color-primary); }
.newsletter-form button {
  padding: 12px 24px; background: var(--color-primary); color: #fff;
  border: none; border-radius: var(--radius-md); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background var(--duration); white-space: nowrap;
}
.newsletter-form button:hover { background: var(--color-primary-dark); }

/* ===== LIGHTBOX ===== */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; cursor: zoom-out; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; animation: lbIn 0.3s ease; }
@keyframes lbIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 32px; cursor: pointer; opacity: 0.7; }
.lightbox-close:hover { opacity: 1; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; color: #fff; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 12px; letter-spacing: 0.1em; }

/* ===== FEATURED COLLECTIONS ===== */
.featured-section { padding: 56px 0; }

/* ===== MISC ===== */
.notify-btn {
  width: 100%; padding: 14px; border: 2px solid var(--color-text);
  background: transparent; color: var(--color-text);
  font-size: 14px; font-weight: 600; border-radius: var(--radius-md);
  cursor: pointer; transition: all var(--duration);
}
.notify-btn:hover { background: var(--color-text); color: #fff; }
.preorder-btn {
  width: 100%; padding: 16px; border: none;
  background: var(--color-accent); color: #fff;
  font-size: 15px; font-weight: 600; border-radius: var(--radius-md);
  cursor: pointer; transition: all var(--duration);
}
.preorder-btn:hover { background: #C49440; }

/* Collection page */
.collection-page { padding: 32px 0; }
.collection-header { text-align: center; margin-bottom: 32px; }

/* Page templates */
.page-content { max-width: var(--max-width-narrow); margin: 0 auto; padding: 40px 20px; }
.page-content h1 { margin-bottom: 20px; }
.page-content p { color: var(--color-text-light); line-height: 1.8; font-size: 15px; margin-bottom: 16px; }

/* Quantity selector */
.qty-wrap { display: flex; align-items: center; gap: 0; margin-bottom: 16px; }
.qty-btn {
  width: 40px; height: 40px; border: 1.5px solid var(--color-border);
  background: none; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text); transition: all 0.15s; font-family: inherit;
}
.qty-btn:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.qty-btn:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.qty-btn:hover { background: var(--color-bg-alt); }
.qty-input {
  width: 48px; height: 40px; text-align: center;
  border: 1.5px solid var(--color-border); border-left: 0; border-right: 0;
  font-size: 14px; font-weight: 500; outline: none; -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Search page */
.search-page { padding: 40px 0; }

/* 404 */
.page-404 { text-align: center; padding: 80px 20px; }
.page-404 h1 { font-size: 80px; font-weight: 700; color: var(--color-border); margin-bottom: 8px; }
.page-404 p { color: var(--color-text-light); margin-bottom: 24px; }
.btn-primary {
  display: inline-flex; padding: 12px 28px;
  background: var(--color-primary); color: #fff;
  border-radius: var(--radius-md); font-weight: 600;
  font-size: 14px; transition: all var(--duration); border: none;
}
.btn-primary:hover { background: var(--color-primary-dark); }

/* Wishlist page */
.wishlist-page { padding: 40px 0; }
.wishlist-empty { text-align: center; padding: 60px 20px; color: var(--color-text-light); }

/* ===== HERO SLIDESHOW ===== */
.hero-slideshow {
  position: relative; min-height: 520px;
  overflow: hidden; background: var(--color-bg-alt);
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}
.hero-slide.active { opacity: 1; z-index: 1; position: relative; }
.hero-slide .hero-bg { position: absolute; inset: 0; }
.hero-slide .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 100%);
}
.hero-slide .hero-content {
  position: relative; z-index: 2;
  padding: 80px 20px; color: #fff;
  max-width: 680px;
}
.hero-slide .hero-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400; opacity: 0.85; margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.hero-slide .hero-content h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700; margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  line-height: 1.15;
}
.hero-dots {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active { background: #fff; transform: scale(1.2); }
@media (max-width: 768px) {
  .hero-slideshow { min-height: 420px; }
  .hero-slide .hero-content { padding: 60px 20px; }
}

/* ===== FEATURED PRODUCT ===== */
.featured-product-section { padding: 48px 0; }
.featured-product-layout {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 32px; align-items: start;
}
@media (max-width: 768px) {
  .featured-product-layout { grid-template-columns: 1fr; }
}
/* Featured product carousel */
.fp-carousel {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md); background: var(--color-bg-alt);
}
.fp-carousel-track {
  display: flex; transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fp-carousel-slide {
  flex: 0 0 100%; aspect-ratio: 4/3;
}
.fp-carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fp-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.fp-carousel-arrow:hover { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.15); transform: translateY(-50%) scale(1.05); }
.fp-arrow-prev { left: 12px; }
.fp-arrow-next { right: 12px; }
.fp-carousel-dots {
  position: absolute; bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 5;
}
.fp-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,0.2); cursor: pointer;
  transition: all 0.25s;
}
.fp-carousel-dot.active { background: var(--color-text); transform: scale(1.25); }

.fp-variant-label {
  font-size: 14px; font-weight: 500; margin-bottom: 8px;
  color: var(--color-text);
}
.fp-swatches { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.fp-swatch {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  border: 2px solid var(--color-border); cursor: pointer;
  background-size: cover; background-position: center;
  transition: all 0.2s;
}
.fp-swatch:hover { border-color: var(--color-text-light); }
.fp-swatch.active { border-color: var(--color-primary); box-shadow: 0 0 0 2px var(--color-primary); }

.fp-title { font-size: clamp(22px, 3vw, 28px); font-weight: 600; margin-bottom: 8px; }
.fp-title a { color: inherit; }
.fp-title a:hover { color: var(--color-primary); }

.fp-price { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.fp-price-sale { font-size: 22px; font-weight: 700; color: var(--color-text); }
.fp-price-compare { font-size: 16px; text-decoration: line-through; color: var(--color-text-muted); }
.fp-price-badge {
  padding: 3px 10px; background: var(--color-sale); color: #fff;
  font-size: 12px; font-weight: 600; border-radius: var(--radius-sm);
}

.fp-features {
  list-style: none; padding: 0; margin: 0 0 16px;
}
.fp-features li {
  position: relative; padding: 6px 0 6px 24px;
  font-size: 14px; color: var(--color-text);
}
.fp-features li::before {
  content: '•'; position: absolute; left: 8px; top: 6px;
  color: var(--color-primary); font-weight: 700;
}

.fp-payment-icons {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px;
}
.fp-payment-icons svg { height: 24px; width: auto; }

.fp-atc-btn { margin-top: 4px; }

/* ===== TEXT BANNER ===== */
.text-banner-section { padding: 48px 0; }
.text-banner { text-align: center; max-width: 680px; margin: 0 auto; }
.text-banner h2 { margin-bottom: 8px; }
.text-banner-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400; color: var(--color-text-light);
  margin-bottom: 12px;
}
.text-banner p { font-size: 15px; line-height: 1.7; color: var(--color-text-light); }

/* ===== CATEGORY GRID ===== */
.category-grid-section { padding: 48px 0; }
.category-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 768px) { .category-grid { grid-template-columns: 1fr; gap: 12px; } }
.category-card {
  position: relative; border-radius: var(--radius-md);
  overflow: hidden; display: block;
  transition: box-shadow var(--duration);
}
.category-card:hover { box-shadow: var(--shadow-md); }
.category-card-img {
  aspect-ratio: 1; overflow: hidden;
  background: var(--color-bg-alt);
}
.category-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.category-card:hover .category-card-img img { transform: scale(1.04); }
.category-card-title {
  text-align: center; padding: 14px 8px;
  font-size: 15px; font-weight: 600;
  color: var(--color-text);
}

/* ===== IMAGE WITH TEXT ===== */
.image-text-section { padding: 56px 0; }
.image-text-section.bg-alt { background: var(--color-bg-alt); }
.image-text-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  max-width: var(--max-width); margin: 0 auto; padding: 0 20px;
}
.image-text-reverse .image-text-layout { direction: rtl; }
.image-text-reverse .image-text-layout > * { direction: ltr; }
@media (max-width: 768px) {
  .image-text-layout { grid-template-columns: 1fr; gap: 24px; }
  .image-text-reverse .image-text-layout { direction: ltr; }
}
.image-text-media { border-radius: var(--radius-lg); overflow: hidden; }
.image-text-media img { width: 100%; height: auto; display: block; }
.image-text-content h2 { margin-bottom: 16px; }
.image-text-content p {
  font-size: 15px; line-height: 1.75; color: var(--color-text-light);
  margin-bottom: 20px;
}
.image-text-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; background: var(--color-primary); color: #fff;
  font-size: 14px; font-weight: 600; border-radius: var(--radius-md);
  transition: all var(--duration);
}
.image-text-btn:hover { background: var(--color-primary-dark); transform: translateY(-1px); }

/* ===== TRUST BADGES ===== */
.trust-badges-section { padding: 48px 0; background: #cad4e1; }
.trust-badges-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: var(--max-width); margin: 0 auto; padding: 0 20px;
  text-align: center;
}
@media (max-width: 768px) { .trust-badges-grid { grid-template-columns: 1fr; gap: 16px; } }
.trust-badge {
  background: #fff; border-radius: var(--radius-md); padding: 28px 20px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column; align-items: center;
}
.trust-badge-icon { height: 52px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.trust-badge-icon img { width: 48px; height: 48px; object-fit: contain; margin: 0 auto; }
.trust-badge-emoji { height: 52px; display: flex; align-items: center; justify-content: center; font-size: 36px; margin-bottom: 12px; }
.trust-badge-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--color-text); }
.trust-badge-text { font-size: 13px; color: var(--color-text-light); line-height: 1.6; max-width: 280px; margin: 0 auto; }

/* ===== FAQ ACCORDION ===== */
.faq-section { padding: 56px 0; }
.faq-list {
  max-width: 720px; margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}
.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 18px 0; background: none; border: none;
  font-size: 15px; font-weight: 600; text-align: left;
  color: var(--color-text); cursor: pointer;
  font-family: inherit;
}
.faq-question svg {
  flex-shrink: 0; transition: transform 0.3s;
  color: var(--color-text-muted);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 18px; }
.faq-answer p {
  font-size: 14px; line-height: 1.75;
  color: var(--color-text-light);
}

/* Old UGC scroll styles removed — see UGC grid below */

/* ===== ANNOUNCEMENT BAR (STATIC) ===== */
.announcement-bar {
  background: #CAD4E1;
  color: #1a1a1a;
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.announcement-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
}
.announcement-usp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.announcement-usp svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
@media (max-width: 768px) {
  .announcement-bar-inner { gap: 12px; font-size: 11px; }
  .announcement-usp:nth-child(n+3) { display: none; }
}

/* Footer styles consolidated above */

/* ===== IMPROVED SEARCH OVERLAY ===== */
.search-close-btn {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: var(--color-text-muted);
  cursor: pointer; padding: 4px; z-index: 5;
}
.search-close-btn:hover { color: var(--color-text); }
.search-input-wrap { position: relative; }
.search-icon-left {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; stroke: var(--color-text-muted); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round; pointer-events: none;
}
.search-main-input { padding-left: 44px !important; }
.search-no-results { padding: 16px 0; color: var(--color-text-muted); font-size: 14px; }
.search-featured { margin-top: 20px; max-width: 640px; margin-left: auto; margin-right: auto; }
.search-featured-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 10px; }
@media (min-width: 769px) { .search-featured-grid { grid-template-columns: repeat(4, 1fr); } }
.search-featured-item {
  display: block; text-decoration: none; color: var(--color-text);
  border-radius: var(--radius-md); overflow: hidden;
  transition: box-shadow 0.2s;
}
.search-featured-item:hover { box-shadow: var(--shadow-md); }
.search-featured-img { aspect-ratio: 1; background: var(--color-bg-alt); overflow: hidden; }
.search-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.search-featured-info { padding: 10px 8px; }
.search-featured-title { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.search-featured-price { font-size: 13px; font-weight: 600; color: var(--color-primary); }

/* Search results */
.search-result-item {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 0; border-bottom: 1px solid var(--color-border-light);
  text-decoration: none; color: var(--color-text); transition: background 0.15s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--color-bg-alt); margin: 0 -8px; padding-left: 8px; padding-right: 8px; border-radius: var(--radius-sm); }
.search-result-img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; background: var(--color-bg-alt); flex-shrink: 0; }
.search-result-img-placeholder { width: 56px; height: 56px; background: var(--color-bg-alt); border-radius: 8px; flex-shrink: 0; }
.search-result-title { font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.search-result-price { font-size: 13px; color: var(--color-text-muted); }

/* ===== REDESIGNED MOBILE MENU ===== */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--color-bg); z-index: 2000;
  flex-direction: column; overflow: hidden;
}
.mobile-menu.active { display: flex; }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--color-border-light);
}
.mobile-menu-title { font-size: 16px; font-weight: 600; }
.mobile-menu-close {
  background: none; border: none; font-size: 28px;
  color: var(--color-text); cursor: pointer; line-height: 1;
}
.mobile-menu-links {
  flex: 1; overflow-y: auto; padding: 12px 20px;
}
.mobile-menu-links a {
  display: block; padding: 14px 0;
  font-size: 17px; font-weight: 500;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text); text-decoration: none;
}
.mobile-menu-child {
  font-size: 15px !important; font-weight: 400 !important;
  padding: 10px 0 10px 16px !important;
}
.mobile-menu-divider {
  height: 1px; background: var(--color-border); margin: 8px 0;
}
.mobile-menu-secondary {
  font-size: 14px !important; font-weight: 400 !important;
  color: var(--color-text-light) !important;
  padding: 10px 0 !important;
  border-bottom: none !important;
}
.mobile-menu-bottom {
  padding: 16px 20px; border-top: 1px solid var(--color-border-light);
  background: var(--color-bg-alt);
}
.mobile-search-form {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
}
.mobile-search-form svg {
  flex-shrink: 0; stroke: var(--color-text-muted);
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.mobile-search-form input {
  flex: 1; border: none; outline: none;
  font-size: 15px; background: transparent;
  font-family: inherit;
}

/* ===== UGC GRID (TheNap-style) ===== */
.ugc-section { padding: 56px 0; background: var(--color-bg-alt); }
.ugc-grid-wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
@media (min-width: 769px) { .ugc-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) { .ugc-grid { grid-template-columns: repeat(2, 1fr); } }
.ugc-card {
  position: relative; aspect-ratio: 9/16;
  border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; background: #0a0a0a;
}
.ugc-media { width: 100%; height: 100%; }
.ugc-media img, .ugc-media video {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.5s ease;
}
.ugc-card:hover .ugc-media img,
.ugc-card:hover .ugc-media video { transform: scale(1.06); }
.ugc-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,0.45); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 3; transition: opacity 0.3s, background 0.2s;
  backdrop-filter: blur(4px);
}
.ugc-play:hover { background: rgba(0,0,0,0.65); }
.ugc-card-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 12px; opacity: 0; transition: opacity 0.3s;
}
.ugc-card:hover .ugc-card-overlay { opacity: 1; }
.ugc-card-tag {
  color: #fff; font-size: 12px; font-weight: 600;
  letter-spacing: 0.02em;
}
.ugc-card-shop {
  color: #fff; font-size: 11px; font-weight: 500;
  margin-top: 4px; text-decoration: none; opacity: 0.85;
}
.ugc-card-shop:hover { opacity: 1; text-decoration: underline; }

/* ===== CART SAVINGS ===== */
.cart-item-original {
  display: block; font-size: 12px;
  text-decoration: line-through; color: var(--color-text-muted);
}
.cart-item-save {
  display: block; font-size: 12px; font-weight: 600;
  color: #00B67A;
}
.cart-savings { color: #00B67A; }

/* ===== ANNOUNCEMENT BAR TRUSTPILOT ===== */
.announcement-tp {
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap; color: #1a1a1a; text-decoration: none;
  font-weight: 500;
}
.announcement-tp-stars { display: inline-flex; gap: 2px; }
.ab-tp-star {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; background: #00B67A; border-radius: 2px;
}
.ab-tp-star svg { width: 10px; height: 10px; fill: #fff; }
.ab-tp-half { background: linear-gradient(90deg, #00B67A 50%, rgba(255,255,255,0.3) 50%); }
.announcement-usp.hide-mobile { }
@media (max-width: 768px) {
  .announcement-usp.hide-mobile { display: none !important; }
  .announcement-tp { font-size: 11px; }
}

/* ===== FOOTER SOCIAL LINKS ===== */
.footer-socials {
  display: flex; gap: 12px; margin-top: 14px;
}
.footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.06); color: rgba(0,0,0,0.5);
  transition: all 0.2s;
}
.footer-social-link:hover { background: rgba(0,0,0,0.12); color: #1a1a1a; }

/* ===== PREORDER STYLES ===== */
.product-preorder-row .stock-dot-preorder {
  background: #E5A100;
  box-shadow: 0 0 0 3px rgba(229,161,0,0.15);
  animation: none;
}
.preorder-btn {
  background: #1a1a1a !important; color: #fff !important;
}
.preorder-btn:hover {
  background: #333 !important;
}


/* Trust badges - side om side med mindre ikoner (kun mobil) */
@media screen and (max-width: 749px) {
  .trust-badges-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center;
    gap: 6px;
  }

  .trust-badge {
    flex: 1;
    text-align: center;
    padding: 12px 4px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .trust-badge-icon, .trust-badge-emoji {
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .trust-badge-icon img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain;
  }

  .trust-badge-emoji {
    font-size: 28px !important;
    line-height: 1;
  }

  .trust-badge-title {
    font-size: 9px !important;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .trust-badge-text {
    font-size: 8px !important;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
}
