/* ============================================================
   MELMOVES - Main Stylesheet
   Design tokens extracted from live site: melmoves.com
   ============================================================ */

/* ------------------------------------------------------------
   VVDS Fifties – Custom Font (self-hosted, WOFF2)
   ------------------------------------------------------------ */
@font-face {
  font-family: 'VVDS Fifties';
  src: url('/assets/fonts/VVDS-Fifties-Cond-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'VVDS Fifties';
  src: url('/assets/fonts/VVDS-Fifties-Cond-Bold-Italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'VVDS Fifties';
  src: url('/assets/fonts/VVDS-Fifties-Cond-SBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'VVDS Fifties';
  src: url('/assets/fonts/VVDS-Fifties-Cond-Reg.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Med-Schnitt für breitere Headings */
@font-face {
  font-family: 'VVDS Fifties Med';
  src: url('/assets/fonts/VVDS-Fifties-Med-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'VVDS Fifties Med';
  src: url('/assets/fonts/VVDS-Fifties-Med-Reg.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------------------------
   CSS Custom Properties
   ------------------------------------------------------------ */
:root {
  /* Brand Colors */
  --color-teal:        #15747b;
  --color-teal-dark:   #0f5a60;
  --color-teal-light:  #1a8f98;
  --color-yellow:      #f0cc42;
  --color-yellow-dark: #d4b030;

  /* Neutrals */
  --color-cream:       #faf5ee;
  --color-cream-dark:  #f3ebe0;
  --color-white:       #ffffff;
  --color-text:        #1a1a1a;
  --color-text-muted:  #666666;
  --color-border:      #e0d8cc;

  /* UI */
  --color-success:     #2d8a4e;
  --color-error:       #c0392b;
  --color-warning:     #e67e22;

  /* Typography */
  --font-heading: 'VVDS Fifties', 'Impact', sans-serif;
  --font-body:    'Nunito', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   40px;
  --space-2xl:  64px;
  --space-3xl:  96px;

  /* Border radius */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --radius-full:9999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.14);

  /* Container */
  --container:  1280px;
  --container-sm: 880px;
}

/* ------------------------------------------------------------
   Reset & Base
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-teal); }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

/* ------------------------------------------------------------
   Typography scale
   ------------------------------------------------------------ */
.text-xs   { font-size: .75rem; }
.text-sm   { font-size: .875rem; }
.text-base { font-size: 1rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-2xl  { font-size: 1.5rem; }
.text-3xl  { font-size: 2rem; }
.text-4xl  { font-size: 2.5rem; }
.text-5xl  { font-size: 3.5rem; }
.text-6xl  { font-size: 5rem; }

.font-bold   { font-weight: 700; }
.font-black  { font-weight: 900; }
.text-center { text-align: center; }
.text-teal   { color: var(--color-teal); }
.text-yellow { color: var(--color-yellow); }
.text-muted  { color: var(--color-text-muted); }

/* ------------------------------------------------------------
   Layout utilities
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.container--sm { max-width: var(--container-sm); }

.section { padding: var(--space-3xl) 0; }
.section--sm { padding: var(--space-2xl) 0; }

.grid   { display: grid; }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* ------------------------------------------------------------
   Announcement Bar
   ------------------------------------------------------------ */
.announcement-bar {
  background: var(--color-teal);
  color: var(--color-white);
  text-align: center;
  padding: 10px var(--space-lg);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.announcement-bar strong { font-weight: 800; }

/* ------------------------------------------------------------
   Header / Navigation
   ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  height: 72px;
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo img, .site-logo svg { height: 46px; width: auto; }

.nav-primary {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin: 0 auto;
}

.nav-item {
  position: relative;
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--color-text);
  padding: 4px 0;
  white-space: nowrap;
  transition: color .2s;
}
.nav-item:hover { color: var(--color-teal); }

.nav-item--dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 5px;
  vertical-align: middle;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
}
.nav-item--dropdown:hover .dropdown-menu,
.nav-item--dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px var(--space-lg);
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-text);
  transition: background .15s, color .15s;
}
.dropdown-menu a:hover {
  background: var(--color-cream);
  color: var(--color-teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.header-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  color: var(--color-teal);
  background: transparent;
  transition: background .2s;
  position: relative;
}
.header-icon-btn:hover { background: var(--color-cream); }
.header-icon-btn svg { width: 22px; height: 22px; }

.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--color-yellow);
  color: var(--color-text);
  font-size: .6rem;
  font-weight: 800;
  min-width: 16px; height: 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .03em;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: scale(.97); }

.btn--primary {
  background: var(--color-yellow);
  color: var(--color-text);
}
.btn--primary:hover {
  background: var(--color-yellow-dark);
  color: var(--color-text);
  box-shadow: var(--shadow-md);
}

.btn--teal {
  background: var(--color-teal);
  color: var(--color-white);
}
.btn--teal:hover {
  background: var(--color-teal-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  border: 2px solid var(--color-teal);
  color: var(--color-teal);
}
.btn--outline:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

.btn--arrow {
  padding-right: 10px;
}
.btn--arrow .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: rgba(0,0,0,.15);
  flex-shrink: 0;
}
.btn--arrow .btn-icon svg { width: 18px; height: 18px; }

.btn--lg { padding: 18px 36px; font-size: 1.125rem; }
.btn--sm { padding: 10px 20px; font-size: .875rem; }

/* ------------------------------------------------------------
   Hero Section
   ------------------------------------------------------------ */
.hero {
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-decor .decor-circles {
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  opacity: .06;
  border-radius: 50%;
  background: var(--color-teal);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
  gap: 0;
  min-height: 620px;
}

.hero-image {
  align-self: flex-end;
  position: relative;
}
.hero-image img {
  max-height: 620px;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
}

/* Background arrow decorations */
.hero-arrows {
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .15;
}

.hero-content {
  padding: var(--space-2xl) 0 var(--space-2xl) var(--space-xl);
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1.0;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
}
.hero-heading .accent { color: var(--color-teal); }

.hero-dots {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-teal);
  opacity: .3;
}
.hero-dot.active { opacity: 1; }

/* ------------------------------------------------------------
   Section headings
   ------------------------------------------------------------ */
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}
.section-subtext {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  font-size: 1rem;
}

/* ------------------------------------------------------------
   Product Cards
   ------------------------------------------------------------ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.product-card {
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card__image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-cream-dark);
}
.product-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-card__image img { transform: scale(1.04); }

.product-card__wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: color .2s, background .2s;
  z-index: 2;
}
.product-card__wishlist:hover { color: #e74c3c; background: var(--color-white); }
.product-card__wishlist svg { width: 18px; height: 18px; }

.product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--color-teal);
  color: var(--color-white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
}
.product-card__badge--sale { background: #c0392b; }

.product-card__body {
  padding: var(--space-lg);
}
.product-card__name {
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}
.product-card__price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
}
.product-card__price .original {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-right: var(--space-xs);
  font-size: 1rem;
}
.product-card__meta {
  font-size: .75rem;
  color: var(--color-text-muted);
  margin-top: 4px;
  line-height: 1.4;
}
.product-card__meta a { color: var(--color-teal); }

/* ------------------------------------------------------------
   Feature Strip (Versand & Abholung etc.)
   ------------------------------------------------------------ */
.feature-strip {
  border-top: 1.5px dashed var(--color-border);
  border-bottom: 1.5px dashed var(--color-border);
  padding: var(--space-lg) 0;
}
.feature-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0 var(--space-xl);
  font-weight: 600;
  font-size: .9375rem;
  flex: 1;
  justify-content: center;
}
.feature-item + .feature-item {
  border-left: 1.5px dashed var(--color-border);
}
.feature-item svg, .feature-item img {
  width: 36px; height: 36px;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   Promo Banner (teal background sections)
   ------------------------------------------------------------ */
.promo-section {
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) 0;
}
.promo-section--teal {
  background: var(--color-teal);
  color: var(--color-white);
}

.promo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.promo-inner--reverse { direction: rtl; }
.promo-inner--reverse > * { direction: ltr; }

.promo-image-wrap {
  position: relative;
}
.promo-image-circle {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  border: 4px solid transparent;
  background: linear-gradient(var(--color-cream), var(--color-cream)) padding-box,
              linear-gradient(135deg, var(--color-teal), var(--color-yellow)) border-box;
}
.promo-image-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.promo-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  line-height: 1.05;
}
.promo-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  font-size: .9375rem;
}
.promo-section--teal .promo-text p { color: rgba(255,255,255,.8); }

.checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}
.checklist li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: .9375rem;
  font-weight: 500;
}
.checklist li::before {
  content: '';
  display: block;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.promo-section--teal .checklist li { color: rgba(255,255,255,.9); }

/* ------------------------------------------------------------
   Newsletter Section
   ------------------------------------------------------------ */
.newsletter-section {
  background: var(--color-teal-light);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-3xl);
  margin: var(--space-3xl) 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.newsletter-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}
.newsletter-text {
  color: rgba(255,255,255,.85);
  font-size: .9375rem;
  line-height: 1.6;
}

.newsletter-form { display: flex; flex-direction: column; gap: var(--space-md); }
.newsletter-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }

/* ------------------------------------------------------------
   Forms
   ------------------------------------------------------------ */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: .875rem; font-weight: 600; color: var(--color-text); }

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-full);
  background: var(--color-cream);
  color: var(--color-text);
  font-size: .9375rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: #aaa; }
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(21,116,123,.15);
  background: var(--color-white);
}

