/* ==========================================================================
   BLL THE LABEL — design tokens
   Rooted in Lobi. Bribi · Lobi · Libi
   ========================================================================== */
:root {
  --color-brand-red: #d32416;
  --color-brand-red-hover: #b81f12;
  --color-brand-red-press: #9e1b0f;
  --color-brand-red-tint: #f7dad5;
  --color-brand-brown: #8b6f47;
  --color-brand-olive: #556b2f;
  --color-brand-cream: #faf6f1;
  --color-brand-black: #1a1a1a;

  --color-neutral-50: #faf6f1;
  --color-neutral-100: #f1eae1;
  --color-neutral-200: #e4d9cb;
  --color-neutral-300: #cbbba8;
  --color-neutral-400: #a8927b;
  --color-neutral-500: #8b6f47;
  --color-neutral-600: #6b5640;
  --color-neutral-700: #4a3d30;
  --color-neutral-800: #2e2620;
  --color-neutral-900: #1a1a1a;

  --color-success: #556b2f;
  --color-success-tint: #e4ead8;
  --color-error: #a8452f;
  --color-error-tint: #f3ded6;

  --color-bg-page: var(--color-neutral-50);
  --color-bg-canvas: var(--color-neutral-50);
  --color-surface-card: #fffdfa;
  --color-surface-card-alt: var(--color-neutral-100);
  --color-surface-inverse: var(--color-neutral-900);

  --color-text-primary: var(--color-neutral-900);
  --color-text-secondary: var(--color-neutral-600);
  --color-text-muted: var(--color-neutral-400);
  --color-text-inverse: var(--color-neutral-50);
  --color-text-brand: var(--color-brand-red);

  --color-border: var(--color-neutral-200);
  --color-border-strong: var(--color-neutral-300);
  --color-link: var(--color-brand-red);
  --color-link-hover: var(--color-brand-red-hover);
  --color-focus-ring: var(--color-brand-red);

  --font-serif: "Lora", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.375rem;
  --text-xl: 1.75rem;
  --text-2xl: 2.25rem;
  --text-3xl: 3rem;
  --text-4xl: 4rem;

  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  --tracking-tight: -0.02em;
  --tracking-normal: 0em;
  --tracking-wide: 0.04em;
  --tracking-wider: 0.08em;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --radius-full: 50%;

  --shadow-sm: 0 1px 2px rgba(42, 30, 20, 0.07);
  --shadow-md: 0 4px 14px rgba(42, 30, 20, 0.1);
  --shadow-lg: 0 16px 40px rgba(42, 30, 20, 0.16);
  --shadow-card: 0 2px 8px rgba(42, 30, 20, 0.07), 0 1px 2px rgba(42, 30, 20, 0.05);
  --shadow-focus: 0 0 0 3px var(--color-brand-red-tint);

  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --duration-fast: 120ms;
  --duration-base: 220ms;
  --duration-slow: 360ms;

  --gutter: 24px;
  --max-width: 1240px;
}

/* ==========================================================================
   Product information - Basic Medium Fit T-shirt
   ========================================================================== */
.bll-product-info-page {
  background: var(--color-bg-page);
}

.bll-product-info-hero .content-shell {
  padding-top: var(--space-7);
}

.bll-product-info-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
  padding-top: var(--space-6);
}

.bll-product-info-hero-copy h1 {
  max-width: 760px;
  margin: var(--space-3) 0 var(--space-4);
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.96;
  letter-spacing: var(--tracking-tight);
}

.bll-product-info-lead {
  max-width: 650px;
  color: var(--color-text-secondary);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: var(--leading-relaxed);
}

.bll-product-info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.bll-product-info-hero-image {
  min-height: 590px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #d7d0c5;
}

.bll-product-info-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.bll-product-info-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: var(--space-7) 0 0;
  border-block: 1px solid var(--color-border);
}

.bll-product-info-specs > div {
  padding: var(--space-4) var(--space-5);
  border-left: 1px solid var(--color-border);
}

.bll-product-info-specs > div:first-child {
  border-left: 0;
}

.bll-product-info-specs dt {
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.bll-product-info-specs dd {
  margin: var(--space-1) 0 0;
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
}

.bll-product-info-intro,
.bll-product-info-materials,
.bll-product-info-impact {
  background: var(--color-surface-card);
}

.bll-product-info-split,
.bll-product-info-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 8vw, 120px);
}

.bll-product-info-split h2,
.bll-product-info-section-heading h2,
.bll-product-info-cta h2 {
  margin-top: var(--space-2);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.02;
}

.bll-product-info-copy,
.bll-product-info-section-heading > p {
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.bll-product-info-section-heading {
  align-items: end;
  margin-bottom: var(--space-7);
}

.bll-product-info-section-heading > p {
  max-width: 580px;
  margin: 0;
}

.bll-check-list,
.bll-care-list {
  margin: var(--space-5) 0 0;
  padding: 0;
  list-style: none;
}

.bll-check-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-primary);
}

.bll-check-list li::before {
  position: absolute;
  left: 0;
  color: var(--color-brand-red);
  content: '✓';
  font-weight: var(--weight-bold);
}

.bll-product-info-measurement-image {
  margin: 0 0 var(--space-6);
  padding: var(--space-5);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.bll-product-info-measurement-image img {
  width: 100%;
  height: auto;
}

.bll-table-scroll {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-card);
}

.bll-product-info-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.bll-product-info-table th,
.bll-product-info-table td {
  padding: 13px var(--space-4);
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  white-space: nowrap;
}

.bll-product-info-table thead th {
  background: var(--color-surface-card-alt);
  color: var(--color-text-muted);
  font-size: 10px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.bll-product-info-table tbody th {
  font-family: var(--font-serif);
  font-size: var(--text-md);
}

.bll-product-info-table tbody tr:last-child > * {
  border-bottom: 0;
}

.bll-product-info-measure-steps,
.bll-product-info-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.bll-product-info-measure-steps article,
.bll-product-info-detail-grid article {
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-card);
}

.bll-product-info-measure-steps article > span,
.bll-product-info-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: var(--color-text-primary);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
}

.bll-product-info-measure-steps h3,
.bll-product-info-detail-grid h3 {
  margin: var(--space-3) 0 var(--space-2);
  font-family: var(--font-serif);
  font-size: var(--text-lg);
}

.bll-product-info-measure-steps p,
.bll-product-info-detail-grid p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.bll-product-info-certification-list {
  display: block;
  margin-top: var(--space-3);
  color: var(--color-text-primary);
  font-weight: var(--weight-semibold);
}

.bll-product-info-detail-grid article {
  background: var(--color-bg-page);
}

.bll-care-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.bll-care-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-card);
}

.bll-care-list strong {
  flex: 0 0 44px;
  color: var(--color-text-primary);
  font-size: var(--text-md);
  text-align: center;
}

.bll-care-list span {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.bll-product-info-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.bll-product-info-impact-grid article h3 {
  margin-bottom: var(--space-3);
  font-family: var(--font-serif);
  font-size: var(--text-xl);
}

.bll-product-info-impact-grid article h3 small {
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
}

.bll-product-info-table-compact {
  min-width: 600px;
  font-size: var(--text-xs);
}

.bll-product-info-footnote {
  margin: var(--space-4) 0 0;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  line-height: var(--leading-relaxed);
}

.bll-product-info-cta {
  background: var(--color-text-primary);
  color: #fff;
}

.bll-product-info-cta .content-shell {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-7);
}

.bll-product-info-cta h2 {
  max-width: 780px;
}

.bll-product-info-cta p:not(.eyebrow) {
  max-width: 620px;
  margin-top: var(--space-3);
  color: rgba(255, 255, 255, 0.72);
}

.bll-product-info-cta .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.bll-product-info-cta .btn {
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .bll-product-info-hero-grid,
  .bll-product-info-split,
  .bll-product-info-section-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-6);
  }

  .bll-product-info-hero-image,
  .bll-product-info-hero-image img {
    min-height: 0;
  }

  .bll-product-info-hero-image img {
    aspect-ratio: 4 / 5;
  }

  .bll-product-info-impact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .bll-product-info-hero-copy h1 {
    font-size: clamp(2.7rem, 15vw, 4.4rem);
  }

  .bll-product-info-actions,
  .bll-product-info-cta .content-shell {
    align-items: stretch;
    flex-direction: column;
  }

  .bll-product-info-actions .btn,
  .bll-product-info-cta .btn {
    width: 100%;
  }

  .bll-product-info-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bll-product-info-specs > div:nth-child(3) {
    border-left: 0;
  }

  .bll-product-info-specs > div:nth-child(n + 3) {
    border-top: 1px solid var(--color-border);
  }

  .bll-product-info-measure-steps,
  .bll-product-info-detail-grid,
  .bll-care-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .bll-product-info-measurement-image {
    margin-inline: calc(-1 * var(--gutter));
    padding: var(--space-3);
    border-inline: 0;
    border-radius: 0;
  }
}

/* Product information overview */
.bll-size-guide-index-hero .content-shell {
  padding-top: var(--space-7);
  padding-bottom: var(--space-8);
}

.bll-size-guide-index-hero h1 {
  max-width: 900px;
  margin: var(--space-3) 0 var(--space-5);
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: var(--tracking-tight);
}

.bll-size-guide-index-hero > .content-shell > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--color-text-secondary);
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
}

.bll-size-guide-index-list {
  background: var(--color-surface-card);
}

.bll-size-guide-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.bll-size-guide-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-page);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: border-color var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out);
}

.bll-size-guide-card:hover {
  border-color: var(--color-border-strong);
  color: var(--color-text-primary);
  text-decoration: none;
  transform: translateY(-3px);
}

.bll-size-guide-card-image {
  flex: 0 0 38%;
  min-height: 230px;
  overflow: hidden;
  background: #d7d0c5;
}

.bll-size-guide-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.bll-size-guide-card:hover img {
  transform: scale(1.035);
}

.bll-size-guide-card-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-4);
}

.bll-size-guide-card-copy small {
  color: var(--color-text-muted);
  font-size: 9px;
  font-style: normal;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.bll-size-guide-card-copy strong {
  margin-top: var(--space-2);
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  line-height: 1.15;
}

.bll-size-guide-card-copy > span {
  margin-top: var(--space-2);
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  line-height: 1.5;
}

.bll-size-guide-card-copy em {
  margin-top: auto;
  padding-top: var(--space-4);
  color: var(--color-text-primary);
  font-size: var(--text-xs);
  font-style: normal;
  font-weight: var(--weight-semibold);
}

.bll-size-guide-fit-help {
  background: var(--color-bg-page);
}

.bll-size-guide-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.bll-size-guide-fit-grid article {
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-card);
}

.bll-size-guide-fit-grid article > span {
  color: var(--color-brand-red);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
}

.bll-size-guide-fit-grid h3 {
  margin: var(--space-4) 0 var(--space-2);
  font-family: var(--font-serif);
  font-size: var(--text-xl);
}

.bll-size-guide-fit-grid p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

@media (max-width: 1050px) {
  .bll-size-guide-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .bll-size-guide-index-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .bll-size-guide-card-grid,
  .bll-size-guide-fit-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .bll-size-guide-card-image {
    min-height: 210px;
  }
}

/* ==========================================================================
   Information architecture — Dagboek topics and editorial hubs
   ========================================================================== */
.diary-topic-overview {
  margin: 0 0 var(--space-8);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-surface-card-alt);
}

.diary-topic-heading,
.bll-hub-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-7);
}

.diary-topic-heading {
  margin-bottom: var(--space-6);
}

.diary-topic-heading h2,
.bll-hub-section-heading h2 {
  margin-top: var(--space-2);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.diary-topic-heading > p,
.bll-hub-section-heading > p {
  max-width: 470px;
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.diary-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--color-border-strong);
  border-left: 1px solid var(--color-border-strong);
}

.diary-topic-card {
  display: flex;
  min-height: 290px;
  padding: var(--space-5);
  border-right: 1px solid var(--color-border-strong);
  border-bottom: 1px solid var(--color-border-strong);
  flex-direction: column;
  background: rgba(255, 255, 255, 0.38);
  transition:
    background var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out);
}

.diary-topic-card:hover,
.diary-topic-card.is-active {
  background: var(--color-surface-card);
}

.diary-topic-card.is-active {
  box-shadow: inset 0 3px 0 var(--color-brand-red);
}

.diary-topic-number {
  color: var(--color-brand-red);
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-style: italic;
}

.diary-topic-card h3 {
  margin-top: auto;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: var(--leading-snug);
}

.diary-topic-card > p {
  margin-top: var(--space-3);
  color: var(--color-text-secondary);
  font-size: 12px;
  line-height: var(--leading-relaxed);
}

.diary-topic-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.diary-topic-actions a {
  color: var(--color-text-primary);
  font-size: 10px;
  font-weight: var(--weight-bold);
  text-decoration: none;
}

.diary-topic-actions a:first-child {
  display: inline-flex;
  gap: var(--space-2);
}

.diary-topic-actions a:last-child {
  color: var(--color-text-muted);
}

.diary-topic-actions a:hover {
  color: var(--color-brand-red);
}

.footer-sub-link a {
  padding-left: 10px;
  color: var(--color-text-muted);
  font-size: 11px;
}

.bll-content-hub {
  overflow: hidden;
  background: var(--color-bg-page);
}

.bll-hub-hero {
  padding: clamp(42px, 6vw, 76px) 0 clamp(64px, 9vw, 118px);
  border-bottom: 1px solid var(--color-border);
  background:
    radial-gradient(circle at 82% 18%, rgba(218, 28, 21, 0.08), transparent 25%),
    var(--color-surface-card-alt);
}

.bll-hub-hero .breadcrumbs {
  margin-bottom: clamp(42px, 7vw, 84px);
}

.bll-hub-hero-grid {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: clamp(48px, 9vw, 128px);
}

.bll-hub-hero-copy {
  max-width: 920px;
}

.bll-hub-hero-copy h1 {
  max-width: 980px;
  margin-top: var(--space-4);
  font-size: clamp(3.7rem, 8vw, 7.8rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.bll-hub-hero-copy > p {
  max-width: 760px;
  margin-top: var(--space-6);
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  line-height: var(--leading-relaxed);
}

.bll-hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-7);
}

.bll-hub-hero-note {
  min-height: 300px;
  padding: var(--space-6);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.54);
}

.bll-hub-hero-note > span {
  display: block;
  color: var(--color-brand-red);
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-style: italic;
  line-height: 1;
}

.bll-hub-hero-note p {
  margin-top: var(--space-7);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.bll-hub-hero-note strong {
  display: block;
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  font-size: 10px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.bll-hub-intro {
  padding: clamp(58px, 8vw, 110px) 0;
}

.bll-hub-prose {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.8;
}

.bll-hub-prose > p:first-child::first-letter {
  float: left;
  margin: 0.04em 0.12em 0 0;
  color: var(--color-brand-red);
  font-family: var(--font-serif);
  font-size: 4.8em;
  line-height: 0.75;
}

.bll-glossary-section,
.bll-hub-stories,
.bll-hub-faq,
.bll-hub-more {
  padding: clamp(64px, 9vw, 120px) 0;
}

.bll-glossary-section {
  background: var(--color-text-primary);
  color: #fff;
}

.bll-glossary-section .eyebrow {
  color: #f08c86;
}

.bll-glossary-section .bll-hub-section-heading > p {
  color: rgba(255, 255, 255, 0.66);
}

.bll-glossary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.bll-glossary-card {
  min-height: 390px;
  padding: clamp(28px, 5vw, 58px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.bll-glossary-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.bll-glossary-index {
  color: #f08c86;
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
}

.bll-glossary-card h3 {
  margin-top: var(--space-6);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.95;
}

.bll-glossary-card > p {
  max-width: 620px;
  margin-top: var(--space-5);
  color: rgba(255, 255, 255, 0.78);
  line-height: var(--leading-relaxed);
}

.bll-glossary-card .bll-glossary-example {
  padding-left: var(--space-4);
  border-left: 2px solid #f08c86;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-serif);
  font-style: italic;
}

.bll-glossary-card > a {
  display: inline-flex;
  gap: var(--space-3);
  margin-top: var(--space-7);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-decoration: none;
}

.bll-glossary-card > a:hover {
  color: #f08c86;
}

.bll-hub-stories {
  background: var(--color-bg-page);
}

.bll-text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-primary);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-decoration: none;
}

.bll-text-link:hover {
  color: var(--color-brand-red);
}

.bll-hub-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-7) var(--space-5);
  margin-top: var(--space-8);
}

.bll-hub-story-card {
  min-width: 0;
}

.bll-hub-story-media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.bll-hub-story-media img,
.bll-hub-story-media .photo-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.bll-hub-story-media:hover img {
  transform: scale(1.025);
}

.bll-hub-story-copy {
  padding-top: var(--space-4);
}

.bll-hub-story-copy > span {
  color: var(--color-brand-red);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.bll-hub-story-copy h3 {
  margin-top: var(--space-2);
  font-size: clamp(1.5rem, 2.1vw, 2.05rem);
  line-height: var(--leading-snug);
}

.bll-hub-story-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.bll-hub-story-copy h3 a:hover {
  color: var(--color-brand-red);
}

.bll-hub-story-copy > p {
  margin: var(--space-3) 0 var(--space-4);
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  line-height: var(--leading-relaxed);
}

.bll-hub-shop-bridge {
  padding: clamp(64px, 9vw, 126px) 0;
  background: var(--color-brand-red);
  color: #fff;
}

.bll-hub-shop-grid {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(42px, 8vw, 120px);
}

.bll-hub-shop-bridge .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.bll-hub-shop-bridge h2 {
  max-width: 760px;
  margin-top: var(--space-4);
  color: #fff;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.95;
}

.bll-hub-shop-bridge p {
  color: rgba(255, 255, 255, 0.82);
  line-height: var(--leading-relaxed);
}

.bll-hub-shop-bridge .btn {
  margin-top: var(--space-6);
  background: #fff;
  color: var(--color-brand-red);
}

.bll-hub-faq {
  background: var(--color-surface-card-alt);
}

.bll-hub-faq-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(48px, 9vw, 130px);
}

.bll-hub-faq h2,
.bll-hub-more h2 {
  margin-top: var(--space-3);
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1;
}

.bll-hub-faq-list details {
  border-top: 1px solid var(--color-border-strong);
}

.bll-hub-faq-list details:last-child {
  border-bottom: 1px solid var(--color-border-strong);
}

.bll-hub-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  cursor: pointer;
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  list-style: none;
}

.bll-hub-faq-list summary::-webkit-details-marker {
  display: none;
}

.bll-hub-faq-list summary::after {
  color: var(--color-brand-red);
  content: "+";
  font-size: var(--text-lg);
}

.bll-hub-faq-list details[open] summary::after {
  content: "−";
}

.bll-hub-faq-list details p {
  max-width: 700px;
  padding: 0 0 var(--space-5);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.bll-hub-more {
  border-top: 1px solid var(--color-border);
}

.bll-hub-more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: var(--space-7);
  border-top: 1px solid var(--color-border-strong);
  border-left: 1px solid var(--color-border-strong);
}

.bll-hub-more-grid a {
  display: grid;
  min-height: 180px;
  padding: var(--space-5);
  border-right: 1px solid var(--color-border-strong);
  border-bottom: 1px solid var(--color-border-strong);
  color: var(--color-text-primary);
  grid-template-columns: 1fr auto;
  text-decoration: none;
}

.bll-hub-more-grid a > span {
  color: var(--color-brand-red);
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-style: italic;
  grid-column: 1 / -1;
}

.bll-hub-more-grid strong {
  align-self: end;
  font-size: var(--text-base);
}

