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

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

:root {
  --black:     #0d0d0d;
  --offwhite:  #f5f3ef;
  --cream:     #ede9e2;
  --cream2:    #e4dfd6;
  --red:       #c0392b;
  --red-dark:  #962d22;
  --silver:    #a8a5a0;
  --text:      #1a1a1a;
  --muted:     #6b6763;
  --border:    #d6d1c9;
  --white:     #ffffff;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Barlow', sans-serif;

  --radius-sm: 2px;
  --radius:    4px;

  --nav-h: 72px;
  --max-w: 1100px;
  --gutter: clamp(1.5rem, 5vw, 3rem);
}

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-sans); }
ul, ol { list-style: none; }

/* ─── Utility ───────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); font-weight: 400; margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--red);
}

/* ─── Navigation ────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--offwhite);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

.site-nav .container {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 24px; font-weight: 300;
  letter-spacing: 5px; text-transform: uppercase;
  line-height: 1;
}
.nav-logo .dot { color: var(--red); }

.nav-links {
  display: flex; gap: 2.5rem;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); font-weight: 400;
}
.nav-links a { transition: color .2s; }
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 1.5rem; }

.nav-cart {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  background: none; border: none; color: var(--text); padding: 0;
  transition: color .2s;
}
.nav-cart:hover { color: var(--red); }
.nav-cart svg { width: 18px; height: 18px; }
.cart-count {
  background: var(--red); color: #fff;
  font-size: 10px; width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 500;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 11px;
  letter-spacing: 2.5px; text-transform: uppercase; font-weight: 400;
  border: none; padding: 15px 36px;
  transition: background .2s, color .2s, transform .15s;
}
.btn:active { transform: scale(0.98); }

.btn-primary { background: var(--black); color: #fff; }
.btn-primary:hover { background: var(--red); }

.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--black); background: var(--black); color: #fff; }

.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}

.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem var(--gutter) 5rem calc((100vw - var(--max-w)) / 2 + var(--gutter));
  max-width: calc(var(--max-w) / 2 + (100vw - var(--max-w)) / 2);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 300; line-height: 1.0;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}
.hero-title em { font-style: italic; color: var(--muted); }

.hero-body {
  font-size: 15px; line-height: 1.8;
  color: var(--muted); font-weight: 300;
  max-width: 400px; margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex; gap: 3rem; margin-bottom: 2.5rem;
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 32px; font-weight: 300; line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}

.hero-visual {
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(0,0,0,0.012) 40px,
    rgba(0,0,0,0.012) 41px
  );
}

.hero-bracelet-wrap {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
}

/* ─── Section Titles ────────────────────────────────────── */
.section-header {
  text-align: center; margin-bottom: 3.5rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300; line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--muted); }
.section-sub {
  font-size: 14px; color: var(--muted); font-weight: 300;
  margin-top: 0.75rem; max-width: 520px; margin-left: auto; margin-right: auto;
}

/* ─── Divider ───────────────────────────────────────────── */
.divider {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 2.5rem 0;
}
.divider-line { flex: 1; height: 1px; background: var(--border); }
.divider-text {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--silver);
  white-space: nowrap;
}

/* ─── Products Grid ─────────────────────────────────────── */
.products-section { padding: 5rem 0; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.product-card { cursor: pointer; }
.product-card a { display: block; }

.product-img-wrap {
  position: relative;
  background: var(--cream);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: background .3s;
}
.product-card:hover .product-img-wrap { background: var(--cream2); }

.product-img-wrap svg {
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.product-card:hover .product-img-wrap svg { transform: scale(1.04) translateY(-4px); }

.product-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 11px; font-weight: 500;
}
.badge-new   { background: var(--red); color: #fff; }
.badge-best  { background: var(--black); color: #fff; }
.badge-sale  { background: var(--text); color: var(--offwhite); }

.product-meta { padding: 0 2px; }
.product-name {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 400; margin-bottom: 3px;
  transition: color .2s;
}
.product-card:hover .product-name { color: var(--red); }

.product-sub {
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.3px; margin-bottom: 10px; font-weight: 300;
}
.product-price { font-size: 15px; font-weight: 500; }
.product-price .was {
  text-decoration: line-through; color: var(--silver);
  font-size: 13px; font-weight: 300; margin-right: 6px;
}

/* ─── Brand Banner ──────────────────────────────────────── */
.brand-banner {
  background: var(--black); color: #fff;
  padding: 5rem var(--gutter);
}
.brand-banner .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 300; line-height: 1.15;
}
.brand-title em { font-style: italic; color: var(--silver); }

.brand-list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; font-weight: 300; color: #b5b0aa;
  padding: 12px 0; border-bottom: 1px solid #1e1e1e;
}
.brand-list li:last-child { border-bottom: none; }
.brand-list li::before {
  content: ''; display: block;
  width: 22px; height: 1px; background: var(--red); flex-shrink: 0;
}

/* ─── Features Strip ────────────────────────────────────── */
.features-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 36px; height: 36px; margin-bottom: 1rem;
  color: var(--red);
}
.feature-name {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.3px; margin-bottom: 5px;
}
.feature-desc { font-size: 12px; color: var(--muted); font-weight: 300; line-height: 1.6; }

/* ─── Testimonials ──────────────────────────────────────── */
.testimonials-section { padding: 5rem 0; background: var(--cream); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.testimonial {
  background: var(--offwhite); padding: 2rem;
}
.testimonial-stars { color: var(--red); font-size: 13px; letter-spacing: 3px; margin-bottom: 1rem; }
.testimonial-text {
  font-family: var(--font-serif); font-size: 18px; font-weight: 300;
  font-style: italic; line-height: 1.6; margin-bottom: 1.25rem; color: var(--text);
}
.testimonial-author { font-size: 12px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }

/* ─── Product Detail Page ───────────────────────────────── */
.product-detail { padding: 4rem 0 6rem; }
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}