/* Inside teal background */
.newsletter-section .form-input,
.newsletter-section .form-textarea {
  background: rgba(255,255,255,.9);
}

.form-textarea { border-radius: var(--radius-lg); resize: vertical; min-height: 120px; }
.form-select   { border-radius: var(--radius-full); appearance: none; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: .875rem;
  color: rgba(255,255,255,.85);
  cursor: pointer;
}
.form-checkbox input[type=checkbox] {
  width: 18px; height: 18px;
  accent-color: var(--color-yellow);
  flex-shrink: 0;
  margin-top: 2px;
}
.form-checkbox a { color: var(--color-yellow); text-decoration: underline; }

.form-error { color: var(--color-error); font-size: .8125rem; }

/* ------------------------------------------------------------
   Pop-up Store Section
   ------------------------------------------------------------ */
.popup-section {
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) 0;
}
.popup-bg-decor {
  position: absolute;
  bottom: 0; right: 0;
  width: 300px; height: 300px;
  opacity: .04;
  background: var(--color-teal);
  border-radius: 50%;
  transform: translate(30%, 30%);
}

/* ------------------------------------------------------------
   Partner section
   ------------------------------------------------------------ */
.partner-section {
  padding: var(--space-2xl) 0;
  text-align: center;
}
.partner-logo { max-height: 60px; width: auto; display: inline-block; }