.bll-hub-more-grid i {
  align-self: end;
  color: var(--color-brand-red);
  font-style: normal;
}

.bll-hub-more-grid a:hover {
  background: var(--color-surface-card-alt);
}

@media (max-width: 1100px) {
  .diary-topic-grid,
  .bll-hub-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bll-hub-hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
    gap: var(--space-7);
  }
}

@media (max-width: 760px) {
  .diary-topic-heading,
  .bll-hub-section-heading,
  .bll-hub-hero-grid,
  .bll-hub-shop-grid,
  .bll-hub-faq-grid {
    align-items: flex-start;
    grid-template-columns: minmax(0, 1fr);
  }

  .diary-topic-heading,
  .bll-hub-section-heading {
    flex-direction: column;
  }

  .bll-hub-hero-copy h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .bll-hub-hero-note {
    min-height: 0;
  }

  .bll-glossary-grid,
  .bll-hub-more-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .bll-glossary-card:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .diary-topic-overview {
    padding: 22px;
  }

  .diary-topic-grid,
  .bll-hub-story-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .diary-topic-card {
    min-height: 250px;
  }

  .bll-hub-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .bll-hub-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--color-bg-page);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.cart-drawer-open {
  overflow: hidden;
}

body > main {
  flex: 1 0 auto;
  width: 100%;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin: 0;
  overflow-wrap: break-word;
}

p {
  margin: 0;
}

a {
  color: var(--color-link);
  text-decoration: none;
}

a:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
}

button {
  font-family: inherit;
}

::selection {
  background: var(--color-brand-red-tint);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--color-brand-black);
  transform: translateY(-120%);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.skip-link:focus {
  transform: translateY(0);
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  padding: 12px 26px;
  cursor: pointer;
  transition: background var(--duration-base) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-lg {
  padding: 16px 34px;
  font-size: var(--text-base);
}

.btn-sm {
  padding: 8px 18px;
  font-size: var(--text-sm);
}

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

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

.btn-secondary {
  background: var(--color-brand-black);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--color-neutral-800);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-text-primary);
  border-color: var(--color-border-strong);
}

.btn-outline:hover {
  background: var(--color-neutral-100);
  color: var(--color-text-primary);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: var(--color-text-primary);
  cursor: pointer;
  transition: background var(--duration-base) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.icon-btn:hover {
  background: var(--color-neutral-100);
}

.icon-btn:active {
  transform: translateY(1px);
}

.icon-btn img {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-bg-page);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-4) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand .custom-logo-link,
.brand-link {
  display: block;
}

.brand img,
.brand .custom-logo {
  height: 26px;
  width: auto;
}

.brand-wordmark {
  font-family: var(--font-sans);
  font-weight: var(--weight-bold);
  font-size: var(--text-md);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.site-navigation {
  display: flex;
}

.site-navigation ul {
  display: flex;
  gap: var(--space-6);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-navigation a {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
  text-decoration: none;
}

.site-navigation a:hover {
  color: var(--color-brand-red);
}

.site-navigation .menu-item-has-children {
  position: relative;
}

.site-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  gap: var(--space-1);
  min-width: 200px;
  margin: 0;
  padding: var(--space-2);
  list-style: none;
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out);
  z-index: 60;
}

.site-navigation .menu-item-has-children:hover > .sub-menu,
.site-navigation .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-navigation .sub-menu li {
  display: block;
}

.site-navigation .sub-menu a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-weight: var(--weight-medium);
  white-space: nowrap;
  border-radius: var(--radius-sm);
}

.site-navigation .sub-menu a:hover {
  background: var(--color-surface-card-alt);
}

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

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
}

.cart-toggle {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-brand-red);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: var(--weight-bold);
  line-height: 1;
}

.cart-count:empty {
  display: none;
}

.menu-toggle {
  display: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-neutral-700);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 20, 15, 0.15), rgba(26, 20, 15, 0.55));
}

.hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-9) var(--gutter);
  color: #fff;
}

.hero .eyebrow {
  color: #fff;
  opacity: 0.85;
  margin-bottom: var(--space-4);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  max-width: 640px;
  margin-bottom: var(--space-5);
  color: #fff;
}

.hero-intro {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  max-width: 480px;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  opacity: 0.9;
}

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Photo placeholder (used until real photography exists)
   ========================================================================== */
.photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--color-neutral-200);
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  text-align: center;
  padding: var(--space-3);
  border-radius: var(--radius-lg);
}

.hero-media .photo-placeholder {
  /* Hero imagery is full-bleed, edge-to-edge — never rounded. */
  border-radius: 0;
}

.photo-placeholder.is-dark {
  align-items: flex-end;
  justify-content: flex-end;
  background: var(--color-neutral-700);
  color: var(--color-neutral-300);
}

.photo-placeholder.is-dark span {
  background: rgba(26, 20, 15, 0.55);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  margin: var(--space-5);
}

.photo-placeholder[data-ratio="4-5"] {
  aspect-ratio: 4 / 5;
}

.photo-placeholder[data-ratio="1-1"] {
  aspect-ratio: 1 / 1;
}

/* ==========================================================================
   Philosophy — Bribi / Lobi / Libi
   ========================================================================== */
.philosophy {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-9) var(--gutter);
}

.philosophy-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--color-text-primary);
  max-width: 760px;
  line-height: var(--leading-snug);
  margin-bottom: var(--space-8);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.philosophy-grid .word {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  color: var(--color-brand-red);
  margin-bottom: var(--space-2);
}

.philosophy-grid .meaning {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.philosophy-grid .text {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ==========================================================================
   Product grid + tags + cards + badges
   ========================================================================== */
.collection-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter) var(--space-9);
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.section-heading h2 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  color: var(--color-text-primary);
}

.tag-filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.tag-pill {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-strong);
  background: transparent;
  color: var(--color-text-primary);
  cursor: pointer;
  transition: background var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out);
}

.tag-pill:hover {
  background: var(--color-neutral-100);
  text-decoration: none;
}

.tag-pill.is-selected {
  background: var(--color-brand-red);
  border-color: var(--color-brand-red);
  color: #fff;
}

.product-grid,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}

.product-card,
.woocommerce ul.products li.product {
  background: var(--color-surface-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--duration-base) var(--ease-out);
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  float: none;
  width: auto;
  margin: 0;
}

.product-card:hover,
.woocommerce ul.products li.product:hover {
  box-shadow: var(--shadow-lg);
}

.product-card .card-image,
.woocommerce ul.products li.product a img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  margin: 0;
  /* Flush against the card body below — round the top only, so the
     photo's own corners don't peek through against the sharp-edged
     text panel directly underneath it. */
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-card .card-body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-card .card-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-brand);
  font-weight: var(--weight-semibold);
}

.product-card .card-title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: var(--text-md);
  font-family: var(--font-serif);
  color: var(--color-text-primary);
  padding: 0;
}

.product-card .card-desc,
.woocommerce ul.products li.product .price {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.product-card .card-footer {
  margin-top: var(--space-2);
}

.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--color-neutral-200);
  color: var(--color-text-primary);
}

.badge-brand {
  background: var(--color-brand-red);
  color: #fff;
}

.admin-hint {
  margin: var(--space-6) 0 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ==========================================================================
   Daily Lobi
   ========================================================================== */
.daily-lobi {
  background: var(--color-neutral-100);
  padding: var(--space-9) var(--gutter);
}

.daily-lobi-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.daily-lobi .section-heading span {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.daily-lobi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
}

.daily-lobi-card {
  background: var(--color-surface-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.daily-lobi-card p {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  line-height: var(--leading-relaxed);
}

/* ==========================================================================
   Newsletter — LOBI Mondays
   ========================================================================== */
.newsletter {
  background: var(--color-brand-black);
  padding: var(--space-9) var(--gutter);
}

.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.newsletter .eyebrow {
  color: var(--color-brand-red);
  opacity: 1;
  margin-bottom: var(--space-4);
}

.newsletter h2 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  color: #fff;
  margin-bottom: var(--space-4);
}

.newsletter p {
  font-family: var(--font-sans);
  color: var(--color-neutral-300);
  margin-bottom: var(--space-6);
  line-height: var(--leading-relaxed);
}

.newsletter-form {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  min-width: 260px;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background: var(--color-surface-card);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--color-brand-red);
  box-shadow: var(--shadow-focus);
}

.newsletter-success {
  font-family: var(--font-sans);
  color: #fff;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  flex: 0 0 auto;
  background: var(--color-brand-black);
  border-top: 1px solid var(--color-neutral-800);
  padding: var(--space-7) var(--gutter);
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer-brand img {
  height: 22px;
}

.footer-brand span {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-neutral-400);
}

.footer-nav {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav a,
.site-footer .footer-links a {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-neutral-300);
  text-decoration: none;
}

.footer-nav a:hover,
.site-footer .footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ==========================================================================
   WooCommerce notices
   ========================================================================== */
.woocommerce-notices-wrapper:not(:empty) {
  margin-bottom: var(--space-6);
}

.woocommerce-message,
.woocommerce-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin: 0 0 var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface-card-alt);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-text-primary);
}

.woocommerce-message:last-child,
.woocommerce-info:last-child,
.woocommerce-error:last-child {
  margin-bottom: 0;
}

.woocommerce-error {
  list-style: none;
  margin: 0 0 var(--space-3);
  padding: 0 var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-brand-red);
  background: var(--color-brand-red-tint);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-brand-red);
}

.woocommerce-error li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  line-height: var(--leading-relaxed);
}

.woocommerce-error li:not(:last-child) {
  border-bottom: 1px solid rgba(211, 36, 22, 0.2);
}

.woocommerce-error li a {
  color: inherit;
  text-decoration: underline;
}

.woocommerce-message a.button.wc-forward,
.woocommerce-info a.button.wc-forward {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  background: var(--color-brand-red);
  color: #fff;
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  text-decoration: none;
  white-space: nowrap;
}

.woocommerce-message a.button.wc-forward:hover,
.woocommerce-info a.button.wc-forward:hover {
  background: var(--color-brand-red-hover);
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumbs {
  margin-bottom: var(--space-5);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.breadcrumbs a {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.breadcrumbs a:hover {
  color: var(--color-brand-red);
}

.breadcrumbs span[aria-current] {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.breadcrumb-sep {
  color: var(--color-border-strong);
  font-size: var(--text-xs);
}

/* ==========================================================================
   Blog post header + lead
   ========================================================================== */
.blog-post-header {
  margin-bottom: var(--space-7);
}

.blog-post-header .eyebrow {
  margin-bottom: var(--space-3);
}

.blog-post-header .eyebrow a {
  color: var(--color-text-muted);
}

.blog-post-header .eyebrow a:hover {
  color: var(--color-brand-red);
}

.blog-post-header h1 {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-5);
}

.blog-post-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-snug);
}

/* ==========================================================================
   Table of contents
   ========================================================================== */
.toc {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin: var(--space-7) 0;
}

.toc-title {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-brand);
  margin: 0 0 var(--space-3);
}

.toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.toc li a {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-primary);
}

.toc li a:hover {
  color: var(--color-brand-red);
}

.toc .toc-level-3 {
  margin-left: var(--space-5);
}

/* ==========================================================================
   Contextual article-to-collection CTA
   ========================================================================== */
.article-cta {
  max-width: 760px;
  margin: var(--space-8) auto 0;
  padding: var(--space-6);
  background: var(--color-surface-card-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.article-cta h2 {
  margin-bottom: var(--space-3);
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  line-height: var(--leading-snug);
}

.article-cta p {
  max-width: 60ch;
  margin-bottom: var(--space-5);
  color: var(--color-text-secondary);
}

/* ==========================================================================
   Tags row, author box
   ========================================================================== */
.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-7) 0;
}

.blog-post-tags .tag-pill {
  padding: 6px 14px;
  font-size: var(--text-xs);
}

.author-box {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  margin-top: var(--space-7);
  background: var(--color-surface-card-alt);
  border-radius: var(--radius-lg);
}

.author-box img {
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.author-box-name {
  font-family: var(--font-sans);
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.author-box-bio {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

/* ==========================================================================
   Related posts
   ========================================================================== */
.related-posts {
  background: var(--color-neutral-100);
  padding: var(--space-9) var(--gutter);
  margin-top: var(--space-9);
}

.related-posts-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.related-posts h2 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-6);
}

/* ==========================================================================
   Blog index ("Dagboek")
   ========================================================================== */
.blog-index-header {
  padding-top: var(--space-8);
  padding-bottom: var(--space-6);
}

.blog-index-header h1 {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.blog-index-intro {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  color: var(--color-text-secondary);
  max-width: 620px;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.featured-post-card {
  display: block;
  margin-bottom: var(--space-8);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface-card);
  box-shadow: var(--shadow-card);
}

.featured-post-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.featured-post-card img,
.featured-post-card .photo-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  /* Flush against the card body below — round the top only. */
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.featured-post-body {
  padding: var(--space-6);
}

.featured-post-body h2 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  margin: var(--space-3) 0;
}

.featured-post-body p {
  font-family: var(--font-sans);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ==========================================================================
   Generic content pages (page/single/archive/404)
   ========================================================================== */
.content-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: var(--space-9) var(--gutter);
}

.content-shell-narrow {
  max-width: 760px;
}

.page-heading {
  max-width: 850px;
  margin-bottom: var(--space-8);
}

.page-heading .eyebrow {
  margin-bottom: var(--space-3);
}

.page-heading h1 {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.featured-image {
  margin-bottom: var(--space-7);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.entry-content {
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
}

.entry-content > * {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.entry-content > * + * {
  margin-top: var(--space-5);
}

.entry-content > .alignwide {
  max-width: 1100px;
}

.entry-content > .alignfull {
  max-width: none;
}

.entry-content h2,
.entry-content h3 {
  margin-top: var(--space-8);
  font-family: var(--font-serif);
  line-height: var(--leading-snug);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8) var(--space-6);
}

.post-card img,
.post-card .photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.post-card .eyebrow {
  margin-bottom: var(--space-3);
}

.post-card h2 {
  margin-bottom: var(--space-3);
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  line-height: var(--leading-snug);
  color: var(--color-text-primary);
}

.post-card a,
.featured-post-card a {
  color: inherit;
  text-decoration: none;
}

.post-card > a {
  display: block;
}

.post-card a:hover,
.featured-post-card a:hover {
  text-decoration: none;
}

.post-card a:hover h2,
.featured-post-card a:hover h2 {
  color: var(--color-brand-red);
}

.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: var(--gutter);
  text-align: center;
  gap: var(--space-4);
}

.not-found h1 {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
}

.not-found .btn {
  margin-top: var(--space-4);
}

.archive-description {
  margin-top: var(--space-3);
  color: var(--color-text-secondary);
}

.pagination,
.navigation.pagination {
  margin-top: var(--space-8);
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 var(--space-3);
  margin-right: var(--space-2);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-primary);
}

.page-numbers.current {
  background: var(--color-brand-red);
  color: #fff;
}

/* ==========================================================================
   WooCommerce
   ========================================================================== */
.woocommerce ul.products {
  margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product .button {
  margin: var(--space-3) var(--space-4) var(--space-4);
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.woocommerce div.product div.images img {
  background: var(--color-neutral-100);
  border-radius: var(--radius-lg);
}

.woocommerce div.product .product_title {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  line-height: var(--leading-tight);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--color-brand-red);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  font-family: var(--font-sans);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-pill);
  background: var(--color-brand-red);
  color: #fff;
  border: none;
  padding: 12px 26px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--color-brand-red-hover);
  color: #fff;
}

/* ==========================================================================
   Product page (PDP)
   ========================================================================== */
.pdp-shell {
  padding-top: var(--space-7);
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-9);
}

/* Gallery */
.pdp-gallery-hero {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-neutral-200);
}

.pdp-gallery-hero img,
.pdp-gallery-hero .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.pdp-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.pdp-gallery-thumb {
  flex: 1 1 72px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: none;
  transition: border-color var(--duration-base) var(--ease-out);
}

.pdp-gallery-thumb img,
.pdp-gallery-thumb .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  font-size: 10px;
  padding: 4px;
}

.pdp-gallery-thumb.is-active {
  border-color: var(--color-brand-red);
}

.pdp-gallery-zoom {
  position: absolute;
  right: var(--space-3);
  bottom: var(--space-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(26, 20, 15, 0.18);
  border-radius: var(--radius-full);
  background: rgba(255, 253, 249, 0.92);
  color: var(--color-text-primary);
  font-size: var(--text-lg);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.pdp-gallery-zoom:hover {
  background: var(--color-surface-card);
  border-color: var(--color-brand-red);
}

/* Info column */
.pdp-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pdp-brand-line {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.pdp-title {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  line-height: var(--leading-tight);
}

.pdp-badge {
  display: inline-flex;
  width: fit-content;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
}

.pdp-badge--unavailable {
  background: var(--color-error-tint);
  color: var(--color-error);
}

.pdp-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  width: fit-content;
}

.pdp-rating:hover {
  color: var(--color-brand-red);
}

.pdp-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-2) var(--space-3);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-sans);
}

.pdp-price-row .price {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-2);
}

.pdp-price-row ins {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
  text-decoration: none;
}