.product-gallery-main {
  background: var(--cream);
  aspect-ratio: 2;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.product-gallery-thumbs { display: flex; gap: 0.75rem; }
.thumb {
  width: 72px; height: 72px; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: 2px solid transparent;
  transition: border-color .2s;
}
.thumb:hover, .thumb.active { border-color: var(--black); }

.product-detail-name {
  font-family: var(--font-serif);
  font-size: 40px; font-weight: 300; line-height: 1.1;
  margin-bottom: 0.5rem;
}
.product-detail-sub { font-size: 13px; color: var(--muted); margin-bottom: 1.5rem; letter-spacing: 0.3px; }
.product-detail-price {
  font-size: 28px; font-weight: 500; margin-bottom: 2rem;
}
.product-detail-price .was {
  font-size: 18px; font-weight: 300; color: var(--silver);
  text-decoration: line-through; margin-right: 8px;
}

.product-detail-desc {
  font-size: 14px; line-height: 1.8; color: var(--muted);
  font-weight: 300; margin-bottom: 2rem; border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.product-specs { margin-bottom: 2rem; }
.product-specs dt {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 3px;
}
.product-specs dd {
  font-size: 14px; font-weight: 400; padding-bottom: 10px;
  margin-bottom: 10px; border-bottom: 1px solid var(--border);
}
.product-specs dd:last-child { border-bottom: none; }

.add-to-cart {
  width: 100%; justify-content: center; margin-bottom: 1rem;
  font-size: 12px; padding: 18px;
}

/* ─── Cart Page ─────────────────────────────────────────── */
.cart-page { padding: 4rem 0 6rem; }
.cart-grid { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }
.cart-title {
  font-family: var(--font-serif);
  font-size: 40px; font-weight: 300; margin-bottom: 2.5rem;
}

.cart-item {
  display: grid; grid-template-columns: 100px 1fr auto;
  gap: 1.5rem; align-items: center;
  padding: 1.5rem 0; border-bottom: 1px solid var(--border);
}

.cart-item-name { font-family: var(--font-serif); font-size: 20px; font-weight: 400; margin-bottom: 4px; }
.cart-item-sub { font-size: 12px; color: var(--muted); }
.cart-item-price { font-size: 16px; font-weight: 500; }
.cart-item-remove { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; cursor: pointer; background: none; border: none; padding: 0; }
.cart-item-remove:hover { color: var(--red); }

.cart-summary {
  background: var(--cream); padding: 2.5rem;
  position: sticky; top: calc(var(--nav-h) + 2rem);
}
.cart-summary-title { font-family: var(--font-serif); font-size: 24px; font-weight: 300; margin-bottom: 1.5rem; }
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0 2rem;
  font-size: 18px; font-weight: 500;
  border-top: 2px solid var(--text);
}

/* ─── About Page ────────────────────────────────────────── */
.about-hero {
  background: var(--cream);
  padding: 7rem var(--gutter);
  text-align: center;
}
.about-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300; line-height: 1.1; margin-bottom: 1.5rem;
}
.about-hero-title em { font-style: italic; color: var(--muted); }
.about-hero-sub {
  font-size: 16px; color: var(--muted); font-weight: 300;
  max-width: 520px; margin: 0 auto; line-height: 1.8;
}

.about-content { padding: 5rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text-block h2 {
  font-family: var(--font-serif);
  font-size: 36px; font-weight: 300; margin-bottom: 1.5rem; line-height: 1.2;
}
.about-text-block p {
  font-size: 15px; color: var(--muted); font-weight: 300; line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-visual {
  background: var(--cream); aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}

.values-section { padding: 0 0 5rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card { padding: 2.5rem 2rem; border: 1px solid var(--border); }
.value-num {
  font-family: var(--font-serif); font-size: 40px; font-weight: 300;
  color: var(--red); line-height: 1; margin-bottom: 1rem;
}
.value-title { font-size: 14px; font-weight: 500; letter-spacing: 0.5px; margin-bottom: 0.75rem; }
.value-desc { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.7; }

/* ─── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--black); color: #b5b0aa;
  padding: 4rem var(--gutter) 2rem;
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 300;
  letter-spacing: 4px; text-transform: uppercase;
  color: #fff; margin-bottom: 1rem;
}
.footer-brand-name .dot { color: var(--red); }
.footer-brand-desc { font-size: 13px; font-weight: 300; line-height: 1.7; max-width: 260px; }
.footer-col-title {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: #fff; font-weight: 500; margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 13px; font-weight: 300; transition: color .2s; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid #1e1e1e;
  font-size: 12px; font-weight: 300;
}

/* ─── Toast / Notification ──────────────────────────────── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  background: var(--black); color: #fff;
  padding: 14px 24px; font-size: 13px; letter-spacing: 0.5px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 4rem var(--gutter); max-width: 100%; }
  .hero-visual { min-height: 340px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-banner .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cart-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; }
}
.cart-item-img {
    width: 90px !important;
    height: 90px !important;
    background: #f0ede9 !important; /* Den beige farve fra dine billeder */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important; /* Vigtigt: Dette klipper de tomme kanter af */
    flex-shrink: 0;
    border-radius: 4px;
}

.cart-item-img img {
    /* Vi fjerner zoomen og centerer billedet med en fast højde */
    width: auto !important;
    height: 90px !important; /* Juster denne for at gøre armbåndet større/mindre */
    object-fit: contain !important;
    /* Sikrer perfekt centrering */
    display: block;
    max-width: none !important;
}