/* ------------------------------------------------------------
   Blog Cards
   ------------------------------------------------------------ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}
.blog-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-cream);
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__image { aspect-ratio: 16/9; overflow: hidden; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card__image img { transform: scale(1.04); }
.blog-card__body { padding: var(--space-lg); }
.blog-card__cat {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-teal);
  margin-bottom: var(--space-sm);
}
.blog-card__title { font-size: 1.125rem; font-weight: 700; line-height: 1.3; margin-bottom: var(--space-sm); }
.blog-card__excerpt { font-size: .875rem; color: var(--color-text-muted); line-height: 1.5; }
.blog-card__date { font-size: .75rem; color: var(--color-text-muted); margin-top: var(--space-sm); }

/* ------------------------------------------------------------
   Cart / Checkout
   ------------------------------------------------------------ */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left;
  padding: var(--space-sm) var(--space-md);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-text-muted);
  border-bottom: 2px solid var(--color-border);
}
.cart-table td { padding: var(--space-md); border-bottom: 1px solid var(--color-border); vertical-align: middle; }
.cart-item-image { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; }
.cart-item-name { font-weight: 700; }
.cart-item-variant { font-size: .8rem; color: var(--color-text-muted); }

.qty-input {
  width: 56px;
  text-align: center;
  padding: 6px 8px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.cart-summary {
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  font-size: .9375rem;
}
.cart-summary-row--total {
  font-size: 1.25rem;
  font-weight: 700;
  border-top: 2px solid var(--color-border);
  margin-top: var(--space-sm);
  padding-top: var(--space-md);
}

/* ------------------------------------------------------------
   Breadcrumbs
   ------------------------------------------------------------ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: .8125rem;
  color: var(--color-text-muted);
  padding: var(--space-md) 0;
}
.breadcrumbs a:hover { color: var(--color-teal); }
.breadcrumbs .sep { opacity: .5; }
.breadcrumbs .current { font-weight: 600; color: var(--color-text); }

/* ------------------------------------------------------------
   Alerts / Flash messages
   ------------------------------------------------------------ */
.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  font-size: .9375rem;
  font-weight: 500;
}
.alert--success { background: #d4edda; color: #155724; border-left: 4px solid var(--color-success); }
.alert--error   { background: #f8d7da; color: #721c24; border-left: 4px solid var(--color-error); }
.alert--info    { background: #d1ecf1; color: #0c5460; border-left: 4px solid var(--color-teal); }
.alert--warning { background: #fff3cd; color: #856404; border-left: 4px solid var(--color-warning); }

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,.8);
  padding: var(--space-3xl) 0 var(--space-xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}
.footer-brand img { height: 40px; filter: brightness(0) invert(1); margin-bottom: var(--space-md); }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: var(--space-lg); }
.footer-social { display: flex; gap: var(--space-sm); }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  transition: background .2s;
}
.footer-social a:hover { background: var(--color-teal); color: white; }
.footer-social svg { width: 18px; height: 18px; }

.footer-col-heading {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--color-teal-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
}
.footer-legal { display: flex; gap: var(--space-lg); flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.5); }
.footer-legal a:hover { color: var(--color-teal-light); }