.pdp-price-row del {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.pdp-price-row .woocommerce-Price-amount {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
}

.pdp-price-row del .woocommerce-Price-amount {
  font-size: var(--text-sm);
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
}

.pdp-price-note {
  width: 100%;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.pdp-intro {
  max-width: 58ch;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

.pdp-intro p:last-child {
  margin-bottom: 0;
}

.pdp-field .field-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}

.pdp-size-guide-link {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-primary);
  text-decoration: underline;
  cursor: pointer;
}

.pdp-size-guide-link:hover {
  color: var(--color-brand-red);
}

.pdp-key-properties {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 var(--space-5);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.pdp-key-property {
  display: grid;
  gap: 0.25rem;
  padding: 0.8rem 0;
  font-family: var(--font-sans);
}

.pdp-key-property:nth-child(odd) {
  padding-right: var(--space-4);
}

.pdp-key-property:nth-child(even) {
  padding-left: var(--space-4);
  border-left: 1px solid var(--color-border);
}

.pdp-key-property:nth-child(n + 3) {
  border-top: 1px solid var(--color-border);
}

.pdp-key-property dt {
  color: var(--color-text-muted);
  font-size: 0.68rem;
  font-weight: var(--weight-medium);
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pdp-key-property dt::after {
  content: none;
}

.pdp-key-property dd {
  margin: 0;
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
}

.pdp-usps {
  margin-top: var(--space-5);
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-card);
}

.pdp-usps h2 {
  margin: 0 0 var(--space-4);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pdp-usps ul {
  display: grid;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.pdp-usps li {
  position: relative;
  margin: 0;
  padding-left: 1.8rem;
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  line-height: var(--leading-snug);
}

.pdp-usps li::before {
  content: '✓';
  position: absolute;
  top: 0.08em;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: var(--weight-bold);
  line-height: 1;
}

.pdp-swatches {
  display: flex;
  gap: var(--space-2);
}

.pdp-swatch {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  cursor: pointer;
  padding: 0;
  position: relative;
}

.pdp-swatch.is-selected {
  outline: 2px solid var(--color-brand-red);
  outline-offset: 2px;
}

.pdp-swatch--fixed {
  cursor: default;
  opacity: 1;
}

.pdp-swatch.is-unavailable,
.pdp-size-btn.is-unavailable {
  cursor: not-allowed;
  opacity: 0.4;
  filter: grayscale(60%);
}

.pdp-size-btn.is-unavailable {
  background: var(--color-surface-card-alt);
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.pdp-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.pdp-size-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  background: var(--color-surface-card);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: border-color var(--duration-base) var(--ease-out);
}

.pdp-size-btn:hover {
  border-color: var(--color-text-primary);
}

.pdp-size-btn.is-selected {
  border: 2px solid var(--color-brand-red);
}

.pdp-fit-hint {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  margin-top: var(--space-2);
}

/* WooCommerce variation form — attribute table hidden, our swatches
   drive it; only the price/availability/button area stays visible. */
.variations_form .variations {
  display: none;
}

.reset_variations {
  display: none;
}

.woocommerce-variation-price {
  font-family: var(--font-sans);
}

.woocommerce-variation-price .price {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
}

.woocommerce-variation-availability {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.woocommerce-variation-availability .stock.out-of-stock {
  color: var(--color-error);
}

.pdp-delivery-estimate {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-success-tint);
}

.pdp-delivery-estimate__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius-full);
  background: var(--color-brand-black);
  color: #fff;
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
}

.pdp-delivery-estimate--unavailable {
  background: var(--color-error-tint);
}

.pdp-delivery-estimate--unavailable .pdp-delivery-estimate__icon {
  background: var(--color-error);
}

.pdp-stock-notify {
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-card-alt);
}

.pdp-stock-notify__intro {
  margin: 0 0 var(--space-3);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.pdp-stock-notify__success {
  margin: 0;
  color: var(--color-brand-olive);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}

.pdp-stock-notify__errors {
  margin: 0 0 var(--space-3);
  padding: 0;
  list-style: none;
  color: var(--color-error);
  font-size: var(--text-sm);
}

.pdp-stock-notify__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.pdp-stock-notify__form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.pdp-stock-notify__form input[type="text"],
.pdp-stock-notify__form input[type="email"] {
  flex: 1 1 180px;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  background: var(--color-surface-card);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
}

.pdp-stock-notify__form .btn {
  flex: 0 0 auto;
}

.pdp-delivery-estimate__label,
.pdp-delivery-estimate strong {
  display: block;
}

.pdp-delivery-estimate__label {
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.pdp-delivery-estimate strong {
  margin-top: 3px;
  color: var(--color-text-primary);
  font-size: var(--text-base);
}

.pdp-delivery-estimate p {
  margin: 5px 0 0;
  color: var(--color-text-secondary);
  font-size: 11px;
  line-height: var(--leading-relaxed);
}

.pdp-delivery-estimate a {
  color: inherit;
  font-weight: var(--weight-semibold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pdp-delivery-estimate .pdp-delivery-estimate__notice {
  margin-top: var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px solid rgba(82, 99, 63, 0.2);
  color: var(--color-brand-olive);
  font-weight: var(--weight-semibold);
}

.pdp-add-to-cart .quantity {
  display: inline-flex;
}

.pdp-add-to-cart .qty {
  width: 64px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  margin-right: var(--space-2);
}

.woocommerce-variation-add-to-cart {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 44px;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--color-brand-red);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: background var(--duration-base) var(--ease-out);
}

.single_add_to_cart_button:hover {
  background: var(--color-brand-red-hover);
}

.single_add_to_cart_button.disabled {
  background: var(--color-neutral-300);
  cursor: not-allowed;
}

.pdp-save-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: fit-content;
}

.pdp-save-btn.is-saved {
  border-color: var(--color-brand-red);
  color: var(--color-brand-red);
}

.pdp-save-btn[data-pdp-save-icon] {
  color: var(--color-brand-red);
}

.pdp-trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
}

.pdp-trust .trust-line {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0;
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.pdp-trust .trust-line > span {
  flex: 0 0 1.25rem;
  color: var(--color-text-primary);
  text-align: center;
}

.pdp-trust .trust-line a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.18em;
  transition: color var(--duration-base) var(--ease-out), text-decoration-color var(--duration-base) var(--ease-out);
}

.pdp-trust .trust-line a:hover {
  color: var(--color-text-primary);
  text-decoration-color: currentColor;
}

.pdp-basis-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 var(--space-4);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.pdp-basis-note span {
  color: var(--color-text-muted);
}

.pdp-basis-note a {
  color: var(--color-text-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.pdp-basis-note a:hover {
  color: var(--color-brand-red);
}

/* Made-to-order process */
.pdp-process {
  margin: var(--space-9) 0;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-card-alt);
}

.pdp-process-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}

.pdp-process-header .section-label {
  margin-bottom: var(--space-3);
}

.pdp-process-header h2 {
  margin: 0 0 var(--space-2);
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: var(--leading-tight);
}

.pdp-process-header p,
.pdp-process-note p,
.pdp-process-step p {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.pdp-process-time {
  flex-shrink: 0;
  padding: 10px 16px;
  border: 1px solid var(--color-brand-red);
  border-radius: var(--radius-pill);
  color: var(--color-brand-red);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  white-space: nowrap;
}

.pdp-process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-5);
  margin: 0;
  padding: 0;
  list-style: none;
}

.pdp-process-list::before {
  content: "";
  position: absolute;
  top: 19px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: var(--color-border-strong);
}

.pdp-process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pdp-process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-3);
  border: 1px solid var(--color-brand-red);
  border-radius: var(--radius-full);
  background: var(--color-surface-card-alt);
  color: var(--color-brand-red);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
}

.pdp-process-step h3 {
  margin: 0 0 var(--space-2);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
}

.pdp-process-step p {
  font-size: var(--text-xs);
}

.pdp-process-note {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
  font-family: var(--font-sans);
}

.pdp-process-note strong {
  font-size: var(--text-sm);
}

.pdp-process-note p {
  font-size: var(--text-sm);
}

.pdp-design-section {
  margin: var(--space-9) 0;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-card);
}

.pdp-design-header {
  margin-bottom: var(--space-6);
}

.pdp-design-header .section-label {
  margin-bottom: var(--space-3);
}

.pdp-design-header h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: var(--leading-tight);
}

.pdp-design-body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-7);
  align-items: start;
}

.pdp-design-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.pdp-design-image {
  margin: 0;
}

.pdp-design-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.pdp-design-image figcaption {
  margin-top: var(--space-2);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-text-secondary);
  text-align: center;
}

.pdp-design-explanation {
  font-family: var(--font-sans);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.pdp-design-explanation p {
  margin: 0 0 var(--space-3);
}

.pdp-design-explanation p:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .pdp-design-body {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Benefit copy + accordion */
.benefit-copy {
  background: var(--color-surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  font-family: var(--font-sans);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-5);
}

.pdp-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-9);
}

.pdp-accordion .accordion-row {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface-card);
  transition: border-color var(--duration-base) var(--ease-out), background-color var(--duration-base) var(--ease-out);
}

.pdp-accordion .accordion-row:hover {
  border-color: var(--color-border-strong);
}

.pdp-accordion .accordion-row[open] {
  border-color: var(--color-border-strong);
  background: var(--color-surface-card-alt);
}

.pdp-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  list-style: none;
}

.pdp-accordion summary::-webkit-details-marker {
  display: none;
}

.pdp-accordion summary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-strong);
  font-size: var(--text-sm);
  transition: transform var(--duration-base) var(--ease-out);
}

.pdp-accordion details[open] summary span {
  transform: rotate(180deg);
}

.pdp-accordion .accordion-body {
  padding-top: var(--space-4);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* Reviews */
.reviews-top {
  display: flex;
  gap: var(--space-5);
  margin-bottom: var(--space-4);
  align-items: baseline;
}

.rating-num {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
}

.reviews-top-meta {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  align-self: center;
}

.woocommerce-Reviews-title {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  margin: var(--space-6) 0 var(--space-4);
}

.commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.commentlist .comment_container {
  display: flex;
  gap: var(--space-3);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-border);
}

.commentlist img.avatar {
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
}

.star-rating {
  position: relative;
  display: inline-block;
  height: 1em;
  width: 5.4em;
  font-family: sans-serif;
  font-size: 0;
  line-height: 1;
  letter-spacing: 2px;
}

.star-rating::before {
  content: "★★★★★";
  display: block;
  font-size: var(--text-sm);
  color: var(--color-border-strong);
}

.star-rating span {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  font-size: 0;
  color: var(--color-brand-red);
}

.star-rating span::before {
  content: "★★★★★";
  display: block;
  font-size: var(--text-sm);
}

.woocommerce-review__author {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
}

.woocommerce-review__dash,
.woocommerce-review__published-date {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.comment-text .description p {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-top: var(--space-2);
}

/* Review form: collapsed behind a subtle toggle rather than always open */
.pdp-review-toggle {
  margin-top: var(--space-6);
}

.pdp-review-toggle summary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  list-style: none;
}

.pdp-review-toggle summary:hover {
  color: var(--color-text-primary);
}

.pdp-review-toggle summary::-webkit-details-marker {
  display: none;
}

.pdp-review-toggle summary::after {
  content: '⌄';
  font-size: var(--text-sm);
  transition: transform var(--duration-base) var(--ease-out);
}

.pdp-review-toggle[open] summary::after {
  transform: rotate(180deg);
}

#review_form_wrapper {
  margin-top: var(--space-4);
}

.comment-reply-title {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
}

.comment-form-author,
.comment-form-email,
.comment-form-rating,
.comment-form-comment {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
}

.comment-form-author input,
.comment-form-email input,
.comment-form-rating select,
.comment-form-comment textarea {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 10px 12px;
}

/* WooCommerce's own script swaps the #rating select for a clickable
   star picker (p.stars > a.star-1..5) — style that widget here. */
.comment-form-rating .stars {
  margin: 0;
}

.comment-form-rating .stars span[role="group"] {
  display: flex;
  gap: 4px;
}

.comment-form-rating .stars a {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  font-size: 0;
  text-decoration: none;
}

.comment-form-rating .stars a::before {
  content: "★";
  position: absolute;
  inset: 0;
  font-size: var(--text-lg);
  line-height: 24px;
  color: var(--color-border-strong);
}

.comment-form-rating .stars a.is-filled::before,
.comment-form-rating .stars a.is-hover::before {
  color: var(--color-brand-red);
}

.form-submit input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 26px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--color-brand-red);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  cursor: pointer;
}

.form-submit input[type="submit"]:hover {
  background: var(--color-brand-red-hover);
}

/* Cross-sell — contrasting full-bleed section, same pattern as .daily-lobi */
.pdp-crosssell-section {
  background: var(--color-surface-card-alt);
  padding: var(--space-9) var(--gutter);
}

.pdp-crosssell-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pdp-crosssell-heading {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  margin: 0 0 var(--space-4);
}

.crosssell-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.pdp-crosssell-inner .crosssell-grid:last-child {
  margin-bottom: 0;
}

.crosssell-tile {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  color: inherit;
  text-decoration: none;
}

.crosssell-tile:hover {
  text-decoration: none;
}

.crosssell-tile img,
.crosssell-tile .photo-placeholder {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
}

.crosssell-tile-name {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-primary);
}

.crosssell-tile:hover .crosssell-tile-name {
  color: var(--color-brand-red);
}

.crosssell-tile-price {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* Sticky mobile add-to-cart bar */
.pdp-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--gutter);
  background: var(--color-surface-card);
  border-top: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-lg);
}

.pdp-sticky-bar[hidden] {
  display: none;
}

.pdp-sticky-bar-info {
  flex: 1;
  min-width: 0;
}

.pdp-sticky-bar-price {
  display: block;
  font-family: var(--font-sans);
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
}

.pdp-sticky-bar-price del {
  margin-right: 4px;
  font-weight: var(--weight-regular);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.pdp-sticky-bar-selection {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pdp-sticky-bar .btn {
  flex-shrink: 0;
}

/* Size guide dialog */
.pdp-size-guide {
  border: none;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  max-width: 480px;
  width: calc(100% - 48px);
  box-shadow: var(--shadow-lg);
}

.pdp-size-guide::backdrop {
  background: rgba(26, 20, 15, 0.5);
}

.pdp-size-guide h2 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.pdp-size-guide-note {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

.pdp-size-guide-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
}

.pdp-size-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
}

.pdp-size-guide-table th,
.pdp-size-guide-table td {
  padding: var(--space-2) var(--space-3);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.pdp-size-guide-table th {
  color: var(--color-text-muted);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
}

/* Product image zoom */
.pdp-image-zoom {
  width: min(92vw, 980px);
  max-width: 980px;
  max-height: 92vh;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface-card);
  box-shadow: var(--shadow-lg);
}

.pdp-image-zoom::backdrop {
  background: rgba(26, 20, 15, 0.74);
}

.pdp-image-zoom img {
  display: block;
  width: 100%;
  max-height: 92vh;
  object-fit: contain;
}

.pdp-image-zoom-close {
  position: absolute;
  z-index: 1;
  top: var(--space-3);
  right: var(--space-3);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Cart drawer
   ========================================================================== */
.single_add_to_cart_button.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* The drawer is the "view cart" affordance now, so hide the plain link
   WooCommerce's own AJAX handler appends next to the button on success. */
.added_to_cart {
  display: none;
}

.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(26, 20, 15, 0.5);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.cart-drawer-overlay.is-open {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 91;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.cart-drawer-panel {
  width: min(580px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-page);
  box-shadow: -8px 0 24px rgba(26, 20, 15, 0.12);
  transform: translateX(100%);
  transition: transform var(--duration-base) var(--ease-out);
  pointer-events: auto;
}

.cart-drawer.is-open .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 30px;
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer-header h2 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  margin: 0;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 30px 30px;
}

.widget_shopping_cart_content {
  min-height: 100%;
}

.woocommerce-mini-cart {
  list-style: none;
  margin: 0 0 var(--space-6);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.woocommerce-mini-cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: var(--space-4);
  min-height: 124px;
  padding: var(--space-4);
  padding-right: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-card);
}

.woocommerce-mini-cart-item .mini-cart-product-image {
  display: block;
  align-self: stretch;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-neutral-100);
}

.woocommerce-mini-cart-item .mini-cart-product-image img {
  width: 100%;
  height: 100%;
  min-height: 90px;
  object-fit: cover;
}

.mini-cart-product-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.woocommerce-mini-cart-item .mini-cart-product-name {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  line-height: 1.35;
  color: var(--color-text-primary);
  text-decoration: none;
}

.woocommerce-mini-cart-item .mini-cart-product-name:hover {
  color: var(--color-brand-red);
}

.mini-cart-product-meta {
  margin-top: 3px;
}

.mini-cart-product-meta:empty {
  display: none;
}

.mini-cart-product-summary {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-3);
}

.woocommerce-mini-cart-item .mini-cart-product-summary .quantity {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.mini-cart-product-summary strong {
  flex: 0 0 auto;
  font-size: var(--text-sm);
}

.mini-cart-product-meta dl.variation {
  margin: var(--space-1) 0 0;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.mini-cart-product-meta dl.variation dt,
.mini-cart-product-meta dl.variation dd {
  display: inline;
  margin: 0;
}

.mini-cart-product-meta dl.variation dt::after {
  content: ': ';
}

.mini-cart-product-meta dl.variation p {
  margin: 0;
  display: inline;
}

.woocommerce-mini-cart-item .remove {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  font-size: var(--text-lg);
  line-height: 1;
  color: var(--color-text-muted);
  text-decoration: none;
}

.woocommerce-mini-cart-item .remove:hover {
  background: var(--color-surface-card-alt);
  color: var(--color-brand-red);
}

.mini-cart-empty {
  display: grid;
  place-items: center;
  min-height: min(520px, 70vh);
  align-content: center;
  gap: var(--space-4);
  text-align: center;
}

.mini-cart-empty > span {
  color: var(--color-brand-red);
  font-size: 3.5rem;
}

.woocommerce-mini-cart__empty-message {
  color: var(--color-text-secondary);
  font-family: var(--font-serif);
  font-size: var(--text-lg);
}

.mini-cart-shipping {
  margin-bottom: var(--space-5);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: var(--color-success-tint);
}

.mini-cart-shipping-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  color: var(--color-brand-olive);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
}

.mini-cart-shipping-track {
  display: block;
  height: 6px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: rgba(85, 107, 47, 0.18);
}

.mini-cart-shipping-track span {
  display: block;
  width: var(--bll-shipping-progress);
  height: 100%;
  border-radius: inherit;
  background: var(--color-brand-olive);
  transition: width var(--duration-slow) var(--ease-out);
}

.woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  padding-top: var(--space-5);
  margin: 0 0 var(--space-5);
  border-top: 1px solid var(--color-border);
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
}

.woocommerce-mini-cart__total strong {
  font-weight: var(--weight-semibold);
}

.woocommerce-mini-cart__buttons {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: var(--space-3);
  margin: 0;
}

.woocommerce-mini-cart__buttons .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  text-decoration: none;
  text-align: center;
}

.woocommerce-mini-cart__buttons .button.checkout {
  background: var(--color-brand-red);
  color: #fff;
}

.woocommerce-mini-cart__buttons .button.checkout:hover {
  background: var(--color-brand-red-hover);
}

.woocommerce-mini-cart__buttons .button:not(.checkout) {
  background: transparent;
  border: 1px solid var(--color-border-strong);
  color: var(--color-text-primary);
}

.woocommerce-mini-cart__buttons .button:not(.checkout):hover {
  border-color: var(--color-text-primary);
}

/* ==========================================================================
   Product listing page (PLP)
   ========================================================================== */
.plp-shell {
  padding-top: var(--space-7);
}

.plp-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-6);
}

.plp-title {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.plp-desc {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.plp-subcollections {
  margin-bottom: var(--space-7);
}

.plp-subcollections-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: end;
  gap: var(--space-6);
  margin-bottom: var(--space-4);
}

.plp-subcollections-heading h2 {
  margin: var(--space-1) 0 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.plp-subcollections-heading p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.plp-subcollection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.plp-subcollection-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  min-height: 142px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-card);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: border-color var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out);
}

.plp-subcollection-card:hover {
  border-color: var(--color-border-strong);
  color: var(--color-text-primary);
  text-decoration: none;
  transform: translateY(-2px);
}

.plp-subcollection-media {
  display: block;
  min-height: 142px;
  overflow: hidden;
  background: var(--color-surface-card-alt);
}

.plp-subcollection-media img,
.plp-subcollection-media .photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 142px;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.plp-subcollection-card:hover .plp-subcollection-media img {
  transform: scale(1.04);
}

.plp-subcollection-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-4);
}

.plp-subcollection-copy strong {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  line-height: 1.1;
}

.plp-subcollection-copy > span {
  margin-top: var(--space-2);
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  line-height: 1.45;
}

.plp-subcollection-copy small {
  margin-top: auto;
  padding-top: var(--space-3);
  color: var(--color-text-primary);
  font-size: 11px;
  font-weight: var(--weight-semibold);
}

.plp-sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-card);
  margin-bottom: var(--space-5);
}

.plp-chip-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  background: transparent;
  color: var(--color-text-primary);
  cursor: pointer;
  text-decoration: none;
}

.chip:hover {
  background: var(--color-neutral-100);
  text-decoration: none;
}

.chip.is-active {
  border: 2px solid var(--color-brand-red);
  padding: 4px 11px;
}

.plp-clear-all {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: underline;
}

.plp-sort-info {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  white-space: nowrap;
}

.plp-sort-form select {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  background: var(--color-surface-card);
  color: var(--color-text-primary);
  cursor: pointer;
}

.plp-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-6);
  align-items: start;
}

.plp-filter-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.plp-sidebar-close {
  display: none;
}

.plp-filter-group .filter-title {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  text-decoration: none;
}

.filter-option:hover {
  color: var(--color-text-primary);
  text-decoration: none;
}

.filter-option.active {
  color: var(--color-text-primary);
  font-weight: var(--weight-medium);
}

.checkbox {
  font-size: var(--text-base);
  line-height: 1;
  color: var(--color-border-strong);
}

.filter-option.active .checkbox {
  color: var(--color-brand-red);
}

