/** Shopify CDN: Minification failed

Line 2362:17 Unexpected "@mobile"

**/
/**
 * Bubbel-Specialist Custom Brand Styling
 * Gebaseerd op: Stijlgids Luxe Visuele Upgrade
 *
 * Dit bestand overschrijft theme defaults met het nieuwe
 * zwart-gouden luxe kleurenschema, typografie en premium interacties.
 */

/* ==========================================================================
   1. CSS Variables - Brand & Elevation System
   ========================================================================== */

:root {
  /* Brand Colors */
  --color-black: #020B13;
  --color-black-alt: #262626;
  --color-gold: #DAAB2D;
  --color-gold-dark: #A57A03;
  --color-cream: #FDFBF7;

  /* Gradient */
  --gradient-gold: linear-gradient(45deg, #DAAB2D, #A57A03);
  --gradient-gold-reverse: linear-gradient(45deg, #A57A03, #DAAB2D);
  --gradient-dark: linear-gradient(180deg, #020B13 0%, #0a1520 100%);

  /* Shadow Elevation System */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.24);

  /* Gold Glow Variants */
  --glow-gold-sm: 0 0 8px rgba(218, 171, 45, 0.3);
  --glow-gold-md: 0 0 16px rgba(218, 171, 45, 0.4);
  --glow-gold-lg: 0 0 24px rgba(218, 171, 45, 0.5);

  /* Legacy shadows */
  --shadow-default: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-gold-glow: 0 0 6px rgba(218, 171, 45, 0.4);

  /* Border-radius: consistent 4px sitewide (design.md) */
  --radius-button: 4px;
  --radius-small-button: 4px;
  --radius-variant-button: 4px;
  --radius-form: 4px;
  --radius-label: 4px;
  --radius-popup: 4px;
  --radius-menu: 4px;
  --radius-container: 4px;
  --radius-media: 4px;

  /* Font Family Overrides */
  --font--title: 'Playfair Display', Georgia, serif;
  --font--body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font--button: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font--label: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Typography adjustments */
  --font--title-weight: 700;
  --font--title-space: 0.5px;
  --font--button-weight: 600;

  /* Animation timing */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. Typography
   ========================================================================== */

/* Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font--title);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* Body */
body {
  font-family: var(--font--body);
  line-height: 1.6;
}

/* Gold Heading Accent - use class .heading-gold */
.heading-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Text shadow on dark backgrounds */
.hero__title,
.banner__title,
.slideshow__title {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   2b. Header Shipping Badges (centered, under logo)
   ========================================================================== */

.header__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 30px 2px;
  width: 100%;
}

.header__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font--body, 'Inter', sans-serif);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.header__badge svg {
  flex-shrink: 0;
  color: var(--color-gold, #DAAB2D);
  opacity: 0.85;
}

.header__badges-dot {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  margin: 0 4px;
}

/* ==========================================================================
   3. Header & Navigation - Luxe Upgrade
   ========================================================================== */

/* Header shadow on scroll */
header-container.is-stuck header,
.header-stuck header {
  box-shadow: var(--shadow-md);
}

/* Logo hover effect */
.header__logo img,
.header__logo svg {
  transition: filter var(--transition-normal), transform var(--transition-normal);
}

.header__logo:hover img,
.header__logo:hover svg {
  filter: drop-shadow(0 0 8px rgba(218, 171, 45, 0.4));
  transform: scale(1.02);
}

/* Primary Navigation Links */
.primary-nav__link,
.nav__link {
  position: relative;
  font-family: var(--font--body);
  font-weight: 500;
  transition: color var(--transition-normal);
}

/* Gold underline animation on hover */
.primary-nav__link::after,
.nav > .nav__item > .nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color--brand, var(--gradient-gold));
  transition: width var(--transition-normal), left var(--transition-normal);
}

.primary-nav__link:hover::after,
.nav > .nav__item > .nav__link:hover::after,
.primary-nav__link.is-active::after,
.nav > .nav__item.is-active > .nav__link::after {
  width: 100%;
  left: 0;
}

/* Nav link hover color */
.primary-nav__link:hover,
.nav__link:hover {
  color: var(--color--brand, var(--color-gold)) !important;
}

/* ==========================================================================
   4. Mega Menu - Premium Styling
   ========================================================================== */

/* Mega menu container */
.nav__sub,
.nav__sub-wrap {
  border-top: 2px solid var(--color--brand, var(--color-gold));
  box-shadow: var(--shadow-lg);
}

/* Mega menu link colors - use scheme-aware variables */
.mega-links__link,
.mega-panel .mega-links__link,
header-details-disclosure.mega .mega-links__link {
  color: var(--color--text, var(--header-text-color)) !important;
}

.mega-links__link:hover,
.mega-panel .mega-links__link:hover,
header-details-disclosure.mega .mega-links__link:hover {
  color: var(--color--brand, var(--color-gold)) !important;
}

/* Sub-level list menu items */
.mega-panel .list-menu__link,
.mega-panel .list-menu__text,
header-details-disclosure.mega .list-menu__link,
header-details-disclosure.mega .list-menu__text {
  color: var(--color--text-light, var(--header-text-color-light)) !important;
}

.mega-panel .list-menu__link:hover,
.mega-panel .list-menu__text:hover,
header-details-disclosure.mega .list-menu__link:hover {
  color: var(--color--brand, var(--color-gold)) !important;
}

/* CTA titles in mega menu */
header-details-disclosure.mega .cta__title {
  color: var(--color--brand, var(--color-gold));
}

/* CTA text in mega menu */
header-details-disclosure.mega .cta__text {
  color: var(--color--text-light, rgba(255, 255, 255, 0.85));
}

/* CTA quote styling in mega menu */
header-details-disclosure.mega .cta__quote {
  font-family: var(--font--body);
  font-style: italic;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--color--text-lighter, rgba(255, 255, 255, 0.55));
  margin: 2px 0 8px;
  max-width: 200px;
}

/* Column layout improvements */
header-details-disclosure.mega .mega-panel {
  gap: 0;
}

header-details-disclosure.mega .mega-panel__block {
  padding: 0 24px;
  border-right: 1px solid var(--scheme-divider, rgba(255, 255, 255, 0.1));
}

header-details-disclosure.mega .mega-panel__block:last-child {
  border-right: none;
}

/* ==========================================================================
   4b. Mega Menu — Compacter + Product Preview Rechts + Quote Onder Links
   ========================================================================== */

/* Compactere mega menu — minder padding */
header-details-disclosure.mega .nav__sub-wrap {
  padding: 28px 30px;
}