/* ------------------------------------------------------------
   Cookie Banner
   ------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  background: var(--color-text);
  color: var(--color-white);
  padding: var(--space-xl) var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  max-width: 680px;
  margin: 0 auto;
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: var(--space-sm); text-transform: uppercase; }
.cookie-banner p { font-size: .875rem; color: rgba(255,255,255,.75); line-height: 1.5; margin-bottom: var(--space-lg); }
.cookie-banner p a { color: var(--color-teal-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.cookie-settings { display: none; margin-top: var(--space-lg); border-top: 1px solid rgba(255,255,255,.15); padding-top: var(--space-lg); }
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  font-size: .875rem;
}
.cookie-category strong { display: block; }
.cookie-category span { font-size: .75rem; color: rgba(255,255,255,.55); }
.toggle-switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0;
  background: rgba(255,255,255,.2);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background .3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform .3s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--color-teal); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle-switch input:disabled + .toggle-slider { opacity: .5; cursor: not-allowed; }

/* ------------------------------------------------------------
   Scroll to top
   ------------------------------------------------------------ */
.scroll-top {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 500;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--color-teal-dark); transform: translateY(-2px); }
.scroll-top svg { width: 20px; height: 20px; }

/* ------------------------------------------------------------
   Voice search button (from original site)
   ------------------------------------------------------------ */
.voice-search-btn {
  position: fixed;
  bottom: calc(var(--space-lg) + 54px);
  right: var(--space-lg);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 500;
  color: var(--color-text-muted);
  cursor: pointer;
}
.voice-search-btn svg { width: 18px; height: 18px; }