.size-row,
.swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.size-row .size-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: border-color var(--duration-base) var(--ease-out);
}

.size-row .size-btn:hover {
  border-color: var(--color-text-primary);
  text-decoration: none;
}

.size-row .size-btn.active {
  border: 2px solid var(--color-brand-red);
}

.swatch-row .swatch {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  display: block;
}

.swatch-row .swatch.active {
  outline: 2px solid var(--color-brand-red);
  outline-offset: 2px;
}

.plp-price-form input[type="range"] {
  width: 100%;
  accent-color: var(--color-brand-red);
}

.plp-price-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* Product cards */
.plp-results .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plp-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.plp-card-media {
  position: relative;
  display: block;
  margin-bottom: var(--space-3);
}

.plp-card-media img,
.plp-card-media .photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.plp-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  background: var(--color-surface-card);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  color: var(--color-text-secondary);
}

.plp-badge--unavailable {
  background: var(--color-error-tint);
  color: var(--color-error);
}

.plp-card.outofstock .plp-card-media img {
  opacity: 0.55;
}

.plp-wish {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius-full);
  background: var(--color-surface-card);
  color: var(--color-text-secondary);
  cursor: pointer;
  font-size: var(--text-md);
}

.plp-wish.is-saved {
  color: var(--color-brand-red);
}

.plp-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: inherit;
  text-decoration: none;
}

.plp-card-body:hover {
  text-decoration: none;
}

.plp-card-brand {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
}

.plp-card-collection {
  overflow: hidden;
  color: var(--color-text-secondary);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 1020px) {
  .plp-subcollection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .plp-subcollections-heading {
    display: block;
  }

  .plp-subcollections-heading p {
    margin-top: var(--space-2);
  }

  .plp-subcollection-grid {
    display: flex;
    width: calc(100% + var(--gutter));
    padding-right: var(--gutter);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .plp-subcollection-grid::-webkit-scrollbar {
    display: none;
  }

  .plp-subcollection-card {
    flex: 0 0 min(82vw, 330px);
    scroll-snap-align: start;
  }
}

.plp-card-title {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-primary);
}

.plp-card-body:hover .plp-card-title {
  color: var(--color-brand-red);
}

.plp-card-price {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-primary);
}

.plp-card-colors {
  display: flex;
  gap: 4px;
  margin-top: var(--space-1);
}

.plp-card-color {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
}

/* ==========================================================================
   Cart page
   ========================================================================== */
.cart-page-title {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  margin: var(--space-2) 0 var(--space-7);
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-8);
  align-items: start;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-5);
  padding-right: var(--space-8);
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.cart-item-thumb img {
  display: block;
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  min-width: 0;
}

.cart-item-name {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
  text-decoration: none;
}

.cart-item-name:hover {
  color: var(--color-brand-red);
}

.cart-item-meta {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.cart-item-meta p {
  margin: 0;
}

.cart-item-backorder {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-brand-red);
}

.cart-item-price {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  margin-top: var(--space-3);
}

.cart-item-qty .quantity {
  display: flex;
}

.cart-item-qty input {
  width: 64px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
}

.cart-item-subtotal {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  white-space: nowrap;
}

.cart-item-remove {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
}

.cart-item-remove:hover {
  background: var(--color-surface-card-alt);
  color: var(--color-brand-red);
}

.cart-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-2);
}

.cart-coupon {
  display: flex;
  gap: var(--space-2);
  flex: 1;
  min-width: 240px;
}

.cart-coupon input {
  flex: 1;
  height: 44px;
  padding: 0 var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
}

.cart-summary {
  background: var(--color-surface-card-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: sticky;
  top: calc(68px + var(--space-5));
}

.cart_totals h2 {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  margin: 0 0 var(--space-4);
}

.cart_totals table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-5);
}

.cart_totals tr {
  border-bottom: 1px solid var(--color-border);
}

.cart_totals tr:last-child {
  border-bottom: none;
}

.cart_totals th,
.cart_totals td {
  padding: var(--space-3) 0;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  text-align: left;
}

.cart_totals td {
  text-align: right;
}

.cart_totals tr.order-total th,
.cart_totals tr.order-total td {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
}

.wc-proceed-to-checkout .checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border-radius: var(--radius-pill);
  background: var(--color-brand-red);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  text-decoration: none;
}

.wc-proceed-to-checkout .checkout-button:hover {
  background: var(--color-brand-red-hover);
}

.cart-crosssell {
  margin-top: var(--space-9);
  padding: var(--space-7) var(--space-6);
  background: var(--color-surface-card-alt);
  border-radius: var(--radius-lg);
}

.cart-empty {
  max-width: 440px;
  margin: var(--space-8) auto var(--space-9);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
}

.cart-empty-icon {
  font-size: 40px;
}

.cart-empty h1 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  margin: 0;
}

.cart-empty p {
  font-family: var(--font-sans);
  color: var(--color-text-secondary);
  margin: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: var(--radius-full);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle-lines,
  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: transform var(--duration-base) var(--ease-out);
  }

  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    content: "";
    position: relative;
  }

  .menu-toggle-lines::before {
    top: -6px;
  }

  .menu-toggle-lines::after {
    top: -4px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
    top: -2px;
    transform: rotate(-45deg);
  }

  .site-navigation {
    position: fixed;
    inset: 68px 0 0;
    display: none;
    padding: var(--space-7) var(--gutter);
    background: var(--color-bg-page);
    z-index: 40;
  }

  .site-navigation.is-open {
    display: block;
  }

  .site-navigation ul {
    flex-direction: column;
    gap: var(--space-5);
  }

  .site-navigation a {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
  }

  .site-navigation .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: none;
    margin-top: var(--space-3);
    padding: 0 0 0 var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }

  .site-navigation .sub-menu a {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
    color: var(--color-text-secondary);
    padding: 0;
  }

  .hero h1,
  .blog-post-header h1,
  .blog-index-header h1,
  .page-heading h1,
  .not-found h1 {
    font-size: var(--text-3xl);
  }

  .philosophy-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-7);
  }

  .post-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pdp-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-5);
  }

  .pdp-title {
    font-size: var(--text-xl);
  }

  .pdp-process-header {
    flex-direction: column;
    gap: var(--space-4);
  }

  .pdp-process-list {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-5);
  }

  .pdp-process-list::before {
    top: 20px;
    right: auto;
    bottom: 20px;
    left: 19px;
    width: 1px;
    height: auto;
  }

  .pdp-process-step {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: var(--space-4);
    text-align: left;
  }

  .pdp-process-number {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .pdp-process-step h3 {
    align-self: end;
  }

  .pdp-process-note {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-2);
  }

  body.single-product > main {
    padding-bottom: 76px;
  }

  .plp-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .plp-sort-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .plp-sort-info {
    justify-content: space-between;
  }

  .plp-filter-sidebar {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: var(--color-bg-page);
    padding: var(--space-6) var(--gutter);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform var(--duration-slow) var(--ease-out);
  }

  .plp-filter-sidebar.is-open {
    transform: translateX(0);
  }

  .plp-sidebar-close {
    display: inline-flex;
    margin-bottom: var(--space-5);
  }

  .plp-results .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-summary {
    position: static;
  }

  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
    row-gap: var(--space-3);
  }

  .cart-item-thumb img {
    width: 72px;
    height: 72px;
  }

  .cart-drawer-panel {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .cart-drawer-header {
    padding: 18px 20px;
  }

  .cart-drawer-body {
    padding: 16px 14px 24px;
  }

  .woocommerce-mini-cart-item {
    grid-template-columns: 78px minmax(0, 1fr);
    min-height: 108px;
    padding: 12px;
    padding-right: 38px;
  }

  .woocommerce-mini-cart-item .mini-cart-product-image img {
    min-height: 76px;
  }

  .woocommerce-mini-cart__buttons {
    grid-template-columns: 1fr;
  }

  .cart-item {
    padding: var(--space-4);
    padding-right: var(--space-7);
  }

  .cart-item-controls {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-3);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .crosssell-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 861px) {
  .pdp-sticky-bar {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Editorial single blog post
   ========================================================================== */
.blog-post-main {
  padding: var(--space-7) var(--gutter) var(--space-9);
}

.blog-post-shell {
  display: flex;
  flex-direction: column;
  width: min(100%, 980px);
  padding: clamp(24px, 4vw, 40px);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.blog-post-shell > .breadcrumbs {
  order: 0;
  margin-bottom: var(--space-5);
}

.blog-post-header {
  order: 1;
  max-width: 760px;
  margin-bottom: var(--space-6);
}

.article-meta-top {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.article-category {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 12px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-pill);
  color: var(--color-brand-olive);
  font-weight: var(--weight-medium);
}

.article-category:hover {
  color: var(--color-brand-olive);
  background: var(--color-success-tint);
  text-decoration: none;
}

.blog-post-header h1 {
  max-width: 760px;
  margin-bottom: var(--space-4);
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: var(--weight-medium);
  line-height: 1.18;
}

.blog-post-lead {
  max-width: 660px;
  margin-bottom: var(--space-5);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-style: normal;
  line-height: var(--leading-normal);
  color: var(--color-text-secondary);
}

.article-byline {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.article-byline > img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: var(--radius-full);
}

.article-byline > p {
  font-size: var(--text-xs);
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.article-byline strong {
  color: var(--color-text-primary);
}

.article-updated {
  color: var(--color-text-muted);
}

.article-share {
  display: flex;
  gap: var(--space-2);
  margin-left: auto;
}

.article-share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-full);
  background: #fff;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out);
}

.article-share-button:hover,
.article-share-button.is-copied {
  color: var(--color-brand-red);
  background: var(--color-brand-red-tint);
}

.article-hero {
  order: 2;
  margin: 0 0 var(--space-7);
}

.article-hero img,
.article-hero-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.article-hero figcaption {
  margin-top: var(--space-2);
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.article-grid {
  order: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 40px;
  align-items: start;
}

.article-body-column {
  min-width: 0;
}

.blog-post .entry-content {
  font-size: 1.0625rem;
  line-height: 1.78;
}

.blog-post .entry-content > * {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.blog-post .entry-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.blog-post .entry-content h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
}

.blog-post .entry-content blockquote {
  margin: var(--space-6) 0;
  padding: var(--space-1) 0 var(--space-1) var(--space-5);
  border-left: 3px solid var(--color-brand-red);
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  line-height: var(--leading-snug);
  color: var(--color-text-primary);
}

.blog-post .entry-content blockquote p {
  margin: 0;
}

.blog-post .entry-content figure {
  margin: var(--space-6) 0;
}

.blog-post .entry-content figcaption {
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.blog-post .article-cta {
  margin-top: var(--space-7);
}

.article-sidebar {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.article-sidebar-box {
  padding: var(--space-4);
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: 10px;
}

.article-sidebar-label,
.article-section-label {
  margin-bottom: var(--space-3);
  font-size: 0.6875rem;
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.article-toc ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.article-toc li {
  border-bottom: 1px solid var(--color-border);
}

.article-toc li:last-child {
  border-bottom: 0;
}

.article-toc li.toc-level-3 {
  padding-left: var(--space-3);
}

.article-toc a {
  display: block;
  padding: 8px 0;
  font-size: var(--text-xs);
  line-height: 1.45;
  color: var(--color-text-secondary);
}

.article-toc a:hover {
  color: var(--color-text-primary);
  text-decoration: none;
}

.story-product-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.story-product {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-primary);
}

.story-product:hover {
  color: var(--color-text-primary);
  text-decoration: none;
}

.story-product-image {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--color-neutral-100);
}

.story-product-image img,
.story-product-image .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-product-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  font-size: 0.6875rem;
  line-height: 1.4;
}

.story-product-copy strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: var(--weight-medium);
}

.story-product-copy > span {
  color: var(--color-text-secondary);
}

.article-newsletter-card {
  text-align: center;
}

.article-newsletter-card > p:not(.article-sidebar-label) {
  margin-bottom: var(--space-3);
  font-size: var(--text-xs);
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.article-newsletter-card .btn {
  width: 100%;
}

.blog-post-tags {
  margin-top: var(--space-7);
}

.blog-post-tags .tag-pill {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
}

.author-box {
  margin-top: var(--space-7);
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
}

.article-comments {
  padding: var(--space-5);
  margin-top: var(--space-7);
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.article-comments .comment-list {
  padding: 0;
  margin: 0 0 var(--space-5);
  list-style: none;
}

.article-comments .comment {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}

.article-comments .comment-body {
  position: relative;
  min-height: 40px;
  padding-left: 52px;
}

.article-comments .comment-author img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: var(--radius-full);
}

.article-comments .comment-meta,
.article-comments .reply {
  font-size: var(--text-xs);
}

.article-comments .comment-content {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.article-comments .comment-reply-title {
  margin: 0 0 var(--space-4);
  font-size: var(--text-lg);
}

.article-comments .comment-form > p {
  margin-top: var(--space-3);
}

.article-comments input:not([type="submit"]),
.article-comments textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  font: inherit;
}

.article-related {
  order: 4;
  margin-top: var(--space-8);
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.article-related-card {
  overflow: hidden;
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.article-related-card a {
  display: block;
  height: 100%;
  color: var(--color-text-primary);
}

.article-related-card a:hover {
  color: var(--color-text-primary);
  text-decoration: none;
}

.article-related-card img,
.article-related-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  object-fit: cover;
}

.article-related-copy {
  padding: var(--space-3) var(--space-4) var(--space-4);
}

.article-related-copy > span {
  display: block;
  margin-bottom: var(--space-1);
  font-size: 0.6875rem;
  color: var(--color-brand-olive);
}

.article-related-copy h3 {
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  line-height: var(--leading-snug);
}

.article-mobile-newsletter {
  display: none;
}

#lobi-mondays {
  scroll-margin-top: 88px;
}

@media (max-width: 860px) {
  .blog-post-main {
    padding: 0;
    background: #fff;
  }

  .blog-post-shell {
    width: 100%;
    margin: 0;
    padding: var(--space-4) var(--gutter) var(--space-8);
    border-radius: 0;
    box-shadow: none;
  }

  .blog-post-shell > .breadcrumbs {
    order: 0;
    margin-bottom: var(--space-4);
  }

  .article-hero {
    order: 1;
    margin-right: calc(var(--gutter) * -1);
    margin-bottom: var(--space-5);
    margin-left: calc(var(--gutter) * -1);
  }

  .article-hero img,
  .article-hero-placeholder {
    aspect-ratio: 4 / 3;
    border-radius: 0;
  }

  .article-hero figcaption {
    padding: 0 var(--gutter);
  }

  .blog-post-header {
    order: 2;
    margin-bottom: var(--space-6);
  }

  .blog-post-header h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .article-byline {
    align-items: flex-start;
  }

  .article-byline > p {
    flex: 1;
  }

  .article-updated {
    display: block;
  }

  .article-grid {
    order: 3;
    display: flex;
    flex-direction: column;
    gap: var(--space-7);
  }

  .article-sidebar {
    position: static;
    width: 100%;
  }

  .article-toc,
  .article-newsletter-card {
    display: none;
  }

  .story-products {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .story-product-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-product {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-product-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .article-related {
    order: 4;
    margin-top: var(--space-7);
  }

  .article-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-related-card:nth-child(3) {
    display: none;
  }

  .article-mobile-newsletter {
    position: sticky;
    z-index: 30;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: 10px var(--gutter);
    border-top: 1px solid var(--color-border-strong);
    background: rgba(255, 255, 255, 0.96);
    color: var(--color-text-secondary);
    font-size: var(--text-xs);
    backdrop-filter: blur(12px);
  }

  .article-mobile-newsletter:hover {
    color: var(--color-text-secondary);
    text-decoration: none;
  }

  .article-mobile-newsletter strong {
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    background: var(--color-brand-red);
    color: #fff;
  }
}

@media (max-width: 560px) {
  .article-share {
    gap: var(--space-1);
  }

  .article-share-button {
    width: 34px;
    height: 34px;
  }

  .blog-post .entry-content {
    font-size: var(--text-base);
  }

  .article-comments {
    padding: var(--space-4);
  }

  .article-related-copy {
    padding: 10px 12px 14px;
  }

  .article-related-copy h3 {
    font-size: var(--text-sm);
  }
}

/* ==========================================================================
   Homepage — editorial commerce
   ========================================================================== */
.home-main {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(211, 36, 22, 0.05), transparent 25rem),
    var(--color-brand-cream);
}

.home-benefit-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  min-height: 34px;
  padding: 7px var(--gutter);
  background: var(--color-brand-black);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.home-mobile-search {
  display: none;
}

.home-hero,
.home-trust-strip,
.home-daily-lobi,
.home-manifesto,
.home-main > .newsletter-home,
.home-editor-content {
  width: min(calc(100% - (2 * var(--gutter))), var(--max-width));
  margin-inline: auto;
}

.home-hero {
  position: relative;
  min-height: 650px;
  margin-top: var(--space-5);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-brand-black);
  isolation: isolate;
}

.home-hero-media,
.home-hero-shade {
  position: absolute;
  inset: 0;
}

.home-hero-media img,
.home-hero-media .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-media img {
  transition: transform 1.2s var(--ease-out);
}

.home-hero:hover .home-hero-media img {
  transform: scale(1.015);
}

.home-hero-placeholder {
  border: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(211, 36, 22, 0.38), transparent 27%),
    linear-gradient(135deg, #5d4b3b, #1a1a1a 72%);
  color: transparent;
}

.home-hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 12, 9, 0.82) 0%, rgba(16, 12, 9, 0.26) 62%, rgba(16, 12, 9, 0.08) 100%),
    linear-gradient(0deg, rgba(16, 12, 9, 0.38), transparent 55%);
}

.home-hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 6vw, 80px);
  bottom: clamp(34px, 8vw, 86px);
  max-width: 680px;
  color: #fff;
}

.home-hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.home-hero-copy h1 {
  max-width: 670px;
  margin-top: var(--space-3);
  font-size: clamp(3.25rem, 6.1vw, 5.7rem);
  line-height: 0.98;
}

.home-hero-copy > p {
  max-width: 610px;
  margin-top: var(--space-5);
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: #fff;
  background: #fff;
  color: var(--color-brand-black);
}

.home-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: var(--space-4);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 250, 0.92);
}

.home-trust-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 62px;
  padding: 12px 16px;
  color: var(--color-text-secondary);
  font-size: 12px;
  text-align: center;
}

.home-trust-strip span + span {
  border-left: 1px solid var(--color-border);
}

.home-trust-strip strong {
  color: var(--color-brand-red);
  font-size: 15px;
}

.home-section {
  width: min(100%, calc(var(--max-width) + (2 * var(--gutter))));
  margin-inline: auto;
  padding: var(--space-9) var(--gutter) 0;
}

.home-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}

.home-section-heading h2 {
  margin-top: var(--space-2);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.home-section-heading > a {
  flex: 0 0 auto;
  margin-bottom: 8px;
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.home-collection-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-surface-card-alt);
  color: #fff;
  isolation: isolate;
}

.home-collection-card > img,
.home-collection-card > .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.home-collection-card > .photo-placeholder {
  position: absolute;
  inset: 0;
  border: 0;
}