/* Content wrapper: column layout (columns on top, info area at bottom) */
.mega-links--has-preview .mega-links__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Top row: links + right panel side by side */
.mega-links__columns {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.mega-links__columns .mega-panel__items {
  flex: 1;
  min-width: 0;
}

/* Compactere link spacing */
header-details-disclosure.mega .mega-links__link {
  margin-bottom: 2px;
  line-height: 1.5;
}

/* Actieve link highlight bij hover */
.mega-links__item[data-collection-handle]:hover .mega-links__link {
  color: var(--color--brand, var(--color-gold, #DAAB2D));
}

/* ============================================
   Info area — quote + beschrijving onder links
   ============================================ */
.mega-links__info-area {
  position: relative;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 32px;
}

.mega-links__hover-info {
  display: none;
}

.mega-links__hover-info.is-active {
  display: block;
}

.mega-links__hover-quote {
  font-family: var(--font--title, 'Playfair Display', serif);
  font-style: italic;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color--accent, #DAAB2D);
  margin: 0 0 6px;
  padding: 0;
  opacity: 0.85;
}

.mega-links__hover-desc {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--color--text-light, rgba(255, 255, 255, 0.65));
  margin: 0;
  padding: 0;
}

/* ============================================
   Rechter panel — product preview
   ============================================ */
.mega-links__right-panel {
  flex: 0 0 220px;
  position: relative;
  min-height: 260px;
}

.mega-links__preview-card {
  display: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mega-links__preview-card.is-active {
  display: block;
  opacity: 1;
}

/* Product card within mega menu right panel */
.mega-links__right-panel product-card {
  width: 100%;
}

.mega-links__right-panel .product-card__details {
  text-align: center;
}

.mega-links__right-panel .product-card__title {
  font-size: 0.8rem;
  line-height: 1.3;
}

.mega-links__right-panel .price {
  font-size: 0.85rem;
}

/* ============================================
   Rechter panel — merk/pagina beschrijving
   ============================================ */
.mega-links__right-panel--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
}

.mega-links__desc-card {
  display: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  text-align: center;
  padding: 24px 16px;
}

.mega-links__desc-card.is-active {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 1;
}

.mega-links__desc-title {
  font-family: var(--font--title, 'Playfair Display', serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color--text, #fff);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mega-links__desc-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color--text-light, rgba(255, 255, 255, 0.75));
  margin: 0 0 16px;
}

.mega-links__desc-link {
  font-size: 0.8rem;
  color: var(--color--brand, var(--color-gold, #DAAB2D));
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.mega-links__desc-link:hover {
  opacity: 0.8;
}

/* ============================================
   Responsive breakpoints
   ============================================ */
@media (max-width: 1100px) {
  .mega-links__right-panel {
    flex: 0 0 180px;
  }

  .mega-links__columns {
    gap: 20px;
  }

  .mega-links__hover-quote {
    font-size: 0.75rem;
  }
}

@media (max-width: 56.24em) {
  .mega-links__right-panel {
    display: none;
  }

  .mega-links__columns {
    gap: 0;
  }

  .mega-links__info-area {
    display: none;
  }
}

/* Backdrop blur for modern browsers */
@supports (backdrop-filter: blur(8px)) {
  .nav__sub {
    backdrop-filter: blur(8px);
  }
}

/* Mega menu items stagger animation */
.mega-panel__item,
.nav__sub .nav__item {
  opacity: 0;
  transform: translateY(-10px);
  animation: menuItemFadeIn 0.3s ease forwards;
}

details[open] .mega-panel__item:nth-child(1),
details[open] .nav__sub .nav__item:nth-child(1) { animation-delay: 0.05s; }
details[open] .mega-panel__item:nth-child(2),
details[open] .nav__sub .nav__item:nth-child(2) { animation-delay: 0.1s; }
details[open] .mega-panel__item:nth-child(3),
details[open] .nav__sub .nav__item:nth-child(3) { animation-delay: 0.15s; }
details[open] .mega-panel__item:nth-child(4),
details[open] .nav__sub .nav__item:nth-child(4) { animation-delay: 0.2s; }
details[open] .mega-panel__item:nth-child(5),
details[open] .nav__sub .nav__item:nth-child(5) { animation-delay: 0.25s; }
details[open] .mega-panel__item:nth-child(6),
details[open] .nav__sub .nav__item:nth-child(6) { animation-delay: 0.3s; }

@keyframes menuItemFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mega menu collection cards */
.mega-panel__collection,
.mega-panel .collection-card {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border-radius: 4px;
  overflow: hidden;
}

.mega-panel__collection:hover,
.mega-panel .collection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--glow-gold-sm);
}

/* Mega menu CTA */
.mega-panel__cta {
  transition: all var(--transition-normal);
}

.mega-panel__cta:hover {
  box-shadow: var(--glow-gold-sm);
}

/* ==========================================================================
   5. Buttons - Luxe Upgrade
   ========================================================================== */

.btn,
.c-btn,
button[type="submit"] {
  font-family: var(--font--button);
  font-weight: 600;
  border-radius: 4px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

/* Primary Button - Goud */
.c-btn--primary {
  background-color: var(--color-gold);
  color: var(--color-black);
  box-shadow: var(--shadow-sm);
}

.c-btn--primary:hover {
  background-color: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--glow-gold-sm);
}

.c-btn--primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* Hollow/Outline Button */
.c-btn--hollow {
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}

.c-btn--hollow:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
  box-shadow: var(--glow-gold-sm);
  transform: translateY(-2px);
}

/* Dark Button */
.c-btn--dark {
  background-color: var(--color-black);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.c-btn--dark:hover {
  background-color: var(--color-black-alt);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Button shine effect on hover */
.c-btn--primary::before,
.c-btn--hollow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.c-btn--primary:hover::before,
.c-btn--hollow:hover::before {
  left: 100%;
}

/* ==========================================================================
   6. Product Cards - Premium Styling
   ========================================================================== */

/* Card container */
.product-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 0, 0, 0.12);
}

/* Image area separator */
.product-card-top {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Image hover — subtle zoom only */
.product-card__image-wrapper,
.product-card__media {
  overflow: hidden;
}

.product-card__image,
.product-card__media img {
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image,
.product-card:hover .product-card__media img {
  transform: scale(1.03);
}

/* Details area padding */
.product-card__details {
  padding: 12px 16px 16px;
}

/* Product title styling */
.product-card__title,
.product-card__name {
  font-family: var(--font--title);
  transition: color var(--transition-fast);
}

.product-card:hover .product-card__title,
.product-card:hover .product-card__name {
  color: var(--color-gold);
}

/* Product price - Gold accent */
.product-card__price .money,
.price .money {
  font-weight: 600;
  color: var(--color-gold);
}

/* Compare at price (old price) */
.price--on-sale .price__regular,
.price__compare {
  color: #888;
  text-decoration: line-through;
}

/* Add to cart button */
.product-card-btn {
  padding: 0 16px 16px;
}

.product-card-btn .c-btn--hollow {
  box-shadow: inset 0 0 0 1px var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font--body);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background-color var(--transition-normal), color var(--transition-normal), box-shadow var(--transition-normal);
}

.product-card-btn .c-btn--hollow:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
}

/* ─── 6c. Product cards — Mobile responsive ──────────────── */

@media (max-width: 47.9275em) {
  /* Card details */
  .product-card__details {
    padding: 6px 8px 8px;
  }

  /* Add-to-cart button: truncate long text, compact sizing */
  .product-card-btn {
    padding: 0 8px 8px;
    margin-top: 4px;
  }
  .product-card-btn .c-btn,
  .product-card-btn .c-btn--hollow,
  .product-card-btn .product-card-btn__btn {
    font-size: 0.6rem !important;
    padding: 6px 4px !important;
    letter-spacing: 0.2px;
    line-height: 1.2;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-align: center;
  }

  /* Image padding */
  .product-card--fit .product-card__img.product-card__img {
    padding: 8px 6px;
  }

  /* Title & price */
  .product-card__title,
  .product-card__name {
    font-size: 0.75rem;
    line-height: 1.25;
  }
  .product-card__price .money,
  .price .money {
    font-size: 0.75rem;
  }
  .product-card__vendor {
    font-size: 0.65rem;
  }

  /* Sold-out / label badges */
  .product-card__label {
    font-size: 0.6rem;
    padding: 3px 6px;
  }
}

/* Hide sold-out label badge — button already shows "HOUD ME OP DE HOOGTE" */
.product-card--sold-out .product-card__label {
  display: none;
}

/* ─── 6d. Back-in-stock notification form ────────────────── */

.bis-form {
  margin-top: 20px;
  padding: 20px;
  background: var(--color--bg-alt, #FDFBF7);
  border: 1px solid rgba(218, 171, 45, 0.2);
  border-radius: 4px;
}

.bis-form__label {
  font-family: var(--font--body);
  font-size: 0.9rem;
  margin: 0 0 12px;
  color: var(--color--text);
  line-height: 1.4;
}

.bis-form__fields {
  display: flex;
  gap: 8px;
}

.bis-form__input {
  flex: 1;
  font-family: var(--font--body);
  font-size: 0.9rem;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.bis-form__input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(218, 171, 45, 0.15);
}

.bis-form__btn {
  white-space: nowrap;
  font-size: 0.8rem;
  padding: 10px 18px;
}

.bis-form__success {
  font-family: var(--font--body);
  font-size: 0.9rem;
  color: var(--color-gold-dark, #A57A03);
  margin: 0;
  padding: 8px 0;
  font-weight: 600;
}

@media (max-width: 47.9275em) {
  .bis-form {
    padding: 16px;
    margin-top: 16px;
  }
  .bis-form__fields {
    flex-direction: column;
  }
  .bis-form__btn {
    width: 100%;
  }
}

/* ==========================================================================
   7. Collection Cards
   ========================================================================== */

.collection-card,
.collection-list__item {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border-radius: 4px;
  overflow: hidden;
}

.collection-card:hover,
.collection-list__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--glow-gold-sm);
}

.collection-card__image,
.collection-list__image {
  transition: transform var(--transition-slow);
}

.collection-card:hover .collection-card__image,
.collection-list__item:hover .collection-list__image {
  transform: scale(1.05);
}

.collection-card__title,
.collection-list__heading {
  transition: color var(--transition-fast);
}

.collection-card:hover .collection-card__title,
.collection-list__item:hover .collection-list__heading {
  color: var(--color-gold);
}

/* ==========================================================================
   7a. Collection Banner - Full Width Description
   ========================================================================== */

/* Make collection header info full width */
.collection__header-info {
  width: 100% !important;
  max-width: 100% !important;
}

/* ==========================================================================
   8. Labels / Badges - Premium Styling
   ========================================================================== */

.product-card__label,
.label,
.badge {
  font-family: var(--font--label);
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

/* New label - Gold border */
.label--new,
.badge--new {
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}

/* Sale / discount label - On-brand gold */
.label--sale,
.badge--sale,
.label--discount {
  background: var(--color-gold, #DAAB2D);
  color: var(--color-dark, #020B13);
}

/* Product page discount label — override inline vars */
.product-single__box__block--price .label {
  --background-color: var(--color-gold, #DAAB2D) !important;
  --text-color: var(--color-dark, #020B13) !important;
}

/* Sold out label */
.label--sold-out,
.badge--sold-out {
  background: #f2f2f2;
  color: #212121;
}

/* ==========================================================================
   9. Form Elements
   ========================================================================== */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="search"],
select,
textarea {
  border-radius: 4px;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(218, 171, 45, 0.2);
  outline: none;
}

::placeholder {
  opacity: 0.6;
}

/* ==========================================================================
   10. Focus States (Accessibility)
   ========================================================================== */

button:focus-visible,
a:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  box-shadow: var(--glow-gold-sm);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(218, 171, 45, 0.2);
}

/* ==========================================================================
   11. Links
   ========================================================================== */

a {
  transition: color var(--transition-fast);
}

/* Underline link style */
.link--underline {
  position: relative;
  text-decoration: none;
}

.link--underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition-normal);
}

.link--underline:hover::after {
  width: 100%;
}

/* ==========================================================================
   12. Hero / Banner Sections
   ========================================================================== */

.hero__title,
.banner__title {
  font-family: var(--font--title);
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero__subtitle,
.banner__subtitle {
  font-family: var(--font--body);
}

/* Hero overlay gradient */
.hero__overlay,
.banner__overlay {
  background: linear-gradient(to top, rgba(2, 11, 19, 0.7) 0%, transparent 60%);
}

/* ==========================================================================
   13. Footer - Luxe Styling
   ========================================================================== */

.footer {
  background: var(--color-black);
}

.footer__heading {
  font-family: var(--font--title);
  color: var(--color-gold);
}

.footer a {
  transition: color var(--transition-fast);
}

.footer:not([class*="color-scheme--"]) a:hover {
  color: var(--color-gold);
}

/* Footer social icons */
.footer__social-link,
.social-icon {
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.footer:not([class*="color-scheme--"]) .footer__social-link:hover,
.footer:not([class*="color-scheme--"]) .social-icon:hover {
  transform: translateY(-2px);
  color: var(--color-gold);
}

/* Newsletter form in footer */
.footer .newsletter__input {
  background: var(--color-black-alt);
  border: 1px solid #333;
  color: #fff;
}

.footer .newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer .newsletter__input:focus {
  border-color: var(--color-gold);
}

.footer .newsletter__btn {
  background: var(--color-gold);
  color: var(--color-black);
  vertical-align: top;
}

/* ==========================================================================
   14. Cart (Drawer + Page)
   ========================================================================== */

/* --- Cart Drawer Header --- */
.cart-draw__title {
  font-family: var(--font--title);
  color: var(--color-gold);
}

.cart-draw__quantity-info {
  font-family: var(--font--body);
  color: var(--color-black-alt);
}

/* --- Free Shipping Bar --- */
.free-shipping-bar__text {
  font-family: var(--font--body);
  font-size: 0.85rem;
  color: var(--color-black);
}

.free-shipping-bar__text .money {
  color: var(--color-gold);
  font-weight: 700;
}

.free-shipping-bar__track {
  background-color: rgba(218, 171, 45, 0.15);
}

/* --- Cart Items --- */
.cart-item {
  transition: background var(--transition-fast);
}

.cart-item:hover {
  background: rgba(218, 171, 45, 0.05);
}

.cart-item__heading,
.cart-item__heading a {
  font-family: var(--font--title);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.cart-item__price .money {
  color: var(--color-gold);
  font-weight: 600;
}

/* --- Cart Totals --- */
.cart__label {
  font-family: var(--font--title);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.cart__total {
  font-family: var(--font--title);
  font-weight: 700;
}

.cart__total .money {
  color: var(--color-gold);
}

/* --- Checkout & View Cart Buttons --- */
.cart__checkout.c-btn--primary {
  font-family: var(--font--button);
  font-weight: 600;
  background: var(--color-gold);
  color: var(--color-black);
  transition: all var(--transition-fast);
}

.cart__checkout.c-btn--primary:hover {
  background: var(--color-gold-dark);
  box-shadow: var(--glow-gold-sm);
  transform: translateY(-1px);
}

.cart__view.c-btn--hollow {
  color: var(--color-gold);
  box-shadow: inset 0 0 0 1px var(--color-gold);
  transition: all var(--transition-fast);
}

.cart__view.c-btn--hollow:hover {
  background: rgba(218, 171, 45, 0.08);
  box-shadow: inset 0 0 0 1px var(--color-gold-dark);
}

.cart-drawer__checkout-btn {
  font-family: var(--font--button);
  font-weight: 600;
  background: var(--color-gold);
  color: var(--color-black);
}

.cart-drawer__checkout-btn:hover {
  background: var(--color-gold-dark);
  box-shadow: var(--glow-gold-sm);
}

/* --- Quantity Controls --- */
.cart-item__qty input[type="number"] {
  border-color: rgba(218, 171, 45, 0.3);
  border-radius: 4px;
}

.cart-item__qty input[type="number"]:focus {
  border-color: var(--color-gold);
  outline: none;
  box-shadow: 0 0 0 2px rgba(218, 171, 45, 0.2);
}

/* --- Cart Recommendations --- */
.cart-recommendations__title-text {
  font-family: var(--font--title);
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* --- Cart Page --- */
.cart--page .section__title-text {
  font-family: var(--font--title);
  color: var(--color-gold);
}

.cart--page .cart__continue {
  color: var(--color-gold);
  transition: color var(--transition-fast);
}

.cart--page .cart__continue:hover {
  color: var(--color-gold-dark);
}

/* --- Cart Empty State --- */
.cart--page .cart__empty-text,
.cart--draw .cart__empty-text {
  font-family: var(--font--body);
  color: var(--color-black-alt);
}

.cart--page .cart__empty-text a,
.cart--draw .cart__empty-text a {
  color: var(--color-gold);
}

/* --- Discount Badges --- */
.cart-item .discount-tag {
  background: rgba(218, 171, 45, 0.12);
  color: var(--color-gold-dark);
}

/* ==========================================================================
   15. Section Dividers & Spacing
   ========================================================================== */

/* Gold gradient divider */
.divider--gold,
hr.gold {
  border: none;
  height: 2px;
  background: var(--gradient-gold);
}

/* Section spacing — only for sections without their own padding */
.section:not(.section--padded) {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .section:not(.section--padded) {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

/* ==========================================================================
   16. Scroll Animations (Intersection Observer)
   ========================================================================== */

/* Elements that will animate on scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for grids */
.animate-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-stagger.is-visible > *:nth-child(1) { transition-delay: 0.1s; }
.animate-stagger.is-visible > *:nth-child(2) { transition-delay: 0.2s; }
.animate-stagger.is-visible > *:nth-child(3) { transition-delay: 0.3s; }
.animate-stagger.is-visible > *:nth-child(4) { transition-delay: 0.4s; }
.animate-stagger.is-visible > *:nth-child(5) { transition-delay: 0.5s; }
.animate-stagger.is-visible > *:nth-child(6) { transition-delay: 0.6s; }

.animate-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   17. Utility Classes
   ========================================================================== */

.text-gold {
  color: var(--color-gold);
}

.text-gold-dark {
  color: var(--color-gold-dark);
}

.bg-gold {
  background-color: var(--color-gold);
}

.bg-black {
  background-color: var(--color-black);
}

.bg-gradient-gold {
  background: var(--gradient-gold);
}

.bg-gradient-dark {
  background: var(--gradient-dark);
}

.shadow-gold {
  box-shadow: var(--shadow-gold-glow);
}

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.glow-gold { box-shadow: var(--glow-gold-md); }

/* Border radius utilities */
.rounded { border-radius: 4px; }
.rounded-lg { border-radius: 4px; }

/* ==========================================================================
   18. Scrollbar Styling (Optional - Premium Touch)
   ========================================================================== */

/* Webkit browsers */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-black);
}

::-webkit-scrollbar-thumb {
  background: var(--color-black-alt);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-dark);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-black-alt) var(--color-black);
}

/* ==========================================================================
   19. Selection Styling
   ========================================================================== */

::selection {
  background: var(--color-gold);
  color: var(--color-black);
}

::-moz-selection {
  background: var(--color-gold);
  color: var(--color-black);
}

/* ==========================================================================
   20. Mobile Menu Drawer - Luxe Styling
   ========================================================================== */

.navigation-drawer,
.menu-drawer {
  background: var(--color-black);
}

.navigation-drawer__link,
.menu-drawer__link {
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.navigation-drawer__link:hover,
.menu-drawer__link:hover {
  color: var(--color-gold);
  padding-left: 8px;
}

/* Mobile menu dividers */
.navigation-drawer__item,
.menu-drawer__item {
  border-color: var(--color-black-alt);
}

/* Hide promo images in mobile menu drawer */
@media (max-width: 47.9275em) {
  .drawer-nav .cta,
  .drawer-nav .cta__image,
  .mobile-cta__image,
  .drawer-nav .mega-panel__block--cta,
  .drawer-nav .nested-menu__promo {
    display: none !important;
  }
}

/* Hide slideshow pagination dots (bolletjes) on mobile */
@media (max-width: 47.9275em) {
  .home-carousel .home-carousel__nav {
    display: none !important;
  }
}

/* ==========================================================================
   21. Loading / Skeleton States
   ========================================================================== */

.skeleton {
  background: linear-gradient(90deg, var(--color-black-alt) 25%, #333 50%, var(--color-black-alt) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ==========================================================================
   21a. Search Drawer - Fixes
   ========================================================================== */

/* Ensure close button is properly positioned in search modal */
.modal.modal--search .modal__content {
  position: relative;
}

/* Position close button at top-right of search input area */
.modal.modal--search .modal__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

/* Ensure search input has padding for close button */
@media (max-width: 47.9275em) {
  .modal.modal--search .search__form-input-wrapper-limiter {
    padding-right: 72px;
  }
}

/* Desktop: position close button aligned with input */
@media (min-width: 47.9375em) {
  .modal.modal--search .search__form-input-wrapper-limiter {
    padding-right: 72px;
  }
}

/* ==========================================================================
   22. Testimonials / Reviews
   ========================================================================== */

.testimonial,
.review {
  border-left: 3px solid var(--color-gold);
  padding-left: 1.5rem;
}

.testimonial__quote,
.review__text {
  font-family: var(--font--title);
  font-style: italic;
}

.testimonial__author,
.review__author {
  color: var(--color-gold);
  font-weight: 600;
}

/* Star ratings */
.rating__star--filled {
  color: var(--color-gold);
}

/* ==========================================================================
   23. Announcement Bar - Luxe Styling
   ========================================================================== */

.section--announcement-bar {
  background: var(--color-black);
}

.section--announcement-bar:not([class*="color-scheme--"]) .announcement__bg {
  background: var(--color-black);
}

.section--announcement-bar:not([class*="color-scheme--"]) .announcement--divider-bottom {
  border-bottom: 1px solid var(--color-gold);
}

.section--announcement-bar:not([class*="color-scheme--"]) .announcement__text {
  color: var(--color-gold);
}

.section--announcement-bar:not([class*="color-scheme--"]) .announcement__icon {
  color: var(--color-gold);
}

.section--announcement-bar:not([class*="color-scheme--"]) .announcement__icon svg {
  fill: var(--color-gold);
}

.section--announcement-bar:not([class*="color-scheme--"]) .announcement-bar a {
  color: var(--color-gold);
}

.announcement-bar a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   24. Footer - Enhanced Luxe Styling
   ========================================================================== */

.footer:not([class*="color-scheme--"]) .footer-nav__title {
  color: var(--color-gold);
  font-family: var(--font--title);
}

.footer--light .footer-nav__link,
.footer--light .footer-nav__text,
.footer--light .footer-nav__text-link {
  color: #ffffff;
}

.footer:not([class*="color-scheme--"]) .footer-nav__link:hover,
.footer:not([class*="color-scheme--"]) .footer-nav__text-link:hover {
  color: var(--color-gold);
}

.footer:not([class*="color-scheme--"]) .footer-divider {
  border-top: 1px solid var(--color-gold);
}

.footer__bottom {
  border-top: 1px solid rgba(218, 171, 45, 0.3);
}

.footer-copyright__text {
  color: rgba(255, 255, 255, 0.7);
}

/* Payment icons in footer */
.footer__icons .payment-icon {
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer__icons .payment-icon:hover {
  opacity: 1;
}

/* Brand block: logo + description */
.footer-nav--brand .footer-nav__image-img {
  margin-bottom: 16px;
}

.footer-nav__brand-text,
.footer-nav__brand-text p {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.75;
  max-width: 220px;
  margin: 0;
}

/* Powered by Shopify — hidden via CSS fallback */
.footer-copyright__span--powered {
  display: none;
}

/* 5-column footer: tighter spacing */
@media (min-width: 61.25em) {
  .footer .o-layout__item[class*="u-1/5"] .footer-nav__title {
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   Footer Inline Newsletter
   ========================================================================== */

.footer__newsletter {
  padding: 40px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(218, 171, 45, 0.15);
  text-align: center;
}

.footer__newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}

.footer__newsletter-title {
  color: #DAAB2D;
  font-family: var(--font--heading);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.footer__newsletter-desc,
.footer__newsletter-desc p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer__newsletter-fields {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  align-items: stretch;
}

/* Higher specificity to override global input[type="email"] rules */
.footer__newsletter input[type="email"].footer__newsletter-input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(218, 171, 45, 0.2);
  border-right: none;
  border-radius: 4px 0 0 4px;
  color: #fff;
  padding: 0 18px;
  height: 48px;
  font-family: var(--font--body);
  font-size: 0.88rem;
  box-shadow: none;
}

.footer__newsletter input[type="email"].footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer__newsletter input[type="email"].footer__newsletter-input:focus {
  border-color: #DAAB2D;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  box-shadow: none;
}

.footer__newsletter .footer__newsletter-btn.c-btn {
  border-radius: 0 4px 4px 0;
  white-space: nowrap;
  padding: 0 28px;
  height: 48px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 48px;
  border: none;
}

.footer__newsletter-success {
  color: #DAAB2D;
  font-weight: 600;
}

.footer__newsletter .errors {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.footer__newsletter .errors li {
  list-style: none;
}

@media (max-width: 47.9275em) {
  .footer__newsletter {
    padding: 32px 0;
    margin-bottom: 32px;
  }
  .footer__newsletter-title {
    font-size: 1.2rem;
  }
  .footer__newsletter-fields {
    flex-direction: column;
    gap: 10px;
  }
  .footer__newsletter input[type="email"].footer__newsletter-input {
    border-right: 1px solid rgba(218, 171, 45, 0.2);
    border-radius: 4px;
    height: 48px;
    padding: 0 18px;
  }
  .footer__newsletter .footer__newsletter-btn.c-btn {
    border-radius: 4px;
    padding: 0 28px;
    height: 48px;
    line-height: 48px;
  }
}

/* ─── 6b. Product card image spacing ─────────────────────── */

.product-card--fit .product-card__img.product-card__img {
  padding: 16px 12px;
}

/* ─── 7. Section: Proeverijen ─────────────────────────────── */

.proeverijen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 24px;
}

.proeverij-card {
  background: var(--color--bg, #fff);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.proeverij-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.color-scheme--dark .proeverij-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.color-scheme--dark .proeverij-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.proeverij-card__image {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.proeverij-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.proeverij-card__content {
  padding: 24px;
  text-align: center;
}

.proeverij-card__title {
  font-family: var(--font--title, 'Playfair Display', serif);
  font-size: 1.4rem;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.proeverij-card__meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.proeverij-card__price {
  font-weight: 600;
  color: var(--color--accent, #DAAB2D);
}

.proeverij-card__persons {
  opacity: 0.7;
}

.proeverij-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}

.proeverij-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.proeverij-card__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color--accent, #DAAB2D);
  margin-top: 2px;
}

.proeverij-card__check svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.proeverij-card__duration {
  font-size: 0.85rem;
  opacity: 0.6;
  margin: 0 0 20px;
}

.proeverij-card__btn {
  display: inline-block;
  min-width: 180px;
}

@media (max-width: 980px) {
  .proeverijen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .proeverijen-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ─── 7b. Proeverij Product Page ──────────────────────────── */

.proeverij-pp-label {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--color--gold, #DAAB2D);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: -8px;
}

.proeverij-buy-info {
  margin: 4px 0 12px;
}

.proeverij-persons-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color--body-text, #333);
  opacity: 0.75;
  margin-bottom: 12px;
}

.proeverij-persons-notice svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.proeverij-calculator {
  background: var(--color--section-bg-light, #f8f8f8);
  border-radius: 4px;
  padding: 12px 16px;
}

.proeverij-calculator__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.proeverij-calculator__line strong {
  font-size: 1.1rem;
  color: var(--color--gold, #DAAB2D);
}

.proeverij-calculator__travel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0.8;
}

/* ─── 8. Section: Contact & Reserveren ────────────────────── */

.contact-reserveren {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.color-scheme--dark .contact-reserveren,
.color-scheme--light .contact-reserveren {
  border-color: rgba(255, 255, 255, 0.1);
}

.contact-reserveren__info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-reserveren__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.contact-reserveren__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color--accent, #DAAB2D);
}

.contact-reserveren__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.contact-reserveren__link {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.contact-reserveren__link:hover {
  color: var(--color--accent, #DAAB2D);
}

.contact-reserveren__cta {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .contact-reserveren {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .contact-reserveren__info {
    flex-direction: column;
    gap: 16px;
  }

  .contact-reserveren__cta {
    align-self: center;
  }
}

/* ==========================================================================
   9. WebwinkelKeur Reviews
   ========================================================================== */

/* Summary block */
.wkr-summary {
  text-align: center;
  margin-bottom: 32px;
}

.wkr-summary__score {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}

.wkr-summary__number {
  font-family: var(--font--title);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--color-gold);
}

.wkr-summary__out-of {
  font-family: var(--font--body);
  font-size: 1rem;
  color: var(--color--text-light);
}

.wkr-summary__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
  color: var(--color-gold);
  font-size: 20px;
}

.wkr-summary__stars .icon--star {
  width: 20px;
  height: 20px;
}

.wkr-summary__stars .icon--star svg {
  width: 100%;
  height: 100%;
}

.wkr-summary__count {
  font-family: var(--font--body);
  font-size: 0.85rem;
  color: var(--color--text-light);
}

/* Loading spinner */
.wkr-reviews__loading {
  text-align: center;
  padding: 32px 0;
}

/* Review cards container — horizontal scroll */
.wkr-reviews__items {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 16px 16px;
  scrollbar-width: none;
}

.wkr-reviews__items::-webkit-scrollbar {
  display: none;
}

/* Individual slide */
.wkr-reviews__slide {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

@media (max-width: 575px) {
  .wkr-reviews__slide {
    flex: 0 0 calc(100% - 32px);
  }
}

@media (min-width: 1024px) {
  .wkr-reviews__slide {
    flex: 0 0 360px;
  }
}

/* Review card */
.wkr-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal);
}

.wkr-card:hover {
  box-shadow: var(--shadow-md);
}

/* Stars in card */
.wkr-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  color: var(--color-gold);
  font-size: 16px;
}

.wkr-card__stars .icon--star {
  width: 16px;
  height: 16px;
}

.wkr-card__stars .icon--star svg {
  width: 100%;
  height: 100%;
}

/* Review text */
.wkr-card__text {
  flex: 1;
  margin-bottom: 16px;
}

.wkr-card__text p {
  font-family: var(--font--body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color--text);
  margin: 0;
}

/* Footer with name and date */
.wkr-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.wkr-card__name {
  font-family: var(--font--body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color--text);
}

.wkr-card__date {
  font-family: var(--font--body);
  font-size: 0.75rem;
  color: var(--color--text-light);
}

/* Empty state */
.wkr-empty__text {
  text-align: center;
  color: var(--color--text-light);
  font-family: var(--font--body);
  padding: 24px 0;
}

/* Dark color scheme override */
.color-scheme--dark .wkr-card {
  background: var(--color-black-alt);
  border-color: rgba(255, 255, 255, 0.08);
}

.color-scheme--dark .wkr-card__text p {
  color: rgba(255, 255, 255, 0.85);
}

.color-scheme--dark .wkr-card__name {
  color: #fff;
}

.color-scheme--dark .wkr-card__footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   10. Instagram Feed — Tile Spacing
   ========================================================================== */

.instagram-feed__track {
  gap: 8px !important;
}

.instagram-feed__tile {
  border-radius: 4px !important;
}

/* ==========================================================================
   11. Product Description (bs-wrap) — Design System Override
   ========================================================================== */

/* Override inline styles to use theme fonts */
.product-tabs__description .bs-wrap {
  font-family: var(--font--body, 'Inter', sans-serif) !important;
  color: var(--color--text) !important;
}
.product-tabs__description .bs-wrap h2,
.product-tabs__description .bs-wrap h3 {
  font-family: var(--font--heading, 'Playfair Display', serif) !important;
}
.product-tabs__description .bs-wrap h3 {
  color: var(--color--brand, #DAAB2D) !important;
}
.product-tabs__description .bs-card {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

/* Tasting note icons — emoji replaced by JS, style the SVG container */
.product-tabs__description .bs-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--color--text-bg, rgba(0, 0, 0, 0.04));
  border: 1px solid var(--color--text-lightest, rgba(0, 0, 0, 0.08));
  border-radius: 50%;
}
.product-tabs__description .bs-icon svg {
  width: 22px;
  height: 22px;
}

/* ==========================================================================
   7. Newsletter Section Fix
   ========================================================================== */

/* Override section-newsletter.css hardcoded white bg + dark text */
.newsletter__input.newsletter__input {
  background: var(--color-black-alt, #0a0f14) !important;
  border: 1px solid rgba(218, 171, 45, 0.25) !important;
  color: #fff !important;
  height: 48px;
}

.newsletter__input.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.newsletter__input.newsletter__input:focus {
  border-color: var(--color-gold, #DAAB2D) !important;
}

.newsletter__btn.newsletter__btn {
  height: 48px;
  vertical-align: top;
  background: var(--color-gold, #DAAB2D);
  color: var(--color-black, #020B13);
  border: none;
  border-radius: 4px;
}

.newsletter__btn.newsletter__btn:hover {
  background: var(--color-gold-dark, #A57A03);
}

/* ==========================================================================
   8. Contact Page Styling
   ========================================================================== */

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(218, 171, 45, 0.2) !important;
  color: var(--color--text) !important;
  border-radius: 4px;
  padding: 12px 16px;
  font-family: var(--font--body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--color-gold, #DAAB2D) !important;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(var(--color--text-rgb, 0, 0, 0), 0.4);
}

.contact-form label {
  font-family: var(--font--body);
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

.contact-form .c-btn--primary {
  background: var(--color-gold, #DAAB2D);
  color: var(--color-black, #020B13);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact-form .c-btn--primary:hover {
  background: var(--color-gold-dark, #A57A03);
}

/* ==========================================================================
   9. Mobile Product Card — Always show text, hide icon
   ========================================================================== */

.product-card-btn .pc-btn-text-desktop { display: inline; }
.product-card-btn .pc-btn-icon-mobile { display: none !important; }

/* ==========================================================================
   9a. Mobile Button Sizing — Accessibility (min 44px touch target)
   ========================================================================== */

@media (max-width: 47.9275em) {
  /* All buttons - minimum touch target height */
  .c-btn,
  .btn,
  button[type="submit"] {
    min-height: 48px;
    padding: 12px 24px;
    font-size: 14px;
  }
  
  /* Product card buttons - full width and proper size */
  .product-card-btn .c-btn,
  .product-card-btn__btn {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 13px;
    line-height: 1.4;
  }
  
  /* Quick shop and add to cart buttons */
  .product-card-button .c-btn {
    min-height: 48px;
  }
  
  /* Form buttons */
  .form-button,
  form .c-btn,
  .cart__checkout-btn {
    min-height: 48px;
    padding: 14px 24px;
  }
  
  /* Small button override for product grid - still needs minimum height */
  .c-btn--small\\@mobile {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 12px;
  }
}

/* Proeverij card image link */
.proeverij-card__image-link {
  display: block;
  text-decoration: none;
}

/* ==========================================================================
   12. Blog Section — Design System Override
   ========================================================================== */

/* ---- Blog page section background ---- */
.section--main-blog {
  padding-top: 48px;
  padding-bottom: 48px;
}

/* ---- Blog page title ---- */
.section--main-blog .section__title-text {
  font-family: var(--font--title, 'Playfair Display', serif);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ---- Tag filter pills ---- */
.section--main-blog .blog-page__tags-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.section--main-blog .blog-page__tags-item {
  margin: 0;
}

.section--main-blog .blog-page__tags-item a {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(218, 171, 45, 0.3);
  border-radius: 4px;
  font-family: var(--font--body, 'Inter', sans-serif);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
  background: transparent;
}

.section--main-blog .blog-page__tags-item a:hover {
  background: rgba(218, 171, 45, 0.12);
  border-color: var(--color-gold, #DAAB2D);
  color: var(--color-gold, #DAAB2D);
  opacity: 1;
}

.section--main-blog .blog-page__tags-item--active {
  padding: 6px 18px;
  background: var(--color-gold, #DAAB2D);
  color: var(--color-black, #020B13);
  border-radius: 4px;
  font-family: var(--font--body, 'Inter', sans-serif);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ---- Blog card ---- */
.section--main-blog .blog {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.section--main-blog .blog:hover {
  border-color: rgba(218, 171, 45, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 12px rgba(218, 171, 45, 0.08);
  transform: translateY(-2px);
}

/* ---- Blog card image ---- */
.section--main-blog .blog__media {
  background: var(--color-black-alt, #262626);
}

.section--main-blog .blog__img {
  transition: transform 0.5s ease;
}

.section--main-blog .blog:hover .blog__img {
  transform: scale(1.04);
}

.section--main-blog .blog-link:hover {
  opacity: 1;
}

/* ---- Blog card date badge ---- */
.section--main-blog .blog__date .label {
  background: var(--color-gold, #DAAB2D);
  color: var(--color-black, #020B13);
  font-family: var(--font--body, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.3px;
  border-radius: 4px;
}

/* ---- Blog card details ---- */
.section--main-blog .blog__details {
  padding: 16px 20px 20px;
  background: transparent;
  border-color: transparent;
}

/* ---- Blog card title ---- */
.section--main-blog .blog__title {
  font-family: var(--font--title, 'Playfair Display', serif);
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.35;
  transition: color 0.2s ease;
  margin: 0 0 10px;
}

.section--main-blog .blog:hover .blog__title {
  color: var(--color-gold, #DAAB2D);
}

/* ---- Blog card excerpt text ---- */
.section--main-blog .blog__text {
  font-family: var(--font--body, 'Inter', sans-serif);
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.75;
  margin: 0 0 12px;
}

/* ---- Blog card "Lees verder" link ---- */
.section--main-blog .blog__text-link {
  font-family: var(--font--body, 'Inter', sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold, #DAAB2D);
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.section--main-blog .blog__text-link:hover {
  color: var(--color-gold-dark, #A57A03);
  text-decoration: none;
}

/* ---- Blog card tags ---- */
.section--main-blog .blog__meta-tags {
  color: var(--color-gold, #DAAB2D);
  opacity: 0.7;
}

.section--main-blog .blog__meta-tags__link {
  color: var(--color-gold, #DAAB2D);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section--main-blog .blog__meta-tags__link:hover {
  opacity: 0.9;
}

/* ---- Pagination ---- */
.section--main-blog .pagination .page,
.section--main-blog .pagination a {
  font-family: var(--font--body, 'Inter', sans-serif);
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.section--main-blog .pagination .page.current,
.section--main-blog .pagination .active {
  background: var(--color-gold, #DAAB2D);
  color: var(--color-black, #020B13);
}

.section--main-blog .pagination a:hover {
  color: var(--color-gold, #DAAB2D);
}

/* ---- Blog tags collapsible box ---- */
.section--main-blog .blog-page__tags-items--box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 16px;
}

/* ---- Tags button ---- */
.section--main-blog .blog-page__tags-btn-link {
  color: var(--color-gold, #DAAB2D);
  font-family: var(--font--body, 'Inter', sans-serif);
  font-weight: 600;
}

/* ---- Mobile responsive ---- */
@media (max-width: 47.9275em) {
  .section--main-blog .blog__details {
    padding: 12px 14px 16px;
  }

  .section--main-blog .blog__title {
    font-size: 1rem;
    line-height: 1.3;
  }

  .section--main-blog .blog__text {
    font-size: 0.85rem;
  }

  .section--main-blog .blog__text-link {
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   13. Article Detail Page — Design System Override
   ========================================================================== */

/* ---- Article hero image ---- */
.article__featured-media {
  position: relative;
}

.article__featured-media::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(2, 11, 19, 0.4) 0%, transparent 100%);
  pointer-events: none;
}

/* ---- Article content card ---- */
.color-scheme--dark .article__blocks,
.section--main-article .article__blocks {
  background: var(--color-black, #020B13);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 32px 48px 24px;
}

/* ---- Article title ---- */
.article__title .section__title-text {
  font-family: var(--font--title, 'Playfair Display', serif);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ---- Article content (RTE) ---- */
.article__content.rte {
  font-family: var(--font--body, 'Inter', sans-serif);
  font-size: 1rem;
  line-height: 1.75;
}

.article__content.rte h2,
.article__content.rte h3,
.article__content.rte h4 {
  font-family: var(--font--title, 'Playfair Display', serif);
  font-weight: 700;
  margin-top: 1.5em;
}

.article__content.rte a {
  color: var(--color-gold, #DAAB2D);
  transition: color 0.2s ease;
}

.article__content.rte a:hover {
  color: var(--color-gold-dark, #A57A03);
}

.article__content.rte blockquote {
  border-left: 3px solid var(--color-gold, #DAAB2D);
  padding-left: 20px;
  font-family: var(--font--title, 'Playfair Display', serif);
  font-style: italic;
  opacity: 0.85;
}

/* ---- Article tags ---- */
.article__tags-item {
  font-family: var(--font--body, 'Inter', sans-serif);
}

.article__tags-item a {
  color: var(--color-gold, #DAAB2D) !important;
  transition: color 0.2s ease;
}

.article__tags-item a:hover {
  color: var(--color-gold-dark, #A57A03) !important;
}

/* ---- Article prev/next navigation ---- */
.article-paginate__link {
  background: var(--color-gold, #DAAB2D);
  color: var(--color-black, #020B13);
  border-radius: 4px;
}

.article-paginate__link:hover {
  background: var(--color-gold-dark, #A57A03);
}

/* ---- Article comments ---- */
.article-comments {
  border-top-color: rgba(218, 171, 45, 0.15);
}

.article-comments__title,
.article-form__title {
  font-family: var(--font--title, 'Playfair Display', serif);
  font-weight: 700;
}

.article-form {
  border-top-color: rgba(218, 171, 45, 0.15);
}

/* ---- Article date ---- */
.article__date.article__date {
  background-color: var(--color-gold, #DAAB2D);
  color: var(--color-black, #020B13);
  border-radius: 4px;
}

/* ---- Mobile responsive ---- */
@media (max-width: 61.24em) {
  .color-scheme--dark .article__blocks,
  .section--main-article .article__blocks {
    padding: 16px 20px 16px;
  }
}

/* ==========================================================================
   Hide Tabbed Collections Section on Mobile (Homepage)
   ========================================================================== */
@media (max-width: 47.9275em) {
  #shopify-section-section_collection_kYCeET {
    display: none !important;
  }
}

/* ==========================================================================
   Merken (Brands) Page - Luxe Styling
   ========================================================================== */

/* Brand logo cards with gold accent */
.color-scheme--dark .logo-list__item-content {
  background: var(--color-black-alt, #262626);
  border-radius: 4px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 120px;
}

.color-scheme--dark .logo-list__item-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(218, 171, 45, 0.35);
}

/* Logo link styling */
.color-scheme--dark .logo-list__link {
  display: block;
  text-decoration: none;
}

/* Logo images */
.color-scheme--dark .logo-list__img {
  filter: brightness(1) contrast(1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.color-scheme--dark .logo-list__item-content:hover .logo-list__img {
  filter: brightness(1.1);
  transform: scale(1.03);
}

/* Section title styling on brands page */
.color-scheme--dark.section--logo-list .section__title-text {
  color: var(--color-gold, #DAAB2D);
  font-family: var(--font--title, 'Playfair Display', serif);
  font-weight: 700;
  position: relative;
}

.color-scheme--dark.section--logo-list .section__title-text::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-gold, #DAAB2D);
  margin: 16px auto 0;
}

/* Description text */
.color-scheme--dark.section--logo-list .section__title-desc {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font--body, 'Inter', sans-serif);
}

/* Section divider color */
.color-scheme--dark.section--logo-list .section-divider--bottom::after,
.color-scheme--dark.section--logo-list .section-divider--top::before {
  background-color: rgba(218, 171, 45, 0.2);
}

/* Button styling on brands page */
.color-scheme--dark.section--logo-list .c-btn--primary {
  background: var(--color-gold, #DAAB2D);
  color: var(--color-black, #020B13);
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.color-scheme--dark.section--logo-list .c-btn--primary:hover {
  background: var(--color-gold-dark, #A57A03);
  transform: translateY(-1px);
}

/* Mobile adjustments for brands page */
@media (max-width: 47.9275em) {
  .color-scheme--dark .logo-list__item-content {
    padding: 16px;
    min-height: 100px;
  }
  
  .color-scheme--dark.section--logo-list .section__title-text::after {
    width: 40px;
    margin-top: 12px;
  }
}