/* ------------------------------------------------------------
   Search overlay
   ------------------------------------------------------------ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.search-overlay.open { opacity: 1; pointer-events: auto; }
.search-box {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.search-input-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  border: 2px solid var(--color-teal);
  border-radius: var(--radius-full);
  padding: 0 var(--space-lg);
}
.search-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.125rem;
  padding: 14px 0;
  background: transparent;
}
.search-input-wrap svg { width: 22px; height: 22px; color: var(--color-text-muted); flex-shrink: 0; }

/* ------------------------------------------------------------
   Product detail page
   ------------------------------------------------------------ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
  padding: var(--space-2xl) 0;
}
.product-gallery {}
.product-gallery__main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-cream);
  margin-bottom: var(--space-md);
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumbs { display: flex; gap: var(--space-sm); }
.product-gallery__thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
}
.product-gallery__thumb.active { border-color: var(--color-teal); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.product-info__price {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}
.product-info__price .original {
  font-size: 1.25rem;
  font-weight: 400;
  text-decoration: line-through;
  color: var(--color-text-muted);
  margin-right: var(--space-sm);
}
.product-info__tax {
  font-size: .8125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}
.product-info__tax a { color: var(--color-teal); }
.product-info__delivery {
  font-size: .875rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

.variant-select-group {
  margin-bottom: var(--space-lg);
}
.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.variant-option {
  padding: 8px 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.variant-option:hover { border-color: var(--color-teal); }
.variant-option.selected { border-color: var(--color-teal); background: var(--color-teal); color: white; }
.variant-option.out-of-stock { opacity: .4; cursor: not-allowed; text-decoration: line-through; }

.add-to-cart-form { display: flex; gap: var(--space-sm); align-items: center; margin-bottom: var(--space-lg); }
.qty-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.qty-wrap button { padding: 10px 14px; font-size: 1.25rem; color: var(--color-teal); transition: background .2s; }
.qty-wrap button:hover { background: var(--color-cream); }
.qty-wrap input { width: 48px; text-align: center; border: none; outline: none; font-weight: 700; }

.product-info__description { font-size: .9375rem; line-height: 1.7; color: var(--color-text-muted); margin-top: var(--space-xl); }

/* ------------------------------------------------------------
   Utility helpers
   ------------------------------------------------------------ */
.hidden   { display: none !important; }
.sr-only  { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.mt-auto  { margin-top: auto; }
.w-full   { width: 100%; }
.pos-relative { position: relative; }

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner  { grid-template-columns: 340px 1fr; }
  .hero-heading { font-size: 3.5rem; }
  .promo-inner { gap: var(--space-xl); }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 64px;
    --space-2xl: 48px;
  }
  .container { padding: 0 var(--space-md); }

  /* Header */
  .nav-primary  { display: none; }
  .menu-toggle  { display: flex; }
  .header-inner { justify-content: space-between; }

  /* Mobile nav overlay */
  .nav-primary.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--color-white);
    padding: var(--space-xl) var(--space-lg);
    overflow-y: auto;
    gap: var(--space-sm);
    z-index: 90;
  }
  .nav-item { font-size: 1.1rem; padding: var(--space-sm) 0; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    margin-top: var(--space-sm);
  }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-content { padding: var(--space-2xl) 0; text-align: center; }
  .hero-heading { font-size: clamp(2.5rem, 12vw, 4rem); }

  /* Grids */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .promo-inner { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .newsletter-section { padding: var(--space-xl); margin: var(--space-2xl) 0; }
  .newsletter-form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .feature-strip__inner { flex-direction: column; gap: var(--space-lg); }
  .feature-item + .feature-item { border-left: none; border-top: 1.5px dashed var(--color-border); width: 100%; justify-content: flex-start; padding: var(--space-lg) 0; }
  .product-detail { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-heading { font-size: 2.8rem; }
  .btn--lg { padding: 14px 24px; font-size: 1rem; }
  .cookie-banner { padding: var(--space-lg); }
}