.home-collection-no-spang > .photo-placeholder {
  background: linear-gradient(145deg, #b9c2a5, #667259);
}

.home-collection-lobi-worldwide > .photo-placeholder {
  background: linear-gradient(145deg, #cab89e, #785f48);
}

.home-collection-lobi-for-yourself > .photo-placeholder {
  background: linear-gradient(145deg, #d4a199, #8b4c45);
}

.home-collection-lobi-sranang > .photo-placeholder {
  background: linear-gradient(145deg, #c29b65, #664b2e);
}

.home-collection-card:hover {
  color: #fff;
  text-decoration: none;
}

.home-collection-card:hover > img {
  transform: scale(1.035);
}

.home-collection-shade {
  position: absolute;
  z-index: 1;
  inset: 45% 0 0;
  background: linear-gradient(0deg, rgba(16, 12, 9, 0.78), transparent);
}

.home-collection-copy {
  position: absolute;
  z-index: 2;
  right: var(--space-5);
  bottom: var(--space-5);
  left: var(--space-5);
  display: flex;
  flex-direction: column;
}

.home-collection-copy strong {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.1;
}

.home-collection-copy span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
}

.home-daily-lobi {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-9);
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-card);
}

.home-daily-icon {
  flex: 0 0 auto;
  color: var(--color-brand-red);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1;
}

.home-daily-lobi p {
  max-width: 900px;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.65rem);
  line-height: 1.25;
}

.home-daily-lobi div > span {
  display: block;
  margin-top: var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.home-product-card a {
  display: block;
  color: var(--color-text-primary);
}

.home-product-card a:hover {
  text-decoration: none;
}

.home-product-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  background: var(--color-neutral-100);
}

.home-product-media img,
.home-product-media .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.home-product-card:hover .home-product-media img {
  transform: scale(1.025);
}

.home-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 253, 250, 0.92);
  color: var(--color-brand-red);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.home-product-copy {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) 2px 0;
  font-size: var(--text-sm);
}

.home-product-copy strong {
  line-height: 1.35;
}

.home-product-copy > span {
  flex: 0 0 auto;
  color: var(--color-text-secondary);
}

.home-manifesto {
  margin-top: var(--space-9);
  padding: clamp(58px, 10vw, 120px) clamp(24px, 8vw, 110px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 20%, rgba(211, 36, 22, 0.28), transparent 30%),
    var(--color-brand-black);
  color: #fff;
  text-align: center;
}

.home-manifesto blockquote {
  max-width: 930px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.7vw, 4.4rem);
  line-height: 1.12;
}

.home-manifesto p {
  margin-top: var(--space-5);
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.home-manifesto .btn {
  margin-top: var(--space-6);
}

.home-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.home-story-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-card);
}

.home-story-card > a {
  display: block;
  color: var(--color-text-primary);
}

.home-story-card > a:hover {
  text-decoration: none;
}

.home-story-card img,
.home-story-card > a > .photo-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-story-copy {
  display: block;
  padding: var(--space-5);
}

.home-story-copy > span {
  color: var(--color-brand-red);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

.home-story-copy h3 {
  margin-top: var(--space-2);
  font-size: var(--text-xl);
}

.home-story-copy p {
  margin-top: var(--space-3);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.home-instagram-feed {
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.home-instagram-fallback {
  display: grid;
  place-content: center;
  min-height: 320px;
  padding: var(--space-6);
  background:
    radial-gradient(circle at 75% 25%, rgba(211, 36, 22, 0.35), transparent 30%),
    var(--color-brand-black);
  color: #fff;
  text-align: center;
}

.home-instagram-fallback:hover {
  color: #fff;
  text-decoration: none;
}

.home-instagram-fallback > span {
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

.home-instagram-fallback strong {
  margin-top: var(--space-2);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
}

.home-instagram-feed:has(.eapps-instagram-feed:not(.eapps-instagram-feed-has-error)) .home-instagram-fallback {
  display: none;
}

.home-main > .newsletter-home {
  margin-top: var(--space-9);
  margin-bottom: var(--space-9);
  padding: clamp(48px, 7vw, 86px) var(--gutter);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.1), transparent 30%),
    var(--color-brand-olive);
}

.newsletter-home .newsletter-inner {
  max-width: 720px;
}

.newsletter-home .eyebrow,
.newsletter-home p {
  color: rgba(255, 255, 255, 0.72);
}

.newsletter-home h2 {
  color: #fff;
}

.home-editor-content {
  padding-bottom: var(--space-9);
}

#collectie,
#daily-lobi,
#verhaal {
  scroll-margin-top: 100px;
}

.site-footer {
  padding: clamp(54px, 8vw, 92px) var(--gutter) var(--space-5);
  border-top: 1px solid var(--color-border);
  background: #fffdfa;
  color: var(--color-text-primary);
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.8fr) repeat(3, minmax(130px, 1fr));
  align-items: start;
  gap: clamp(32px, 6vw, 82px);
  max-width: var(--max-width);
}

.site-footer .footer-brand {
  display: block;
}

.site-footer .footer-brand img {
  width: min(210px, 100%);
  height: auto;
  filter: none;
}

.site-footer .footer-brand p {
  max-width: 310px;
  margin-top: var(--space-5);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.footer-social-link {
  display: inline-flex;
  gap: var(--space-2);
  margin-top: var(--space-5);
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
}

.footer-column h2 {
  margin-bottom: var(--space-4);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

.site-footer .footer-nav {
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.site-footer .footer-nav a,
.site-footer .footer-links a {
  color: var(--color-text-secondary);
}

.site-footer .footer-nav a:hover,
.site-footer .footer-links a:hover {
  color: var(--color-brand-red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  max-width: var(--max-width);
  margin: var(--space-8) auto 0;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 11px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  .home-hero {
    min-height: 580px;
  }

  .home-collection-grid,
  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-collection-card {
    min-height: 470px;
  }

  .site-footer .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .home-benefit-bar {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .home-benefit-bar::-webkit-scrollbar,
  .home-collection-grid::-webkit-scrollbar,
  .home-product-grid::-webkit-scrollbar,
  .home-story-grid::-webkit-scrollbar {
    display: none;
  }

  .home-mobile-search {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px var(--gutter) 0;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    background: var(--color-surface-card);
  }

  .home-mobile-search input {
    width: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font: inherit;
    font-size: var(--text-sm);
  }

  .home-hero {
    min-height: 570px;
    margin-top: 12px;
  }

  .home-hero-shade {
    background:
      linear-gradient(0deg, rgba(16, 12, 9, 0.88) 0%, rgba(16, 12, 9, 0.2) 75%),
      linear-gradient(90deg, rgba(16, 12, 9, 0.22), transparent);
  }

  .home-hero-copy {
    right: 24px;
    bottom: 30px;
    left: 24px;
  }

  .home-hero-copy h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.2rem);
    line-height: 1.02;
  }

  .home-hero-copy > p {
    margin-top: var(--space-4);
    font-size: var(--text-sm);
  }

  .home-hero-actions {
    margin-top: var(--space-5);
  }

  .home-hero-actions .btn {
    flex: 1 1 160px;
    padding-inline: 16px;
  }

  .home-trust-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .home-trust-strip span {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .home-section {
    padding-top: var(--space-8);
  }

  .home-section-heading {
    align-items: flex-end;
    margin-bottom: var(--space-5);
  }

  .home-section-heading h2 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  .home-section-heading > a {
    font-size: 12px;
  }

  .home-collection-grid,
  .home-product-grid,
  .home-story-grid {
    display: flex;
    width: calc(100% + var(--gutter));
    padding-right: var(--gutter);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-collection-card {
    flex: 0 0 min(76vw, 310px);
    min-height: 410px;
    scroll-snap-align: start;
  }

  .home-daily-lobi {
    align-items: flex-start;
    gap: var(--space-4);
    margin-top: var(--space-8);
    padding: var(--space-5);
  }

  .home-daily-icon {
    font-size: 2.5rem;
  }

  .home-daily-lobi p {
    font-size: 1.35rem;
  }

  .home-product-card {
    flex: 0 0 min(64vw, 260px);
    scroll-snap-align: start;
  }

  .home-manifesto {
    margin-top: var(--space-8);
    padding-block: var(--space-8);
  }

  .home-manifesto blockquote {
    font-size: clamp(1.8rem, 9vw, 2.9rem);
  }

  .home-story-card {
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: start;
  }

  .home-instagram-feed {
    min-height: 280px;
  }

  .home-main > .newsletter-home {
    margin-top: var(--space-8);
    margin-bottom: var(--space-8);
    padding: var(--space-8) var(--space-5);
  }

  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-7) var(--space-5);
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .home-hero,
  .home-trust-strip,
  .home-daily-lobi,
  .home-manifesto,
  .home-main > .newsletter-home,
  .home-editor-content {
    width: calc(100% - 24px);
  }

  .home-mobile-search {
    margin-inline: 12px;
  }

  .home-hero {
    min-height: 535px;
  }

  .home-hero-copy {
    right: 20px;
    bottom: 22px;
    left: 20px;
  }

  .home-hero-copy .eyebrow {
    font-size: 10px;
  }

  .home-hero-copy h1 {
    font-size: clamp(2.25rem, 10.5vw, 2.8rem);
  }

  .home-hero-actions {
    gap: 8px;
  }

  .home-section {
    padding-inline: 12px;
  }

  .home-section-heading {
    gap: var(--space-3);
  }

  .home-section-heading .eyebrow {
    font-size: 9px;
  }

  .home-section-heading > a {
    max-width: 90px;
    text-align: right;
  }

  .home-collection-grid,
  .home-product-grid,
  .home-story-grid {
    width: calc(100% + 12px);
    padding-right: 12px;
  }

  .home-collection-card {
    flex-basis: 78vw;
  }

  .home-product-copy {
    display: block;
  }

  .home-product-copy > span {
    display: block;
    margin-top: 3px;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: var(--space-7);
  }
}

/* ==========================================================================
   Checkout — calm, Shopify-inspired one-page flow
   ========================================================================== */
body.woocommerce-checkout .shop-shell {
  width: min(calc(100% - (2 * var(--gutter))), var(--max-width));
  max-width: none;
  padding-top: clamp(36px, 6vw, 76px);
  padding-bottom: var(--space-9);
}

body.woocommerce-checkout .site-header {
  position: static;
}

body.woocommerce-checkout .header-inner {
  justify-content: center;
  min-height: 76px;
}

body.woocommerce-checkout .site-navigation,
body.woocommerce-checkout .header-actions {
  display: none;
}

body.woocommerce-checkout .brand img,
body.woocommerce-checkout .brand .custom-logo {
  height: 30px;
}

body.woocommerce-checkout .entry-content > * {
  max-width: none;
}

body.woocommerce-checkout .entry-content > * + * {
  margin-top: 0;
}

body.woocommerce-checkout .entry-content h2,
body.woocommerce-checkout .entry-content h3 {
  margin-top: 0;
}

.woocommerce-checkout .woocommerce-form-login-toggle,
.woocommerce-checkout .woocommerce-form-coupon-toggle {
  max-width: 720px;
  margin: 0 0 var(--space-3);
}

.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-error {
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-card);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.woocommerce-checkout .woocommerce-error {
  display: block;
  border-color: var(--color-error);
  background: var(--color-error-tint);
  color: var(--color-error);
}

.woocommerce-checkout .woocommerce-error li + li {
  margin-top: var(--space-1);
}

.woocommerce-checkout .checkout_coupon,
.woocommerce-checkout .woocommerce-form-login {
  max-width: 720px;
  margin: 0 0 var(--space-5);
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-card);
}

.woocommerce-checkout .checkout_coupon {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3);
}

.woocommerce-checkout .checkout_coupon > p:first-child {
  grid-column: 1 / -1;
}

.woocommerce-checkout .checkout_coupon .form-row {
  margin: 0;
}

.woocommerce-checkout .checkout_coupon input,
.woocommerce-checkout .checkout_coupon button,
.woocommerce-checkout .woocommerce-form-login input,
.woocommerce-checkout .woocommerce-form-login button {
  min-height: 48px;
  border-radius: var(--radius-md);
}

.woocommerce-checkout .checkout_coupon button,
.woocommerce-checkout .woocommerce-form-login button {
  padding: 0 22px;
  border: 1px solid var(--color-border-strong);
  background: transparent;
  color: var(--color-text-primary);
  font-weight: var(--weight-semibold);
}

.bll-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: start;
  gap: clamp(40px, 6vw, 84px);
}

.bll-checkout-main {
  min-width: 0;
}

.bll-checkout-sidebar {
  align-self: stretch;
}

.bll-checkout-intro {
  margin-bottom: var(--space-6);
}

.bll-checkout-steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

.bll-checkout-steps a {
  color: var(--color-text-secondary);
}

.bll-checkout-steps strong {
  color: var(--color-brand-red);
}

.bll-checkout-intro h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.bll-checkout-intro p {
  margin-top: var(--space-3);
  color: var(--color-text-secondary);
}

.bll-checkout-card {
  margin-bottom: var(--space-5);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-card);
}

.bll-checkout-card-heading {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.bll-checkout-card-heading > span {
  display: inline-grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: var(--radius-full);
  background: var(--color-brand-black);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
}

.bll-checkout-card-heading h2 {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  letter-spacing: 0;
}

.bll-checkout-card-heading p {
  margin-top: 3px;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.woocommerce-checkout .form-row {
  min-width: 0;
  margin: 0;
}

.woocommerce-checkout .form-row-wide,
.woocommerce-checkout #billing_country_field,
.woocommerce-checkout #billing_address_1_field,
.woocommerce-checkout #billing_address_2_field,
.woocommerce-checkout #billing_phone_field,
.woocommerce-checkout #billing_email_field,
.woocommerce-checkout #billing_company_field,
.woocommerce-checkout #shipping_country_field,
.woocommerce-checkout #shipping_address_1_field,
.woocommerce-checkout #shipping_address_2_field,
.woocommerce-checkout #shipping_company_field {
  grid-column: 1 / -1;
}

.woocommerce-checkout .bll-field-contact {
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-border);
}

.woocommerce-checkout .form-row label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
}

.woocommerce-checkout .required {
  color: var(--color-brand-red);
  text-decoration: none;
}

.woocommerce-checkout .optional {
  color: var(--color-text-muted);
  font-weight: var(--weight-regular);
}

.woocommerce-checkout .input-text,
.woocommerce-checkout select,
.woocommerce-checkout .select2-selection {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  outline: 0;
  background: #fff;
  color: var(--color-text-primary);
  font: inherit;
  font-size: var(--text-sm);
  transition: border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.woocommerce-checkout textarea.input-text {
  min-height: 96px;
  padding-block: 13px;
  resize: vertical;
}

.woocommerce-checkout .input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout .select2-container--focus .select2-selection {
  border-color: var(--color-brand-black);
  box-shadow: 0 0 0 2px rgba(26, 26, 26, 0.08);
}

.woocommerce-checkout .woocommerce-invalid .input-text,
.woocommerce-checkout .woocommerce-invalid select {
  border-color: var(--color-error);
  box-shadow: 0 0 0 2px var(--color-error-tint);
}

.woocommerce-checkout .select2-container {
  width: 100% !important;
}

.woocommerce-checkout .select2-selection {
  display: flex;
  align-items: center;
}

.woocommerce-checkout .select2-selection__rendered {
  padding: 0 !important;
}

.woocommerce-checkout .select2-selection__arrow {
  top: 13px !important;
  right: 10px !important;
}

.woocommerce-shipping-fields {
  margin-top: var(--space-5);
}

#ship-to-different-address {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  letter-spacing: 0;
}

#ship-to-different-address label,
.woocommerce-account-fields label,
.woocommerce-checkout .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
}

.woocommerce-checkout input[type="checkbox"],
.woocommerce-checkout input[type="radio"] {
  accent-color: var(--color-brand-red);
}

.shipping_address {
  margin-top: var(--space-5);
}

.woocommerce-additional-fields {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
}

.bll-checkout-payment-card {
  margin-bottom: var(--space-5);
}

.woocommerce-checkout-payment {
  background: transparent;
}

.wc_payment_methods {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wc_payment_method {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
}

.wc_payment_method + .wc_payment_method {
  margin-top: var(--space-2);
}

.wc_payment_method > input {
  position: absolute;
  margin: 20px 0 0 16px;
}

.wc_payment_method > label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 14px 16px 14px 44px;
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
}

.wc_payment_method > label img {
  max-height: 28px;
  width: auto;
}

.payment_box {
  padding: 0 16px 16px 44px;
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
}

.payment_box p {
  margin: 0;
}

.place-order {
  margin-top: var(--space-5) !important;
}

.woocommerce-terms-and-conditions-wrapper {
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
}

#place_order {
  width: 100%;
  min-height: 56px;
  margin-top: var(--space-4);
  padding: 0 28px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--color-brand-red);
  color: #fff;
  font: inherit;
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  cursor: pointer;
  transition: background var(--duration-base) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

#place_order:hover {
  background: var(--color-brand-red-hover);
}

#place_order:active {
  transform: translateY(1px);
}

.bll-checkout-assurances {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding: 0 var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

.bll-checkout-assurances span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bll-checkout-assurances strong {
  color: var(--color-brand-olive);
}

.bll-checkout-summary {
  position: sticky;
  top: 98px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--radius-lg);
  background: var(--color-surface-card-alt);
}

.bll-checkout-summary > h2 {
  margin-bottom: var(--space-5);
  font-size: var(--text-xl);
}

.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 13px 0;
  border: 0;
  font-size: var(--text-sm);
  text-align: left;
  vertical-align: middle;
}

.woocommerce-checkout-review-order-table td:last-child {
  text-align: right;
}

.woocommerce-checkout-review-order-table tbody tr {
  border-bottom: 1px solid var(--color-border);
}

.woocommerce-checkout-review-order-table tbody .product-name {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-right: var(--space-3);
}

.checkout-product-image {
  position: relative;
  display: block;
  flex: 0 0 68px;
  overflow: visible;
  width: 68px;
  height: 68px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
}

.checkout-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.checkout-product-image > span {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: var(--radius-full);
  background: var(--color-neutral-700);
  color: #fff;
  font-size: 10px;
  font-weight: var(--weight-bold);
}

.checkout-product-copy {
  display: block;
  min-width: 0;
}

.checkout-product-copy strong {
  display: block;
  line-height: 1.35;
}

.checkout-product-copy dl {
  margin: 3px 0 0;
  color: var(--color-text-muted);
  font-size: 11px;
}

.checkout-product-copy dt,
.checkout-product-copy dd {
  display: inline;
  margin: 0;
}

.checkout-product-copy dt::after {
  content: ": ";
}

.checkout-product-copy p {
  display: inline;
}

.woocommerce-checkout-review-order-table tfoot tr:first-child th,
.woocommerce-checkout-review-order-table tfoot tr:first-child td {
  padding-top: var(--space-5);
}

.woocommerce-checkout-review-order-table tfoot th {
  color: var(--color-text-secondary);
  font-weight: var(--weight-regular);
}

.woocommerce-checkout-review-order-table .woocommerce-shipping-totals th,
.woocommerce-checkout-review-order-table .woocommerce-shipping-totals td {
  vertical-align: top;
}

.woocommerce-checkout-review-order-table .woocommerce-shipping-methods {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-shipping-methods li + li {
  margin-top: var(--space-2);
}

.woocommerce-shipping-methods label {
  margin-left: 4px;
}

.woocommerce-checkout-review-order-table .order-total {
  border-top: 1px solid var(--color-border-strong);
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
  padding-top: var(--space-5);
  color: var(--color-text-primary);
  font-size: var(--text-md);
  font-weight: var(--weight-bold);
}

.bll-checkout-edit-cart {
  display: inline-block;
  margin-top: var(--space-4);
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.woocommerce-checkout .blockUI.blockOverlay {
  border-radius: var(--radius-lg);
  background: rgba(250, 246, 241, 0.72) !important;
}

@media (max-width: 960px) {
  .bll-checkout-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-6);
  }

  .bll-checkout-sidebar {
    order: -1;
  }

  .bll-checkout-summary {
    position: static;
  }
}

@media (max-width: 620px) {
  body.woocommerce-checkout .shop-shell {
    width: calc(100% - 24px);
    padding-top: var(--space-6);
  }

  .bll-checkout-intro h1 {
    font-size: 2.4rem;
  }

  .bll-checkout-card,
  .bll-checkout-summary {
    padding: 20px 16px;
  }

  .woocommerce-billing-fields__field-wrapper,
  .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  .woocommerce-checkout .form-row {
    grid-column: 1 / -1;
  }

  .woocommerce-checkout .checkout_coupon {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-product-image {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
  }

  .woocommerce-checkout-review-order-table th,
  .woocommerce-checkout-review-order-table td {
    font-size: var(--text-xs);
  }

  .bll-checkout-assurances {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Full-height checkout split, matching the familiar Shopify composition. */
@media (min-width: 961px) {
  body.woocommerce-checkout {
    background: #fff;
  }

  body.woocommerce-checkout .site-header {
    border-bottom-color: #dedede;
    background: #fff;
  }

  body.woocommerce-checkout .checkout-shell {
    position: relative;
    width: 100%;
    max-width: none;
    padding-inline: 0;
    isolation: isolate;
  }

  body.woocommerce-checkout .checkout-shell::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: calc(50% + 95px);
    border-left: 1px solid #dedede;
    background: #f5f5f5;
    content: "";
  }

  body.woocommerce-checkout .checkout-shell > article,
  body.woocommerce-checkout .checkout-shell .entry-content {
    width: 100%;
  }

  body.woocommerce-checkout .woocommerce-form-login-toggle,
  body.woocommerce-checkout .woocommerce-form-coupon-toggle,
  body.woocommerce-checkout .checkout_coupon,
  body.woocommerce-checkout .woocommerce-form-login {
    width: min(calc(58% - 64px), 680px);
    margin-left: max(var(--gutter), calc((100vw - var(--max-width)) / 2));
  }

  .bll-checkout-layout {
    width: min(calc(100% - (2 * var(--gutter))), var(--max-width));
    margin-inline: auto;
    grid-template-columns: 58% 42%;
    gap: 0;
  }

  .bll-checkout-main {
    padding-right: clamp(42px, 5vw, 72px);
  }

  .bll-checkout-sidebar {
    padding: 0 0 var(--space-9) clamp(38px, 4vw, 58px);
  }

  .bll-checkout-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .bll-checkout-card + .bll-checkout-card,
  .bll-checkout-payment-card {
    margin-top: var(--space-8);
    padding-top: var(--space-7);
    border-top: 1px solid var(--color-border);
  }

  .bll-checkout-summary {
    top: 32px;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }
}

/* ==========================================================================
   Order confirmation — the final step of the checkout journey
   ========================================================================== */
.bll-order-confirmation {
  width: min(calc(100% - (2 * var(--gutter))), var(--max-width));
  margin-inline: auto;
}

.bll-order-steps {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

.bll-order-steps strong {
  color: var(--color-text-primary);
}

.bll-order-confirmation-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}

.bll-order-status-icon {
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: var(--radius-full);
  background: var(--color-success-tint);
  color: var(--color-brand-olive);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
}

.bll-order-confirmation-header h1,
.bll-order-status-card h1 {
  margin-top: var(--space-2);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.bll-order-confirmation-header p:last-child,
.bll-order-status-card > p:not(.eyebrow) {
  max-width: 660px;
  margin-top: var(--space-3);
  color: var(--color-text-secondary);
}

.bll-order-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  margin: 0 0 var(--space-6);
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  list-style: none;
}

.bll-order-overview li {
  min-width: 0;
  padding: var(--space-4) var(--space-5);
}

.bll-order-overview li + li {
  border-left: 1px solid var(--color-border);
}

.bll-order-overview li:nth-child(3) {
  border-top: 1px solid var(--color-border);
  border-left: 0;
}

.bll-order-overview li:nth-child(4) {
  border-top: 1px solid var(--color-border);
}

.bll-order-overview li > span,
.bll-order-overview strong {
  display: block;
}

.bll-order-overview li > span {
  margin-bottom: 4px;
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.bll-order-overview strong {
  overflow-wrap: anywhere;
  font-size: var(--text-sm);
}

.bll-order-confirmation-layout {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(300px, 42%);
  align-items: start;
}

.bll-order-confirmation-main {
  min-width: 0;
  padding-right: clamp(42px, 5vw, 72px);
}

.bll-order-confirmation-main > p {
  margin: 0 0 var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: var(--color-success-tint);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.bll-order-next-steps {
  position: sticky;
  top: 32px;
  padding-left: clamp(38px, 4vw, 58px);
}

.bll-order-next-steps ol {
  display: grid;
  gap: var(--space-5);
  margin: var(--space-5) 0 var(--space-6);
  padding: 0;
  list-style: none;
}

.bll-order-next-steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: var(--space-3);
}

.bll-order-next-steps li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
}

.bll-order-next-steps strong {
  display: block;
  font-size: var(--text-sm);
}

.bll-order-next-steps li p {
  margin-top: 3px;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

.bll-order-next-steps .btn {
  width: 100%;
}

.bll-order-details,
.bll-order-addresses {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.bll-order-addresses {
  margin-top: var(--space-5);
}

.bll-order-section-heading {
  margin-bottom: var(--space-5);
}

.bll-order-section-heading h2 {
  margin-top: var(--space-2);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.bll-order-products {
  border-top: 1px solid var(--color-border);
}

.bll-order-product {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}

.bll-order-product-image {
  position: relative;
  width: 72px;
  height: 72px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-subtle);
}

.bll-order-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.bll-order-product-image > span {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: var(--radius-full);
  background: var(--color-neutral-700);
  color: #fff;
  font-size: 10px;
  font-weight: var(--weight-bold);
}

.bll-order-product-copy h3 {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
}

.bll-order-product-copy .wc-item-meta {
  margin: 4px 0 0;
  padding: 0;
  color: var(--color-text-muted);
  font-size: 11px;
  list-style: none;
}

.bll-order-product-copy .wc-item-meta p {
  display: inline;
}

.bll-order-product-total {
  font-size: var(--text-sm);
  white-space: nowrap;
}

.bll-order-totals {
  width: min(100%, 360px);
  margin: var(--space-5) 0 0 auto;
}

.bll-order-totals > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 8px 0;
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
}

.bll-order-totals dt,
.bll-order-totals dd {
  margin: 0;
}

.bll-order-totals dd {
  color: var(--color-text-primary);
  text-align: right;
}

.bll-order-totals .is-total {
  margin-top: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border-strong);
  color: var(--color-text-primary);
  font-size: var(--text-md);
  font-weight: var(--weight-bold);
}

.bll-order-totals .includes_tax {
  display: block;
  margin-top: 4px;
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: var(--weight-medium);
  line-height: 1.45;
}

.bll-order-details .order-again {
  display: flex;
  justify-content: flex-end;
  margin: var(--space-5) 0 0;
}

.bll-order-details .order-again .button {
  min-height: 44px;
  padding-inline: 20px;
}

.bll-order-address-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-4);
}

.bll-order-address-grid.has-shipping {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bll-order-address-grid article {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: var(--color-surface-card-alt);
}

.bll-order-address-grid h3 {
  margin-bottom: var(--space-3);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
}

.bll-order-address-grid address {
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  font-style: normal;
}

.bll-order-address-grid address p {
  margin-top: 5px;
}

.bll-order-status-card {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  text-align: center;
}

.bll-order-status-card .bll-order-status-icon {
  margin: 0 auto var(--space-5);
}

.bll-order-status-card > p:not(.eyebrow) {
  margin-inline: auto;
}

.bll-order-status-card > .btn,
.bll-order-status-actions {
  margin-top: var(--space-6);
}

.bll-order-status-card.is-failed .bll-order-status-icon {
  background: var(--color-danger-tint);
  color: var(--color-brand-red);
}

.bll-order-status-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (min-width: 961px) {
  body.woocommerce-order-received .checkout-shell {
    padding-bottom: var(--space-9);
  }

  body.woocommerce-order-received .checkout-shell::before {
    left: calc(50% + 95px);
  }
}

@media (max-width: 960px) {
  .bll-order-confirmation-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-6);
  }

  .bll-order-confirmation-main {
    padding-right: 0;
  }

  .bll-order-next-steps {
    position: static;
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    background: var(--color-surface-card-alt);
  }

}

@media (max-width: 620px) {
  body.woocommerce-order-received .shop-shell {
    width: 100%;
    padding-inline: 0;
  }

  .bll-order-confirmation {
    width: calc(100% - 24px);
  }

  .bll-order-steps {
    overflow: hidden;
    white-space: nowrap;
  }

  .bll-order-confirmation-header {
    gap: var(--space-3);
  }

  .bll-order-status-icon {
    width: 46px;
    height: 46px;
  }

  .bll-order-confirmation-header h1,
  .bll-order-status-card h1 {
    font-size: 2.45rem;
  }

  .bll-order-overview {
    grid-template-columns: minmax(0, 1fr);
  }

  .bll-order-overview li + li,
  .bll-order-overview li:nth-child(3) {
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .bll-order-details,
  .bll-order-addresses {
    padding: 22px 16px;
  }

  .bll-order-product {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: var(--space-3);
  }

  .bll-order-product-image {
    width: 58px;
    height: 58px;
  }

  .bll-order-totals {
    width: 100%;
  }

  .bll-order-details .order-again {
    justify-content: stretch;
  }

  .bll-order-details .order-again .button {
    width: 100%;
  }

  .bll-order-address-grid.has-shipping {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==========================================================================
   Contact — service form, location and direct channels
   ========================================================================== */
.bll-contact-page {
  padding-bottom: var(--space-9);
}

.bll-contact-hero {
  padding: clamp(50px, 8vw, 96px) 0 clamp(52px, 8vw, 90px);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-card-alt);
}

.bll-contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 370px);
  align-items: end;
  justify-content: space-between;
  gap: var(--space-7);
  margin-top: var(--space-6);
}

.bll-contact-hero h1 {
  margin-top: var(--space-2);
  font-size: clamp(3.5rem, 8vw, 7rem);
}

.bll-contact-hero-grid > div:first-child > p {
  max-width: 680px;
  margin-top: var(--space-4);
  color: var(--color-text-secondary);
  font-size: clamp(var(--text-base), 2vw, var(--text-md));
}

.bll-contact-location {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: var(--space-4);
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.bll-contact-location > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius-full);
  background: var(--color-success-tint);
  color: var(--color-brand-olive);
  font-size: var(--text-lg);
}

.bll-contact-location small {
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
}

.bll-contact-location address {
  margin-top: 6px;
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  font-style: normal;
  font-weight: var(--weight-semibold);
}

.bll-contact-location p {
  margin-top: 6px;
  color: var(--color-text-muted);
  font-size: 11px;
}

.bll-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 320px;
  align-items: start;
  justify-content: center;
  gap: clamp(42px, 7vw, 92px);
  padding-top: var(--space-8);
}

.bll-contact-form-card {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.bll-contact-form-heading {
  margin-bottom: var(--space-6);
}

.bll-contact-form-heading h2 {
  margin-top: var(--space-2);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.bll-contact-form-heading p {
  max-width: 620px;
  margin-top: var(--space-3);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.bll-tally-form {
  min-height: 313px;
}

.bll-tally-form iframe {
  display: block;
  width: 100%;
  border: 0;
}

.bll-contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 var(--space-4);
}

.bll-contact-form .form-row {
  margin: 0 0 var(--space-4);
}

.bll-contact-form .form-row-wide,
.bll-contact-form .bll-contact-consent,
.bll-contact-form .bll-contact-submit {
  grid-column: 1 / -1;
}

.bll-contact-form label:not(.bll-contact-consent) {
  display: block;
  margin-bottom: 7px;
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
}

.bll-contact-form label span {
  color: var(--color-text-muted);
  font-weight: var(--weight-regular);
}

.bll-contact-form input:not([type="checkbox"]),
.bll-contact-form select,
.bll-contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  outline: 0;
  background: #fff;
  color: var(--color-text-primary);
  font: inherit;
  font-size: var(--text-sm);
}

.bll-contact-form textarea {
  min-height: 160px;
  padding-block: 14px;
  resize: vertical;
}

.bll-contact-form input:focus,
.bll-contact-form select:focus,
.bll-contact-form textarea:focus {
  border-color: var(--color-brand-black);
  box-shadow: 0 0 0 2px rgba(26, 26, 26, 0.08);
}

.bll-contact-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  margin: var(--space-1) 0 var(--space-5);
  color: var(--color-text-secondary);
  font-size: 11px;
  cursor: pointer;
}

.bll-contact-consent input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--color-brand-red);
}

.bll-contact-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
}

.bll-contact-submit span {
  color: #fff;
  font-size: var(--text-md);
}

.bll-contact-honeypot {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
}

.bll-contact-notice {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
}

.bll-contact-notice.is-success {
  background: var(--color-success-tint);
  color: var(--color-brand-olive);
}

.bll-contact-notice.is-success p {
  margin-top: 3px;
  color: var(--color-text-secondary);
}

.bll-contact-notice.is-error {
  display: block;
  border: 1px solid #edb8ae;
  background: var(--color-danger-tint);
  color: var(--color-brand-red);
}

.bll-contact-notice.is-error ul {
  margin: var(--space-2) 0 0;
  padding-left: 18px;
}

.bll-contact-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: var(--space-4);
}

.bll-contact-aside > section {
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.bll-contact-aside > section:first-child {
  background: var(--color-brand-black);
  color: #fff;
}

.bll-contact-aside > section:first-child .eyebrow {
  color: var(--color-neutral-400);
}

.bll-contact-aside h2 {
  margin-top: var(--space-3);
  color: inherit;
  font-size: var(--text-xl);
}

.bll-contact-aside p {
  margin-top: var(--space-3);
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
}

.bll-contact-aside > section:first-child p {
  color: var(--color-neutral-300);
}

.bll-contact-aside .btn {
  width: 100%;
  margin-top: var(--space-5);
}

.bll-contact-channel {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: var(--space-3);
}

.bll-contact-channel > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius-full);
  background: var(--color-success-tint);
  color: var(--color-brand-olive);
}

.bll-contact-channel strong {
  font-size: var(--text-sm);
}

.bll-contact-channel p {
  margin-top: 3px;
}

.bll-contact-channel a {
  display: inline-block;
  margin-top: var(--space-3);
  color: var(--color-brand-red);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
}

@media (max-width: 900px) {
  .bll-contact-hero-grid,
  .bll-contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .bll-contact-location {
    width: min(100%, 460px);
  }

  .bll-contact-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bll-contact-aside > section:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .bll-contact-hero {
    padding: var(--space-7) 0 var(--space-6);
  }

  .bll-contact-hero-grid {
    gap: var(--space-6);
  }

  .bll-contact-hero h1 {
    font-size: 3.4rem;
  }

  .bll-contact-layout {
    gap: var(--space-6);
    padding-top: var(--space-6);
  }

  .bll-contact-form-card {
    padding: 24px 18px;
  }

  .bll-contact-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .bll-contact-form .form-row {
    grid-column: 1 / -1;
  }

  .bll-contact-aside {
    grid-template-columns: minmax(0, 1fr);
  }

  .bll-contact-aside > section:first-child {
    grid-column: auto;
  }
}

/* ==========================================================================
   Over ons — brand story
   ========================================================================== */
.bll-about-page {
  overflow: hidden;
}

.bll-about-hero {
  background: var(--color-surface-card-alt);
}

.bll-about-hero .content-shell {
  padding-bottom: clamp(56px, 8vw, 104px);
}

.bll-about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(44px, 8vw, 112px);
  margin-top: clamp(42px, 7vw, 82px);
}

.bll-about-hero-copy h1 {
  max-width: 780px;
  margin-top: var(--space-3);
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.96;
}

.bll-about-hero-copy > p,
.bll-about-hero-copy > blockquote {
  max-width: 650px;
  margin-top: var(--space-5);
  color: var(--color-text-secondary);
  font-size: clamp(var(--text-base), 1.7vw, var(--text-md));
  line-height: var(--leading-relaxed);
}

.bll-about-hero-copy > blockquote {
  padding-left: var(--space-4);
  border-left: 2px solid var(--color-brand-red);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-style: italic;
}

.bll-about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.bll-text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-decoration: none;
}

.bll-text-link:hover {
  color: var(--color-brand-red);
  text-decoration: none;
}

.bll-about-hero-media {
  position: relative;
  min-height: min(64vw, 680px);
}

.bll-about-hero-media img,
.bll-about-hero-media .photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: 48% 48% var(--radius-lg) var(--radius-lg);
  object-fit: cover;
}

.bll-about-hero-media img {
  object-position: 72% center;
}

.bll-about-media-note {
  position: absolute;
  right: -22px;
  bottom: 28px;
  max-width: 210px;
  padding: 13px 18px;
  border-radius: var(--radius-pill);
  background: var(--color-brand-red);
  color: #fff;
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.bll-about-statement {
  background: var(--color-brand-black);
  color: #fff;
  text-align: center;
}

.bll-about-statement .content-shell {
  max-width: 1050px;
  padding-block: clamp(80px, 12vw, 160px);
}

.bll-about-statement .eyebrow {
  color: var(--color-neutral-400);
}

.bll-about-statement blockquote {
  margin-top: var(--space-5);
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 1.08;
}

.bll-about-statement p {
  margin-top: var(--space-5);
  color: var(--color-neutral-400);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.bll-about-story .content-shell,
.bll-about-making .content-shell {
  padding-block: clamp(76px, 10vw, 132px);
}

.bll-about-story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 9vw, 140px);
}

.bll-about-story h2,
.bll-about-making h2,
.bll-about-section-heading h2,
.bll-about-cta h2 {
  margin-top: var(--space-3);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.05;
}

.bll-about-story-copy {
  display: grid;
  gap: var(--space-5);
  color: var(--color-text-secondary);
  font-size: clamp(var(--text-base), 1.6vw, var(--text-md));
  line-height: var(--leading-relaxed);
}

.bll-about-story-copy p:last-child {
  color: var(--color-text-primary);
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: var(--leading-snug);
}

.bll-about-origin .bll-about-story-copy p:last-child {
  color: var(--color-text-secondary);
  font-family: var(--font-sans);
  font-size: clamp(var(--text-base), 1.6vw, var(--text-md));
  line-height: var(--leading-relaxed);
}

.bll-about-year {
  display: inline-block;
  margin-top: var(--space-6);
  color: var(--color-brand-red);
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 10vw, 8rem);
  line-height: 0.8;
  opacity: 0.14;
}

.bll-about-turning-point {
  background: var(--color-success-tint);
}

.bll-about-turning-point .content-shell {
  padding-block: clamp(76px, 10vw, 132px);
}

.bll-about-turning-grid {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 720px);
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 7vw, 96px);
}

.bll-about-turning-photo {
  position: relative;
  margin: 0;
}

.bll-about-turning-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 48% 48% var(--radius-lg) var(--radius-lg);
  object-fit: cover;
  object-position: center;
}

.bll-about-turning-photo figcaption,
.bll-about-making-gallery figcaption {
  position: absolute;
  right: var(--space-3);
  bottom: var(--space-3);
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-text-primary);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bll-about-turning-mark {
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  border-radius: 48% 52% 44% 56%;
  background: var(--color-brand-red);
  color: #fff;
  font-size: 4rem;
  transform: rotate(-7deg);
}

.bll-about-turning-grid h2 {
  max-width: 780px;
  margin-top: var(--space-3);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.05;
}

.bll-about-turning-grid p {
  max-width: 720px;
  margin-top: var(--space-4);
  color: var(--color-text-secondary);
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
}

.bll-about-turning-grid .bll-about-emphasis {
  color: var(--color-brand-red);
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-style: italic;
}

.bll-about-values {
  background: var(--color-surface-card-alt);
}

.bll-about-values .content-shell {
  padding-block: clamp(72px, 9vw, 120px);
}

.bll-about-section-heading {
  max-width: 720px;
  margin-bottom: var(--space-7);
}

.bll-about-section-heading > p {
  margin-top: var(--space-4);
  color: var(--color-text-secondary);
  font-size: var(--text-base);
}

.bll-about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--color-border-strong);
}

.bll-about-value-grid article {
  min-height: 300px;
  padding: var(--space-6);
  border-right: 1px solid var(--color-border-strong);
}

.bll-about-value-grid article:first-child {
  padding-left: 0;
}

.bll-about-value-grid article:last-child {
  border-right: 0;
}

.bll-about-value-grid article > span {
  color: var(--color-brand-red);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
}

.bll-about-value-grid h3 {
  margin-top: var(--space-8);
  font-size: var(--text-2xl);
}

.bll-about-value-grid strong {
  display: block;
  margin-top: var(--space-2);
  color: var(--color-brand-red);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.bll-about-value-grid p {
  margin-top: var(--space-4);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.bll-about-making-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 9vw, 130px);
}

.bll-about-making-gallery {
  display: grid;
  align-content: center;
}

.bll-about-making-gallery figure {
  position: relative;
  margin: 0;
}

.bll-about-making-gallery figure:first-child {
  width: 86%;
  justify-self: start;
  z-index: 1;
}

.bll-about-making-gallery figure:last-child {
  width: 88%;
  justify-self: end;
  margin-top: -8%;
}

.bll-about-making-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 7px solid #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.bll-about-making-gallery figure:first-child img {
  object-position: 62% center;
  transform: rotate(-2deg);
}

.bll-about-making-gallery figure:last-child img {
  aspect-ratio: 4 / 3;
  object-position: center;
  transform: rotate(2deg);
}

.bll-about-making-mark {
  display: grid;
  min-height: 430px;
  place-content: center;
  border-radius: var(--radius-lg);
  background: var(--color-brand-red);
  color: #fff;
  text-align: center;
  transform: rotate(-2deg);
}

.bll-about-making-mark span {
  font-family: var(--font-sans);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: var(--weight-bold);
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.bll-about-making-mark small {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.35em;
}

.bll-about-making p {
  max-width: 650px;
  margin: var(--space-5) 0;
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.bll-about-material-list {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-6) 0;
  padding: 0;
  list-style: none;
}

.bll-about-material-list li {
  position: relative;
  padding: var(--space-3) var(--space-4) var(--space-3) 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-card-alt);
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}

.bll-about-material-list li::before {
  content: "✓";
  position: absolute;
  left: var(--space-4);
  color: var(--color-brand-olive);
  font-weight: var(--weight-bold);
}

.bll-about-movement h2 {
  max-width: 900px;
  margin: var(--space-4) auto 0;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.bll-about-movement .bll-about-movement-intro,
.bll-about-movement .bll-about-movement-copy {
  max-width: 760px;
  margin: var(--space-5) auto 0;
  color: var(--color-neutral-300);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  text-transform: none;
  letter-spacing: normal;
}

.bll-about-movement blockquote {
  margin-top: var(--space-7);
}

.bll-about-why .content-shell {
  padding-block: clamp(76px, 10vw, 132px);
}

.bll-about-why-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(48px, 9vw, 140px);
}

.bll-about-why h2 {
  margin-top: var(--space-3);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.05;
}

.bll-about-why-grid > div:last-child {
  display: grid;
  gap: var(--space-5);
  color: var(--color-text-secondary);
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
}

.bll-about-why .bll-about-final-reminder {
  color: var(--color-text-primary);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: var(--leading-snug);
}

.bll-about-editor-content {
  padding-top: 0;
  padding-bottom: var(--space-8);
}

.bll-about-cta {
  padding-block: clamp(82px, 11vw, 144px);
  background: var(--color-success-tint);
  text-align: center;
}

.bll-about-cta .content-shell {
  max-width: 900px;
  padding-block: 0;
}

.bll-about-cta .btn {
  margin-top: var(--space-6);
}

/* ==========================================================================
   Dagboek — editorial listing with category and tag filters
   ========================================================================== */
.diary-header {
  max-width: 760px;
}

.diary-header .eyebrow {
  margin-bottom: var(--space-3);
}

.diary-header .plp-title {
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.diary-header .plp-desc {
  max-width: 680px;
  margin-inline: auto;
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.diary-layout {
  grid-template-columns: 220px minmax(0, 1fr);
}

.filter-option small {
  color: var(--color-text-muted);
  font-size: 10px;
}

.diary-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.diary-tag-list .tag-pill {
  padding: 5px 10px;
  font-size: 11px;
}

.diary-tag-list .tag-pill.is-selected {
  border-color: var(--color-brand-red);
  background: var(--color-brand-red);
  color: #fff;
}

.diary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-7) var(--space-5);
}

.diary-card {
  min-width: 0;
}

.diary-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
}

.diary-card-media img,
.diary-card-media .photo-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.diary-card-media:hover img {
  transform: scale(1.025);
}

.diary-card-category {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-text-primary);
  font-size: 10px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.diary-card-meta {
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.diary-card h2 {
  margin-top: var(--space-2);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: var(--leading-snug);
}

.diary-card h2 a {
  color: inherit;
  text-decoration: none;
}

.diary-card h2 a:hover {
  color: var(--color-brand-red);
}

.diary-card-body > p {
  margin-top: var(--space-3);
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  line-height: var(--leading-relaxed);
}

.diary-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.diary-card-tags span {
  color: var(--color-text-muted);
  font-size: 10px;
}

.diary-card-link {
  display: inline-flex;
  gap: var(--space-2);
  margin-top: var(--space-4);
  color: var(--color-text-primary);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-decoration: none;
}

.diary-card-link:hover {
  color: var(--color-brand-red);
  text-decoration: none;
}

.diary-empty {
  display: grid;
  min-height: 420px;
  place-items: center;
  align-content: center;
  padding: var(--space-7);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-card-alt);
  text-align: center;
}

.diary-empty > span {
  font-size: var(--text-2xl);
}

.diary-empty h2 {
  max-width: 520px;
  margin-top: var(--space-4);
  font-size: var(--text-xl);
}

.diary-empty p {
  margin-top: var(--space-2);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.diary-empty .btn {
  margin-top: var(--space-5);
}

@media (max-width: 1100px) {
  .diary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .bll-about-hero-grid,
  .bll-about-story-grid,
  .bll-about-making-grid,
  .bll-about-why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .bll-about-turning-grid {
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  }

  .bll-about-hero-media {
    min-height: min(110vw, 680px);
  }

  .bll-about-media-note {
    right: 12px;
  }

  .bll-about-value-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .bll-about-value-grid article,
  .bll-about-value-grid article:first-child {
    min-height: 0;
    padding: var(--space-6) 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-border-strong);
  }

  .bll-about-value-grid article:last-child {
    border-bottom: 0;
  }

  .bll-about-value-grid h3 {
    margin-top: var(--space-5);
  }

  .diary-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 620px) {
  .bll-about-hero .content-shell {
    padding-bottom: var(--space-7);
  }

  .bll-about-hero-grid {
    gap: var(--space-7);
    margin-top: var(--space-6);
  }

  .bll-about-hero-copy h1 {
    font-size: 3.5rem;
  }

  .bll-about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .bll-about-actions .btn {
    width: 100%;
  }

  .bll-about-hero-media {
    min-height: 440px;
  }

  .bll-about-statement .content-shell {
    padding-block: var(--space-8);
  }

  .bll-about-turning-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .bll-about-turning-photo {
    width: min(100%, 420px);
  }

  .bll-about-making-gallery {
    margin-bottom: var(--space-3);
  }

  .bll-about-turning-mark {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .bll-about-making-mark {
    min-height: 310px;
  }

  .diary-header .plp-title {
    font-size: 3.5rem;
  }

  .diary-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==========================================================================
   Customer service — searchable FAQ hub
   ========================================================================== */
.bll-service-page {
  padding-bottom: var(--space-9);
}

.bll-service-hero {
  padding: clamp(52px, 8vw, 98px) 0 clamp(48px, 7vw, 78px);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-card-alt);
  text-align: center;
}

.bll-service-hero .breadcrumbs {
  justify-content: center;
  margin-bottom: var(--space-5);
}

.bll-service-hero h1 {
  margin-top: var(--space-2);
  font-size: clamp(3.4rem, 7vw, 6.4rem);
}

.bll-service-hero > .content-shell > p:not(.bll-service-search-status) {
  max-width: 720px;
  margin: var(--space-4) auto 0;
  color: var(--color-text-secondary);
  font-size: clamp(var(--text-base), 2vw, var(--text-md));
}

.bll-service-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: min(100%, 760px);
  margin: var(--space-6) auto 0;
  padding: 6px 7px 6px 20px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-pill);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.bll-service-search > span {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
}

.bll-service-search input {
  min-width: 0;
  height: 52px;
  padding: 0 13px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-text-primary);
  font: inherit;
  font-size: var(--text-sm);
}

.bll-service-search button {
  min-height: 42px;
  padding: 0 17px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--color-neutral-100);
  color: var(--color-text-secondary);
  font: inherit;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  cursor: pointer;
}

.bll-service-search-status {
  min-height: 18px;
  margin-top: var(--space-2);
  color: var(--color-text-muted);
  font-size: 11px;
}

.bll-service-category-bar {
  position: sticky;
  z-index: 20;
  top: 72px;
  border-bottom: 1px solid var(--color-border);
  background: rgba(250, 246, 241, 0.96);
  backdrop-filter: blur(12px);
}

.bll-service-category-bar .content-shell {
  display: flex;
  overflow-x: auto;
  gap: var(--space-2);
  padding-top: 12px;
  padding-bottom: 12px;
  scrollbar-width: none;
}

.bll-service-category-bar .content-shell::-webkit-scrollbar {
  display: none;
}

.bll-service-category-bar a {
  flex: 0 0 auto;
  padding: 8px 13px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--color-text-secondary);
  font-size: 11px;
  white-space: nowrap;
}

.bll-service-category-bar a:hover {
  border-color: var(--color-brand-black);
  color: var(--color-text-primary);
  text-decoration: none;
}

.bll-service-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) 300px;
  align-items: start;
  justify-content: center;
  gap: clamp(40px, 7vw, 90px);
  padding-top: var(--space-8);
}

.bll-faq-section {
  scroll-margin-top: 150px;
}

.bll-faq-section + .bll-faq-section {
  margin-top: var(--space-8);
}

.bll-faq-section-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.bll-faq-section-header > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius-full);
  background: var(--color-success-tint);
  color: var(--color-brand-olive);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
}

.bll-faq-section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.bll-faq-item {
  border-top: 1px solid var(--color-border);
}

.bll-faq-item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.bll-faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
  gap: var(--space-4);
  padding: 19px 0;
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  cursor: pointer;
  list-style: none;
}

.bll-faq-item summary::-webkit-details-marker {
  display: none;
}

.bll-faq-item summary::after {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-brand-red);
  content: "+";
  font-size: var(--text-md);
  font-weight: var(--weight-regular);
}

.bll-faq-item[open] summary::after {
  content: "−";
}

.bll-faq-answer {
  max-width: 720px;
  padding: 0 48px var(--space-5) 0;
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.bll-faq-answer p + p,
.bll-faq-answer ul,
.bll-faq-answer ol {
  margin-top: var(--space-3);
}

.bll-faq-answer a {
  color: var(--color-brand-red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bll-service-aside {
  position: sticky;
  top: 150px;
}

.bll-service-contact-card {
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--color-brand-black);
  color: #fff;
}

.bll-service-contact-card .eyebrow {
  color: var(--color-neutral-400);
}

.bll-service-contact-card h2 {
  margin-top: var(--space-3);
  color: #fff;
  font-size: var(--text-xl);
}

.bll-service-contact-card p {
  margin-top: var(--space-3);
  color: var(--color-neutral-300);
  font-size: var(--text-xs);
}

.bll-service-contact-card .btn {
  width: 100%;
  margin-top: var(--space-5);
}

.bll-service-quick-links {
  display: grid;
  margin-top: var(--space-4);
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.bll-service-quick-links > strong {
  margin-bottom: var(--space-2);
  font-size: 10px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.bll-service-quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 10px 0;
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
}

.bll-service-quick-links a + a {
  border-top: 1px solid var(--color-border);
}

.bll-service-quick-links a span {
  color: var(--color-brand-red);
}

.bll-service-no-results {
  padding: var(--space-8) var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.bll-service-no-results > span {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto var(--space-4);
  place-items: center;
  border-radius: var(--radius-full);
  background: var(--color-success-tint);
  color: var(--color-brand-olive);
  font-size: var(--text-lg);
}

.bll-service-no-results h2 {
  font-size: var(--text-xl);
}

.bll-service-no-results p {
  margin-top: var(--space-2);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.bll-service-signoff {
  display: grid;
  justify-items: center;
  margin-top: var(--space-9);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.bll-service-signoff > span {
  color: var(--color-brand-red);
  font-size: var(--text-xl);
}

.bll-service-signoff p {
  margin-top: var(--space-2);
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.7rem);
}

.bll-service-signoff small {
  margin-top: var(--space-2);
  color: var(--color-text-muted);
  font-size: 10px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .bll-service-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .bll-service-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4);
  }

  .bll-service-quick-links {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .bll-service-hero {
    padding: var(--space-7) 0 var(--space-6);
    text-align: left;
  }

  .bll-service-hero .breadcrumbs {
    justify-content: flex-start;
  }

  .bll-service-hero h1 {
    font-size: 3rem;
  }

  .bll-service-hero > .content-shell > p:not(.bll-service-search-status) {
    margin-inline: 0;
  }

  .bll-service-search {
    grid-template-columns: auto minmax(0, 1fr);
    padding-right: 7px;
    border-radius: var(--radius-md);
  }

  .bll-service-search button:not([hidden]) {
    grid-column: 1 / -1;
    margin: 0 0 5px;
  }

  .bll-service-category-bar {
    top: 71px;
  }

  .bll-service-layout {
    gap: var(--space-7);
    padding-top: var(--space-6);
  }

  .bll-faq-section + .bll-faq-section {
    margin-top: var(--space-7);
  }

  .bll-faq-section-header h2 {
    font-size: 2.2rem;
  }

  .bll-faq-item summary {
    font-size: var(--text-xs);
  }

  .bll-faq-answer {
    padding-right: 0;
    font-size: var(--text-xs);
  }

  .bll-service-aside {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==========================================================================
   Consent manager and blocked external media
   ========================================================================== */
.footer-cookie-settings {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.bll-consent {
  position: fixed;
  z-index: 10000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  pointer-events: none;
}

.bll-consent-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(250px, 0.8fr);
  gap: var(--space-5);
  width: min(980px, 100%);
  margin-left: auto;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  background: var(--color-brand-black);
  box-shadow: 0 24px 80px rgba(26, 26, 26, 0.3);
  color: #fff;
  pointer-events: auto;
}

.bll-consent-summary .eyebrow {
  color: var(--color-neutral-300);
}

.bll-consent-summary h2 {
  margin-top: var(--space-2);
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.bll-consent-summary > p:not(.bll-consent-links) {
  max-width: 640px;
  margin-top: var(--space-3);
  color: var(--color-neutral-300);
  font-size: var(--text-sm);
}

.bll-consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.bll-consent-links a {
  color: #fff;
  font-size: var(--text-xs);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bll-consent-actions {
  display: grid;
  align-content: center;
  gap: var(--space-2);
}

.bll-consent-actions .btn {
  width: 100%;
}

.bll-consent-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.52);
  color: #fff;
}

.bll-consent-manage {
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--color-neutral-300);
  font: inherit;
  font-size: var(--text-xs);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.bll-consent-preferences {
  display: grid;
  grid-column: 1 / -1;
  gap: var(--space-2);
  order: 2;
}

.bll-consent-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  cursor: pointer;
}

.bll-consent-option span {
  display: grid;
  gap: 3px;
}

.bll-consent-option small {
  color: var(--color-neutral-300);
}

.bll-consent-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--color-brand-red);
}

.bll-consent-option.is-required {
  opacity: 0.76;
  cursor: default;
}

.bll-external-placeholder {
  display: grid;
  min-height: 280px;
  padding: var(--space-6);
  place-items: center;
  align-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-card-alt);
  text-align: center;
}

.bll-external-placeholder > span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: var(--space-3);
  place-items: center;
  border-radius: var(--radius-full);
  background: var(--color-success-tint);
  color: var(--color-brand-olive);
  font-size: var(--text-lg);
}

.bll-external-placeholder p {
  max-width: 450px;
  margin: var(--space-2) auto var(--space-4);
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
}

.bll-external-placeholder .btn {
  min-width: 180px;
}

.bll-external-fallback-link {
  margin-top: var(--space-3);
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .bll-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .bll-consent-panel {
    grid-template-columns: minmax(0, 1fr);
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    border-radius: var(--radius-lg);
  }

  .bll-consent-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .bll-consent-preferences {
    grid-column: auto;
  }
}

/* ==========================================================================
   Service policies — privacy, returns, shipping and terms
   ========================================================================== */
.bll-policy-page {
  padding-bottom: var(--space-9);
}

.bll-policy-hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(52px, 8vw, 92px);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-card-alt);
}

.bll-policy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-7);
  margin-top: var(--space-6);
}

.bll-policy-hero h1 {
  margin-top: var(--space-2);
  font-size: clamp(3.1rem, 7vw, 6.4rem);
}

.bll-policy-hero-grid p {
  max-width: 680px;
  margin-top: var(--space-4);
  color: var(--color-text-secondary);
  font-size: clamp(var(--text-base), 2vw, var(--text-md));
}

.bll-policy-number {
  color: var(--color-border-strong);
  font-family: var(--font-serif);
  font-size: clamp(5rem, 13vw, 11rem);
  line-height: 0.72;
}

.bll-policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 820px);
  align-items: start;
  justify-content: center;
  gap: clamp(36px, 7vw, 92px);
  padding-top: var(--space-8);
}

.bll-policy-sidebar {
  min-width: 0;
}

.bll-policy-toc {
  position: sticky;
  top: 96px;
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.bll-policy-toc > strong {
  display: block;
  margin-bottom: var(--space-4);
  font-size: 10px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.bll-policy-toc ol {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bll-policy-toc a {
  display: block;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--color-text-secondary);
  font-size: 12px;
  line-height: 1.4;
}

.bll-policy-toc a:hover {
  background: var(--color-surface-subtle);
  color: var(--color-text-primary);
  text-decoration: none;
}

.bll-policy-toc .is-subitem a {
  padding-left: 20px;
  color: var(--color-text-muted);
  font-size: 11px;
}

.bll-policy-article {
  min-width: 0;
}

.bll-policy-draft-notice {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  padding: var(--space-4);
  border: 1px solid #ebcf85;
  border-radius: var(--radius-md);
  background: #fff7df;
  color: #6f5617;
  font-size: var(--text-xs);
}

.bll-policy-draft-notice strong {
  flex: 0 0 auto;
}

.bll-policy-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 11px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.bll-policy-content {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
}

.bll-policy-content > * {
  max-width: 740px;
}

.bll-policy-content h2 {
  margin: var(--space-8) 0 var(--space-4);
  scroll-margin-top: 110px;
  color: var(--color-text-primary);
  font-size: clamp(2rem, 4vw, 3rem);
}

.bll-policy-content h2:first-child {
  margin-top: 0;
}

.bll-policy-content h3 {
  margin: var(--space-6) 0 var(--space-3);
  scroll-margin-top: 110px;
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  font-size: var(--text-md);
}

.bll-policy-content p + p,
.bll-policy-content p + ul,
.bll-policy-content p + ol,
.bll-policy-content ul + p,
.bll-policy-content ol + p {
  margin-top: var(--space-4);
}

.bll-policy-content ul,
.bll-policy-content ol {
  display: grid;
  gap: var(--space-2);
  margin: var(--space-4) 0;
  padding-left: 1.25rem;
}

.bll-policy-content li::marker {
  color: var(--color-brand-red);
}

.bll-policy-content a {
  color: var(--color-brand-red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bll-policy-content blockquote {
  margin: var(--space-6) 0;
  padding: var(--space-5);
  border-left: 3px solid var(--color-brand-olive);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--color-success-tint);
  color: var(--color-text-primary);
}

.bll-policy-content table {
  width: 100%;
  margin: var(--space-6) 0;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.bll-policy-content th,
.bll-policy-content td {
  padding: 12px;
  border: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.bll-policy-content th {
  background: var(--color-surface-card-alt);
  color: var(--color-text-primary);
}

.bll-policy-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  margin-top: var(--space-8);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--color-success-tint);
}

.bll-policy-help p {
  margin-top: 3px;
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
}

.bll-policy-help .btn {
  flex: 0 0 auto;
}

.bll-policy-switcher {
  margin-top: var(--space-9);
  padding-top: var(--space-7);
  border-top: 1px solid var(--color-border);
}

.bll-policy-switcher > span {
  display: block;
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.bll-policy-switcher > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}

.bll-policy-switcher a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-3);
  min-height: 88px;
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text-primary);
}

.bll-policy-switcher a:hover,
.bll-policy-switcher a[aria-current="page"] {
  border-color: var(--color-brand-black);
  text-decoration: none;
}

.bll-policy-switcher a[aria-current="page"] {
  background: var(--color-brand-black);
  color: #fff;
}

.bll-policy-switcher small {
  color: var(--color-brand-red);
  font-size: 10px;
}

.bll-policy-switcher strong {
  min-width: 0;
  font-size: var(--text-xs);
}

.bll-policy-switcher a > span {
  color: var(--color-brand-red);
}

@media (max-width: 900px) {
  .bll-policy-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .bll-policy-toc {
    position: static;
  }

  .bll-policy-toc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bll-policy-switcher > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .bll-policy-hero {
    padding: var(--space-7) 0 var(--space-6);
  }

  .bll-policy-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-5);
  }

  .bll-policy-hero h1 {
    font-size: 3rem;
  }

  .bll-policy-number {
    display: none;
  }

  .bll-policy-layout {
    gap: var(--space-5);
    padding-top: var(--space-6);
  }

  .bll-policy-toc {
    overflow: hidden;
    padding: var(--space-4);
  }

  .bll-policy-toc ol {
    display: flex;
    overflow-x: auto;
    margin-right: -16px;
    padding-right: 16px;
    scrollbar-width: none;
  }

  .bll-policy-toc ol::-webkit-scrollbar {
    display: none;
  }

  .bll-policy-toc li {
    flex: 0 0 auto;
  }

  .bll-policy-toc .is-subitem a {
    padding-left: 10px;
  }

  .bll-policy-draft-notice,
  .bll-policy-help {
    align-items: flex-start;
    flex-direction: column;
  }

  .bll-policy-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .bll-policy-content {
    font-size: var(--text-sm);
  }

  .bll-policy-content h2 {
    margin-top: var(--space-7);
  }

  .bll-policy-help .btn {
    width: 100%;
  }

  .bll-policy-switcher {
    margin-top: var(--space-8);
  }

  .bll-policy-switcher > div {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==========================================================================
   Search — products, stories and pages in one considered result view
   ========================================================================== */
.bll-search-page {
  padding-bottom: var(--space-9);
}

.bll-search-hero {
  padding: clamp(52px, 8vw, 100px) 0 clamp(48px, 7vw, 82px);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-card-alt);
  text-align: center;
}

.bll-search-hero .breadcrumbs {
  justify-content: center;
  margin-bottom: var(--space-5);
}

.bll-search-hero h1 {
  max-width: 920px;
  margin: var(--space-2) auto 0;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  overflow-wrap: anywhere;
}

.bll-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(100%, 720px);
  margin: var(--space-6) auto 0;
  padding: 6px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-pill);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.bll-search-form input {
  min-width: 0;
  height: 52px;
  padding: 0 20px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-text-primary);
  font: inherit;
  font-size: var(--text-sm);
}

.bll-search-form input::placeholder {
  color: var(--color-text-muted);
}

.bll-search-form button {
  min-width: 132px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--color-brand-red);
  color: #fff;
  font: inherit;
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  cursor: pointer;
}

.bll-search-form button:hover {
  background: var(--color-brand-red-hover);
}

.bll-search-content {
  padding-top: var(--space-7);
}

.bll-search-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.bll-search-summary p {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.bll-search-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
}

.bll-search-card {
  display: flex;
  overflow: hidden;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: border-color var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out);
}

.bll-search-card:hover {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.bll-search-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-surface-subtle);
}

.bll-search-card-media img,
.bll-search-card-media .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.bll-search-card:hover .bll-search-card-media img {
  transform: scale(1.025);
}

.bll-search-card-media .photo-placeholder {
  display: grid;
  place-items: center;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.bll-search-stock {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: var(--color-brand-black);
  color: #fff;
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.bll-search-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: var(--space-5);
}

.bll-search-card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.bll-search-card-meta .eyebrow {
  font-size: 10px;
}

.bll-search-price {
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  white-space: nowrap;
}

.bll-search-card-body h2 {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.bll-search-card-body h2 a {
  color: inherit;
}

.bll-search-card-body > p {
  margin-top: var(--space-3);
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
}

.bll-search-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-5);
  color: var(--color-text-primary);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
}

.bll-search-card-link span {
  color: var(--color-brand-red);
  font-size: var(--text-md);
}

.bll-search-empty {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  text-align: center;
}

.bll-search-empty-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto var(--space-5);
  place-items: center;
  border-radius: var(--radius-full);
  background: var(--color-success-tint);
  color: var(--color-brand-olive);
  font-size: var(--text-xl);
}

.bll-search-empty h2 {
  margin-top: var(--space-2);
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.bll-search-empty > p:not(.eyebrow) {
  max-width: 590px;
  margin: var(--space-3) auto 0;
  color: var(--color-text-secondary);
}

.bll-search-empty-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.bll-search-suggestions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  margin-top: var(--space-7);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--color-brand-black);
  color: #fff;
}

.bll-search-suggestions > span {
  color: var(--color-neutral-400);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.bll-search-suggestions > div {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.bll-search-suggestions a {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: var(--text-xs);
}

.bll-search-suggestions a:hover {
  border-color: #fff;
  text-decoration: none;
}

.bll-search-page .navigation.pagination {
  margin-top: var(--space-7);
}

@media (max-width: 900px) {
  .bll-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .bll-search-hero {
    padding: var(--space-7) 0 var(--space-6);
    text-align: left;
  }

  .bll-search-hero .breadcrumbs {
    justify-content: flex-start;
  }

  .bll-search-hero h1 {
    margin-inline: 0;
    font-size: 2.65rem;
  }

  .bll-search-form {
    grid-template-columns: minmax(0, 1fr);
    padding: 5px;
    border-radius: var(--radius-md);
  }

  .bll-search-form input {
    height: 50px;
    padding-inline: 13px;
  }

  .bll-search-form button {
    min-height: 48px;
  }

  .bll-search-content {
    padding-top: var(--space-6);
  }

  .bll-search-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .bll-search-empty {
    padding: 32px 20px;
  }

  .bll-search-suggestions {
    align-items: flex-start;
    flex-direction: column;
  }

  .bll-search-suggestions > div {
    justify-content: flex-start;
  }
}

/* ==========================================================================
   My account — customer dashboard and authentication
   ========================================================================== */
body.woocommerce-account .account-shell {
  width: min(100%, var(--max-width));
  max-width: none;
  padding-top: clamp(44px, 7vw, 88px);
  padding-bottom: var(--space-9);
}

body.woocommerce-account .entry-content,
body.woocommerce-account .entry-content > * {
  max-width: none;
  font-size: var(--text-base);
}

body.woocommerce-account .entry-content > * + * {
  margin-top: 0;
}

body.woocommerce-account .entry-content h1,
body.woocommerce-account .entry-content h2,
body.woocommerce-account .entry-content h3 {
  margin-top: 0;
}

.bll-account-header,
.bll-account-guest-header {
  max-width: 720px;
  margin-bottom: var(--space-7);
}

.bll-account-header h1,
.bll-account-guest-header h1,
.bll-account-recovery h1 {
  margin-top: var(--space-2);
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}

.bll-account-header p,
.bll-account-guest-header p,
.bll-account-recovery > p {
  margin-top: var(--space-3);
  color: var(--color-text-secondary);
}

.bll-account-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  gap: var(--space-7);
}

.bll-account-navigation {
  position: sticky;
  top: 96px;
  padding: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-card);
}

.bll-account-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bll-account-navigation li + li {
  margin-top: 3px;
}

.bll-account-navigation li:last-child {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
}

.bll-account-navigation a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 44px;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}

.bll-account-navigation a:hover {
  background: var(--color-neutral-100);
  color: var(--color-text-primary);
  text-decoration: none;
}

.bll-account-navigation .is-active a,
.bll-account-navigation a[aria-current="page"] {
  background: var(--color-brand-black);
  color: #fff;
}

.bll-account-navigation a > span {
  display: inline-grid;
  flex: 0 0 auto;
  width: 20px;
  place-items: center;
  font-size: var(--text-base);
}

.bll-account-content {
  min-width: 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-card);
}

.bll-account-content-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}

.bll-account-content-heading h2 {
  margin-top: var(--space-2);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.bll-account-content-heading > a {
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bll-account-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.bll-account-quick-grid > a {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text-primary);
}

.bll-account-quick-grid > a:hover {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transform: translateY(-1px);
}

.bll-account-quick-grid > a > span {
  color: var(--color-brand-red);
  font-size: var(--text-xl);
}

.bll-account-quick-grid strong {
  margin-top: auto;
  font-size: var(--text-sm);
}

.bll-account-quick-grid small {
  display: block;
  margin-top: 4px;
  color: var(--color-text-muted);
  font-size: 11px;
  line-height: 1.45;
}

.bll-account-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  margin-top: var(--space-5);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  background: var(--color-success-tint);
}

.bll-account-help p {
  margin-top: 3px;
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
}

.bll-account-help a {
  flex: 0 0 auto;
  color: var(--color-brand-olive);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
}

.bll-account-guest-header {
  margin-inline: auto;
  text-align: center;
}

.bll-account-auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: var(--space-5);
  max-width: 1040px;
  margin-inline: auto;
}

.bll-account-auth-grid.has-registration {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bll-account-auth-card,
.bll-account-benefits {
  min-height: 520px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius-lg);
}

.bll-account-auth-card {
  border: 1px solid var(--color-border);
  background: var(--color-surface-card);
}

.bll-account-auth-card > h2,
.bll-account-benefits > h2 {
  font-size: clamp(1.8rem, 4vw, 2.55rem);
}

.bll-account-auth-card > p {
  margin-top: var(--space-2);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.bll-account-auth-card form {
  margin-top: var(--space-6);
}

.bll-account-auth-card .form-row,
.bll-account-recovery .form-row,
.bll-account-content .form-row {
  margin: 0 0 var(--space-4);
}

.bll-account-auth-card label,
.bll-account-recovery label,
.bll-account-content .form-row label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
}

.bll-account-auth-card .input-text,
.bll-account-recovery .input-text,
.bll-account-content .input-text,
.bll-account-content select,
.bll-account-content .select2-selection {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  outline: 0;
  background: #fff;
  color: var(--color-text-primary);
  font: inherit;
  font-size: var(--text-sm);
}

.bll-account-content textarea.input-text {
  min-height: 110px;
  padding-block: 13px;
}

.bll-account-auth-card .input-text:focus,
.bll-account-recovery .input-text:focus,
.bll-account-content .input-text:focus,
.bll-account-content select:focus {
  border-color: var(--color-brand-black);
  box-shadow: 0 0 0 2px rgba(26, 26, 26, 0.08);
}

.woocommerce-account .password-input {
  position: relative;
  display: block;
}

.woocommerce-account .password-input .input-text {
  padding-right: 50px;
}

.woocommerce-account .show-password-input {
  position: absolute;
  top: 50%;
  right: 14px;
  display: grid;
  width: 24px;
  height: 24px;
  padding: 0;
  transform: translateY(-50%);
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--color-text-secondary);
  cursor: pointer;
}

.woocommerce-account .show-password-input::before {
  width: 15px;
  height: 10px;
  border: 1.5px solid currentColor;
  border-radius: 50% / 60%;
  content: "";
}

.woocommerce-account .show-password-input::after {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.woocommerce-account .show-password-input:hover,
.woocommerce-account .show-password-input:focus-visible {
  background: var(--color-surface-subtle);
  color: var(--color-text-primary);
}

.bll-login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin: var(--space-2) 0 var(--space-5);
  font-size: var(--text-xs);
}

.bll-login-options label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  cursor: pointer;
}

.bll-login-options a {
  color: var(--color-text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bll-account-primary-button,
.bll-account-content .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--color-brand-red);
  color: #fff;
  font: inherit;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  cursor: pointer;
  text-decoration: none;
}

.bll-account-primary-button {
  width: 100%;
}

.bll-account-primary-button:hover,
.bll-account-content .button:hover {
  background: var(--color-brand-red-hover);
  color: #fff;
  text-decoration: none;
}

.bll-account-benefits {
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 80% 18%, rgba(211, 36, 22, 0.34), transparent 28%),
    var(--color-brand-black);
  color: #fff;
}

.bll-account-benefits .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.bll-account-benefits h2 {
  margin-top: var(--space-3);
}

.bll-account-benefits ul {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-7) 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-sm);
}

.bll-account-benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.bll-account-benefits li span {
  color: #fff;
}

.bll-account-benefits .btn {
  align-self: flex-start;
  margin-top: auto;
}

.bll-account-recovery {
  max-width: 600px;
  margin-inline: auto;
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-card);
}

.bll-account-recovery form {
  margin-top: var(--space-6);
}

.bll-account-back-link {
  display: inline-block;
  margin-top: var(--space-5);
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
}

.bll-account-content > h2,
.bll-account-content > form > h2 {
  margin-bottom: var(--space-5);
  font-size: var(--text-xl);
}

.bll-account-content > p {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.bll-account-content > p + *,
.bll-account-content > .woocommerce-info + * {
  margin-top: var(--space-5);
}

.bll-account-content .woocommerce-info,
.bll-account-content .woocommerce-message,
.bll-account-content .woocommerce-error,
body.woocommerce-account > .woocommerce-notices-wrapper {
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-neutral-100);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.bll-account-content .woocommerce-error {
  border-color: var(--color-error);
  background: var(--color-error-tint);
  color: var(--color-error);
}

.bll-account-content .shop_table {
  width: 100%;
  border-collapse: collapse;
}

.bll-account-content .shop_table th,
.bll-account-content .shop_table td {
  padding: 15px 12px;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
  text-align: left;
}

.bll-account-content .shop_table thead th {
  color: var(--color-text-muted);
  font-size: 10px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.bll-account-content .shop_table td:last-child {
  text-align: right;
}

.bll-account-content .shop_table .button {
  min-height: 36px;
  padding-inline: 16px;
  font-size: var(--text-xs);
}

.bll-account-content .woocommerce-pagination {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.bll-account-content .addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.bll-account-content .woocommerce-Address {
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
}

.bll-account-content .woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.bll-account-content .woocommerce-Address-title h2 {
  font-size: var(--text-lg);
}

.bll-account-content .woocommerce-Address-title a {
  font-size: var(--text-xs);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bll-account-content address {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  font-style: normal;
}

.bll-account-content form:not(.woocommerce-ordering) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 var(--space-4);
}

.bll-account-content form .form-row-wide,
.bll-account-content form fieldset,
.bll-account-content form > h2,
.bll-account-content form > p:last-child,
.bll-account-content form > div.clear,
.bll-account-content .woocommerce-address-fields {
  grid-column: 1 / -1;
}

.bll-account-content fieldset {
  margin: var(--space-5) 0;
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.bll-account-content fieldset legend {
  padding: 0 var(--space-2);
  font-weight: var(--weight-semibold);
}

.bll-account-content #account_display_name_description {
  display: block;
  margin-top: 5px;
  color: var(--color-text-muted);
  font-size: 11px;
}

.bll-account-content mark {
  padding: 2px 5px;
  border-radius: 4px;
  background: var(--color-success-tint);
}

.woocommerce-OrderUpdates {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-4) 0;
  padding: 0;
  list-style: none;
}

.woocommerce-OrderUpdate {
  padding: var(--space-4);
  border-left: 3px solid var(--color-brand-olive);
  background: var(--color-success-tint);
}

@media (max-width: 900px) {
  .bll-account-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-5);
  }

  .bll-account-navigation {
    position: static;
    overflow-x: auto;
    padding: var(--space-2);
    scrollbar-width: none;
  }

  .bll-account-navigation::-webkit-scrollbar {
    display: none;
  }

  .bll-account-navigation ul {
    display: flex;
    width: max-content;
  }

  .bll-account-navigation li + li,
  .bll-account-navigation li:last-child {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .bll-account-navigation a {
    white-space: nowrap;
  }

  .bll-account-auth-grid,
  .bll-account-auth-grid.has-registration {
    grid-template-columns: minmax(0, 1fr);
  }

  .bll-account-auth-card,
  .bll-account-benefits {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  body.woocommerce-account .account-shell {
    width: calc(100% - 24px);
    padding-top: var(--space-7);
  }

  .bll-account-header,
  .bll-account-guest-header {
    margin-bottom: var(--space-6);
  }

  .bll-account-header h1,
  .bll-account-guest-header h1,
  .bll-account-recovery h1 {
    font-size: 2.65rem;
  }

  .bll-account-content {
    padding: 20px 16px;
  }

  .bll-account-quick-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .bll-account-quick-grid > a {
    min-height: 130px;
  }

  .bll-account-help,
  .bll-account-content-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .bll-account-auth-card,
  .bll-account-benefits,
  .bll-account-recovery {
    padding: 24px 20px;
  }

  .bll-login-options {
    align-items: flex-start;
    flex-direction: column;
  }

  .bll-account-content .addresses,
  .bll-account-content form:not(.woocommerce-ordering) {
    grid-template-columns: minmax(0, 1fr);
  }

  .bll-account-content form .form-row {
    grid-column: 1 / -1;
  }

  .bll-account-content .shop_table thead {
    display: none;
  }

  .bll-account-content .shop_table,
  .bll-account-content .shop_table tbody,
  .bll-account-content .shop_table tr,
  .bll-account-content .shop_table td,
  .bll-account-content .shop_table th {
    display: block;
    width: 100%;
  }

  .bll-account-content .shop_table tr {
    margin-bottom: var(--space-3);
    padding: var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
  }

  .bll-account-content .shop_table td,
  .bll-account-content .shop_table th {
    display: flex;
    justify-content: space-between;
    gap: var(--space-3);
    padding: 8px 0;
    border: 0;
    text-align: right;
  }

  .bll-account-content .shop_table td::before,
  .bll-account-content .shop_table th::before {
    color: var(--color-text-muted);
    content: attr(data-title);
    font-size: 10px;
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wide);
    text-align: left;
    text-transform: uppercase;
  }
}
