/*
 * Lilla & Stora Bjorn - Production Stylesheet
 * Curated from Shopify Reach theme SCSS compilation
 * Phase 1: Infrastructure & Shared Shell
 *
 * Layer order: reset -> tokens -> base -> layout -> components -> utilities
 */

/* ==========================================================================
   SELF-HOSTED FONTS (eliminates Google Fonts CDN — 2 DNS lookups removed)
   ========================================================================== */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  src: url('/fonts/montserrat.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 100 400;
  font-display: swap;
  src: url('/fonts/montserrat-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('/fonts/source-sans-3.woff2') format('woff2');
}

@layer reset, tokens, base, layout, components, utilities;

/* ==========================================================================
   RESET
   Modern CSS reset - clean slate for all elements
   ========================================================================== */

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

  html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
  }

  body {
    min-height: 100vh;
    line-height: 1.5;
    caret-color: transparent;
  }

  input,
  textarea,
  [contenteditable="true"] {
    caret-color: auto;
  }

  img,
  picture,
  video,
  svg {
    display: block;
    max-width: 100%;
  }

  input,
  button,
  textarea,
  select {
    font: inherit;
  }

  a {
    text-decoration-skip-ink: auto;
    color: currentColor;
  }

  ul,
  ol {
    list-style: none;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    overflow-wrap: break-word;
  }

  table {
    border-collapse: collapse;
  }
}

/* ==========================================================================
   TOKENS
   CSS custom properties - colors, fonts, spacing, z-index
   Sourced from Shopify Reach theme settings_data.json
   ========================================================================== */

@layer tokens {
  :root {
    /* Colors */
    --color-bg: #ffffff;
    --color-heading: #a06a3b;
    --color-text: #27211c;
    --color-link: #794920;
    --color-accent-primary: #e9d5bc;
    --color-accent-secondary: #6f421b;
    --color-border: #e8e8e1;
    --color-sales-bg: #a06a3b;
    --color-sales-text: #fff;
    --color-button-primary-bg: #27211c;
    --color-button-primary-text: #fff;

    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    --font-weight-heading: 100;
    --font-weight-body: 300;

    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;

    /* Transitions */
    --transition-speed: 0.3s;
    --transition-curve: ease;

    /* Z-index layers */
    --z-header: 100;
    --z-drawer-overlay: 200;
    --z-drawer: 300;
  }
}

/* ==========================================================================
   BASE
   Body, headings, links, paragraphs, buttons
   Extracted from theme-compiled.css lines ~5859-5960
   ========================================================================== */

@layer base {
  body {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: var(--font-weight-body);
    position: relative;
    width: 100%;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
  }

  .scroll-lock body {
    overflow: hidden;
    touch-action: manipulation;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 400;
    color: var(--color-heading);
  }

  h1 b, h1 strong,
  h2 b, h2 strong,
  h3 b, h3 strong,
  h4 b, h4 strong,
  h5 b, h5 strong,
  h6 b, h6 strong {
    font-weight: 400;
  }

  b,
  strong {
    font-weight: 400;
  }

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

  a:hover {
    color: var(--color-accent-secondary);
  }

  figure {
    margin: 0;
  }

  /* Button base - from theme-compiled.css line ~1087 */
  button,
  .btn {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 400;
    display: inline-block;
    padding: 0;
    vertical-align: middle;
    cursor: pointer;
    background: transparent;
    border: 0;
    appearance: normal;
  }

  /* SVG icon base - from theme-compiled.css line ~1232 */
  .icon svg,
  .site-header-icon-normal,
  .site-header-icon-alternate,
  .site-footer-social-icon svg {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    transform-origin: 50% 50%;
    fill: currentColor;
  }
}

/* ==========================================================================
   LAYOUT
   Main content area, containers, page structure
   ========================================================================== */

@layer layout {
  .site-main {
    position: relative;
    z-index: 1000;
  }

  /* Container / content padding - from theme-compiled.css line ~1173 */
  .site-header-inner,
  .site-footer-inner,
  .page-container {
    padding-right: var(--space-md);
    padding-left: var(--space-md);
  }

  @media screen and (min-width: 769px) {
    .site-header-inner,
    .site-footer-inner,
    .page-container {
      padding-right: 1.5rem;
      padding-left: 1.5rem;
    }
  }

  @media screen and (min-width: 1025px) {
    .site-header-inner,
    .site-footer-inner,
    .page-container {
      padding-right: var(--space-lg);
      padding-left: var(--space-lg);
    }
  }

  .page-container,
  .site-footer-inner {
    max-width: 80rem;
    margin-right: auto;
    margin-left: auto;
  }
}

/* ==========================================================================
   COMPONENTS - Header
   .site-header-wrapper, .site-header, .site-header-inner
   Extracted from theme-compiled.css lines ~7715-8027
   ========================================================================== */

@layer components {

  /* --- Header wrapper --- */

  .site-header-wrapper {
    position: relative;
    z-index: 3000;
    color: var(--color-accent-secondary);
    background: var(--color-bg);
  }

  .site-header,
  .site-header-mobile {
    position: relative;
  }

  .site-header a,
  .site-header-mobile a {
    text-decoration: none;
    outline-offset: 0.125rem;
    outline-color: currentColor;
  }

  .site-header {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: var(--font-weight-body);
    z-index: 3000;
    font-size: 0;
  }

  @media screen and (max-width: 768px) {
    .site-header {
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
      z-index: var(--z-header);
      color: var(--color-accent-secondary);
      background: var(--color-bg);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }
  }

  @media screen and (min-width: 769px) {
    .site-header-sticky .site-header {
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
    }
    .site-header::after {
      position: absolute;
      top: 0;
      z-index: 900;
      display: block;
      width: 100%;
      height: 100%;
      content: "";
      opacity: 1;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }
    .site-header-bordered .site-header::after {
      opacity: 1;
    }
  }

  /* --- Header inner --- */

  .site-header-inner {
    position: relative;
    z-index: 1000;
  }

  @media screen and (max-width: 768px) {
    .site-header-inner {
      display: flex;
      align-items: stretch;
      flex-wrap: nowrap;
      height: 3.75rem;
      padding-right: 0;
      padding-left: 0;
    }
  }

  @media screen and (min-width: 769px) {
    .site-header-inner {
      background: var(--color-bg);
    }
  }

  /* --- Header mobile bar --- */

  .site-header-mobile {
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }

  @media screen and (min-width: 769px) {
    .site-header-mobile {
      display: none;
    }
  }

  .site-header-mobile .site-header-logo {
    margin-right: auto;
    margin-left: auto;
  }

  /* --- Header layout elements --- */

  .site-header-drawer-toggle,
  .site-header-navigation,
  .site-header-logo,
  .site-header-actions {
    display: inline-block;
    font-size: 0;
    vertical-align: middle;
  }

  /* --- Drawer toggle (hamburger) --- */

  @media screen and (max-width: 768px) {
    .site-header-drawer-toggle {
      align-self: center;
      flex-basis: auto;
      flex-grow: 1;
      flex-shrink: 1;
      height: 100%;
      overflow: hidden;
    }
    .action-drawer-visible .site-header-drawer-toggle {
      display: none;
    }
  }

  @media screen and (min-width: 769px) {
    .site-header-drawer-toggle {
      display: none;
      width: calc(50% - 7.75rem);
    }
    .site-navigation-layout-drawer .site-header-drawer-toggle {
      display: inline-block;
    }
  }

  /* --- Drawer button --- */

  .site-header-drawer-button {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-size: 0;
    color: var(--color-accent-secondary);
    text-align: left;
    white-space: nowrap;
    vertical-align: top;
  }

  @media screen and (min-width: 769px) {
    .site-header-drawer-button {
      width: auto;
      color: var(--color-accent-secondary);
      vertical-align: middle;
      outline-offset: 0.125rem;
      outline-color: currentColor;
    }
  }

  @media screen and (max-width: 768px) {
    .site-header-drawer-button {
      height: 100%;
      padding-left: var(--space-sm);
    }
  }

  .site-header-drawer-button-icon,
  .site-header-drawer-button-text {
    display: inline-block;
    vertical-align: middle;
  }

  .site-header-drawer-button-icon {
    position: relative;
  }

  .site-header-drawer-button-text {
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
  }

  @media screen and (max-width: 768px) {
    .site-header-drawer-button-text {
      width: calc(100% - 3.75rem);
      margin-left: var(--space-xs);
    }
    .site-header-drawer-button-text .breadcrumbs {
      display: block;
      width: 100%;
      margin-top: var(--space-xs);
      overflow: hidden;
      font-size: 0.75rem;
      text-overflow: ellipsis;
      white-space: nowrap;
      opacity: 0.75;
    }
    .site-header-menu-visible .site-header-drawer-button-text .breadcrumbs {
      display: none;
    }
    .site-header-menu-visible .site-header-drawer-button-text {
      text-align: center;
    }
  }

  @media screen and (min-width: 769px) {
    .site-header-drawer-button-text {
      padding-left: var(--space-sm);
    }
    .site-header-drawer-button-text .breadcrumbs {
      display: none;
    }
  }

  /* --- Header navigation (desktop) --- */

  .site-header-navigation {
    display: none;
    width: 100%;
  }

  @media screen and (min-width: 769px) {
    .site-header-navigation {
      display: inline-block;
      width: calc(50% - 7.75rem);
    }
    .site-navigation-layout-drawer .site-header-navigation {
      position: absolute;
      top: -100%;
      left: -100%;
      visibility: hidden;
    }
  }

  /* --- Header logo --- */

  .site-header-logo {
    width: 15.5rem;
    padding-right: var(--space-md);
    padding-left: var(--space-md);
    text-align: center;
  }

  @media screen and (max-width: 768px) {
    .site-header .site-header-logo {
      flex-grow: 1;
      width: auto;
      text-align: center;
    }
    .site-header .site-header-logo .site-logo-image {
      max-width: 100px;
      max-height: 50px;
    }
  }

  .site-logo {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--color-accent-secondary);
  }

  .site-logo.site-logo-has-image {
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
  }

  .site-logo-image,
  .site-logo-text {
    display: inline-block;
    margin: 0 auto;
  }

  .site-logo-image {
    display: inline-block;
    vertical-align: middle;
  }

  .site-logo-text {
    font-style: normal;
    font-weight: 400;
    display: inline-block;
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
  }

  /* --- Header actions (right side: cart, account) --- */

  .site-header-actions {
    text-align: right;
  }

  @media screen and (max-width: 768px) {
    .site-header-actions {
      flex-basis: auto;
      flex-grow: 0;
      flex-shrink: 0;
      padding-left: 1.5rem;
    }
    .site-header-menu-visible .site-header-actions {
      display: none;
    }
    .action-drawer-visible .site-header-actions {
      width: 100%;
      padding-left: 0;
    }
  }

  @media screen and (min-width: 769px) {
    .site-header-actions {
      width: calc(50% - 7.75rem);
    }
  }

  .site-header-action-utilities,
  .site-header-action-links {
    display: inline-block;
    padding: 0;
    margin: 0;
    font-size: 0;
    vertical-align: middle;
    list-style: none;
  }

  @media screen and (max-width: 768px) {
    .site-header-action-links {
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      justify-content: flex-end;
      height: 3.75rem;
    }
    .action-drawer-visible .site-header-action-links {
      justify-content: flex-start;
    }
  }

  .site-header-action-item {
    display: inline-block;
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }

  .site-header-action-item:not(:first-child) {
    margin-left: var(--space-sm);
  }

  @media screen and (min-width: 769px) {
    .site-header-action-item:not(:first-child) {
      margin-left: 1.5rem;
    }
  }

  @media screen and (min-width: 1025px) {
    .site-header-action-item:not(:first-child) {
      margin-left: var(--space-lg);
    }
  }

  @media screen and (max-width: 768px) {
    .action-drawer-visible .site-header-action-item {
      display: none;
    }
    .action-drawer-visible .site-header-action-item.has-active-toggle {
      display: block;
      flex-basis: auto;
      flex-shrink: 0;
      width: 100%;
      height: 100%;
      margin-left: 0;
    }
  }

  /* --- Action link --- */

  .site-header-action-link {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 400;
    position: relative;
    display: inline-block;
    font-size: 1rem;
    color: var(--color-accent-secondary);
  }

  .site-header-action-link:hover {
    color: var(--color-accent-secondary);
  }

  @media screen and (max-width: 768px) {
    .site-header-action-link {
      display: block;
      height: 100%;
      padding: 0.125rem 0.625rem;
      font-size: 0;
    }
    .site-header-action-link,
    .site-header-action-link:hover {
      color: var(--color-accent-secondary);
    }
  }

  /* --- Action icons --- */

  .site-header-utility-icon,
  .site-header-action-icon,
  .site-header-drawer-button-icon {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
  }

  .site-header-utility-icon .site-header-icon-normal,
  .site-header-action-icon .site-header-icon-normal,
  .site-header-drawer-button-icon .site-header-icon-normal,
  .site-header-utility-icon .site-header-icon-alternate,
  .site-header-action-icon .site-header-icon-alternate,
  .site-header-drawer-button-icon .site-header-icon-alternate {
    width: 1.5rem;
    height: 1.5rem;
  }

  .site-header-utility-icon .site-header-icon-normal,
  .site-header-action-icon .site-header-icon-normal,
  .site-header-drawer-button-icon .site-header-icon-normal {
    transform: scale(1);
    transition: transform 125ms cubic-bezier(0.25, 0.1, 0.25, 1) 125ms;
  }

  .site-header-utility-icon .site-header-icon-alternate,
  .site-header-action-icon .site-header-icon-alternate,
  .site-header-drawer-button-icon .site-header-icon-alternate {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -0.75rem;
    margin-left: -0.75rem;
    transform: scale(0);
    transition: transform 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .has-active-toggle .site-header-utility-icon .site-header-icon-normal,
  .has-active-toggle .site-header-action-icon .site-header-icon-normal,
  .has-active-toggle .site-header-drawer-button-icon .site-header-icon-normal {
    transform: scale(0);
    transition: transform 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .has-active-toggle .site-header-utility-icon .site-header-icon-alternate,
  .has-active-toggle .site-header-action-icon .site-header-icon-alternate,
  .has-active-toggle .site-header-drawer-button-icon .site-header-icon-alternate {
    transform: scale(1);
    transition: transform 125ms cubic-bezier(0.25, 0.1, 0.25, 1) 125ms;
  }

  .site-header-utility-icon,
  .site-header-utility-text,
  .site-header-action-icon,
  .site-header-action-text {
    display: inline-block;
    vertical-align: middle;
  }

  /* --- Cart count badge --- */

  .site-header-action-icon-cart-count {
    position: absolute;
    top: -4px;
    right: -7px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    font-size: 0.625rem;
    line-height: 19px;
    letter-spacing: -1px;
    color: #fff;
    background: var(--color-accent-primary);
    border-radius: 9px;
    transform: scale(1);
    transition: transform 125ms cubic-bezier(0.25, 0.1, 0.25, 1) 125ms;
    transform-origin: 25% 75%;
  }

  @media screen and (max-width: 768px) {
    .site-header-action-icon-cart-count {
      color: #fff;
      background: var(--color-accent-primary);
    }
  }

  .site-header-action-icon-cart-count:empty,
  .site-header-action-link[aria-expanded=true] .site-header-action-icon-cart-count {
    transform: scale(0);
    transition: transform 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  /* --- Action text --- */

  .site-header-action-text {
    display: inline-block;
  }

  @media screen and (max-width: 768px) {
    .site-header-action-text {
      display: block;
      margin-top: var(--space-xs);
      font-size: 0.75rem;
      text-align: center;
    }
  }

  @media screen and (max-width: 1280px) and (min-width: 769px) {
    .site-header-action-text {
      display: none;
    }
  }

  @media screen and (min-width: 1281px) {
    .site-header-action-text {
      padding-left: var(--space-sm);
      font-size: 1rem;
      line-height: 1.5rem;
    }
  }

  @media screen and (max-width: 768px) {
    .site-header-action-icon {
      width: 100%;
    }
    .site-header-action-icon svg {
      margin-right: auto;
      margin-left: auto;
    }
  }

  /* ==========================================================================
     COMPONENTS - Navigation menu
     .navmenu, .navmenu-item, .navmenu-link, submenus
     Extracted from theme-compiled.css lines ~12410-12472
     ========================================================================== */

  .navmenu {
    padding: 0;
    margin: 0;
    font-size: 1rem;
    list-style: none;
  }

  .navmenu-item {
    padding-top: var(--space-xs);
    padding-bottom: var(--space-xs);
    transition: height 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .navmenu-link {
    position: relative;
    display: inline-block;
  }

  .navmenu-item-has-submenu > .navmenu-link {
    padding-right: 1.3125rem;
  }

  .navmenu-icon {
    position: absolute;
    top: 50%;
    right: 0;
    display: inline-block;
    width: 0.875rem;
    height: 0.875rem;
    margin-top: -0.4375rem;
  }

  .navmenu-icon-minus {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
  }

  .navmenu-item-active > .navmenu-link .navmenu-icon-minus {
    visibility: visible;
  }

  .navmenu-item-active > .navmenu-link .navmenu-icon-plus {
    visibility: hidden;
  }

  .navmenu-submenu {
    display: none;
    list-style: none;
    visibility: hidden;
    transform: scale(0);
    transition: transform 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .navmenu-submenu.animating,
  .navmenu-submenu.visible {
    display: block;
    visibility: visible;
  }

  .navmenu-submenu.animating-out {
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .navmenu-submenu.visible:not(.animating-out) {
    transform: scale(1);
  }

  /* Desktop nav links */
  .site-header-navigation .navmenu-depth-1 > .navmenu-item {
    display: inline-block;
  }

  .site-header-navigation .navmenu-depth-1 > .navmenu-item:not(:first-child) {
    margin-left: var(--space-sm);
  }

  @media screen and (min-width: 769px) {
    .site-header-navigation .navmenu-depth-1 > .navmenu-item:not(:first-child) {
      margin-left: 1.5rem;
    }
  }

  @media screen and (min-width: 1025px) {
    .site-header-navigation .navmenu-depth-1 > .navmenu-item:not(:first-child) {
      margin-left: var(--space-lg);
    }
  }

  .site-header-navigation .navmenu-link {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    color: var(--color-accent-secondary);
    z-index: 100;
  }

  .site-header-navigation .navmenu-link:hover {
    color: var(--color-accent-secondary);
  }

  .site-header-navigation .navmenu-depth-1,
  .site-header-navigation .site-header-menu {
    font-size: 0;
  }

  /* Desktop dropdown submenus */
  .site-header-navigation .navmenu-submenu {
    overflow: hidden;
    color: var(--color-text);
    background-color: var(--color-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-radius: 0.3125rem;
    position: absolute;
    width: 240px;
    padding: 1.25rem 1.5rem;
    overflow: visible;
  }

  .site-header-navigation .navmenu-submenu .navmenu-link {
    display: block;
  }

  .site-header-navigation .navmenu-depth-2 {
    top: 100%;
    z-index: 200;
    margin-left: -1.5rem;
    line-height: 1.4;
    transform-origin: 1.5rem 0;
  }

  .site-header-navigation .navmenu-depth-2 .navmenu-item {
    margin-top: 0.75rem;
  }

  .site-header-navigation .navmenu-depth-2 .navmenu-item:first-child {
    margin-top: 0;
  }

  /* ==========================================================================
     COMPONENTS - Header drawers (mobile menu + cart)
     .site-header-drawer, .site-header-drawer-menu, .site-header-drawer-cart
     Extracted from theme-compiled.css lines ~12720-13030
     ========================================================================== */

  .site-header-drawer {
    position: absolute;
    z-index: 990;
    font-size: 1rem;
    background: var(--color-bg);
    transition: transform 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .site-header-drawer.animating-out {
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  @media screen and (max-width: 768px) {
    .site-header-drawer {
      top: 3.75rem;
      width: 100%;
      padding: var(--space-md);
      overflow-y: auto;
      background: var(--color-bg);
      visibility: hidden;
      -webkit-overflow-scrolling: touch;
    }
  }

  @media screen and (min-width: 769px) {
    .site-header-drawer {
      top: 100%;
      padding: 1.5rem;
      margin-top: -1px;
      visibility: hidden;
      transform: scale(0);
    }
  }

  /* Drawer visibility states */
  .site-header-drawer-cart.visible,
  .site-header-drawer-cart.animating,
  .site-header-drawer-menu.visible,
  .site-header-drawer-menu.animating {
    visibility: visible;
  }

  @media screen and (max-width: 768px) {
    .site-header-drawer-cart.animating-in,
    .site-header-drawer-cart.visible:not(.animating-out),
    .site-header-drawer-menu.animating-in,
    .site-header-drawer-menu.visible:not(.animating-out) {
      top: 3.75rem;
      visibility: visible;
    }
  }

  @media screen and (min-width: 769px) {
    .site-header-drawer-cart.animating-in,
    .site-header-drawer-cart.visible:not(.animating-out),
    .site-header-drawer-menu.animating-in,
    .site-header-drawer-menu.visible:not(.animating-out) {
      transform: scale(1);
    }
  }

  @media screen and (min-width: 769px) {
    .site-header-drawer-cart {
      overflow: hidden;
      color: var(--color-text);
      background-color: var(--color-bg);
      border: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      border-radius: 0 0 0 0.3125rem;
      right: 0;
      transform-origin: 100% 0;
    }
  }

  .site-header-drawer-cart {
    max-width: 520px;
    padding: 0;
    transition: height cubic-bezier(0.25, 0.1, 0.25, 1) linear;
  }

  .site-header-drawer-cart .cart {
    padding: var(--space-md);
  }

  @media screen and (min-width: 769px) {
    .site-header-drawer-cart .cart {
      padding: 1.5rem;
      overflow: hidden;
    }
  }

  /* --- Drawer menu --- */

  .site-header-drawer-menu {
    width: 100%;
    padding: 0;
    font-size: 1.125rem;
    color: var(--color-text);
  }

  @media screen and (min-width: 769px) {
    .site-header-drawer-menu {
      overflow: hidden;
      color: var(--color-text);
      background-color: var(--color-bg);
      border: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      border-radius: 0 0 0.3125rem 0;
      left: 0;
      width: auto;
      transform-origin: 0 0;
    }
  }

  .site-header-drawer-menu a {
    color: var(--color-text);
    text-decoration: none;
    outline-offset: 0.125rem;
    outline-color: currentColor;
  }

  /* --- Drawer content --- */

  .site-header-drawer-content {
    padding: 1.5rem 1.5rem 0;
  }

  .site-header-drawer-content > :last-child {
    margin-bottom: 2.5rem;
  }

  @media screen and (min-width: 769px) {
    .site-header-drawer-content {
      max-height: inherit;
      padding: 3rem 4rem 0;
      overflow-y: auto;
    }
    .site-header-drawer-content > :last-child {
      margin-bottom: 3rem;
    }
  }

  /* --- Drawer navigation --- */

  .site-header-drawer-navigation .navmenu-item-has-submenu {
    transition: height 400ms linear;
  }

  .site-header-drawer-navigation .navmenu-link {
    position: relative;
    vertical-align: middle;
  }

  @media screen and (max-width: 768px) {
    .site-header-drawer-navigation .navmenu-link-depth-1 {
      font-style: normal;
      font-weight: 400;
    }
  }

  @media screen and (min-width: 769px) {
    .site-header-drawer-navigation .navmenu-link-depth-1 {
      font-size: 1.5rem;
    }
  }

  .site-header-drawer-navigation .navmenu-submenu {
    max-height: 0;
    padding-left: 1.5rem;
    visibility: visible;
    transition: max-height 400ms linear,
                transform 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
    transform-origin: 0 0;
  }

  .site-header-drawer-navigation .navmenu-submenu.animating-in,
  .site-header-drawer-navigation .navmenu-submenu.visible:not(.animating-out) {
    max-height: 125rem;
  }

  @media screen and (min-width: 769px) {
    .site-header-drawer-navigation .navmenu-submenu {
      padding-left: var(--space-lg);
      font-size: 1.125rem;
    }
  }

  /* ==========================================================================
     COMPONENTS - Cart drawer slide-in transitions
     Custom cart drawer with position fixed and translateX slide-in
     Required by Plan 03 JS components - must be present in CSS
     ========================================================================== */

  /* Cart drawer overlay */
  .cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-speed) var(--transition-curve);
    z-index: var(--z-drawer-overlay);
  }

  .cart-drawer-visible + .cart-drawer-overlay,
  .cart-drawer-visible ~ .cart-drawer-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  /* Cart drawer panel */
  #site-header-drawer-cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    background: var(--color-bg);
    transform: translateX(100%);
    transition: transform var(--transition-speed) var(--transition-curve);
    z-index: var(--z-drawer);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }

  #site-header-drawer-cart.cart-drawer-visible {
    transform: translateX(0);
    visibility: visible;
  }

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

  /* Cart drawer close button */
  .cart-drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
  }

  /* ==========================================================================
     COMPONENTS - Cart (shared cart styles)
     .cart, .cart-mini, .cart-empty, .cart-container, .cart-items, .cart-footer
     Extracted from theme-compiled.css lines ~9215-9520
     ========================================================================== */

  .cart {
    position: relative;
    overflow: hidden;
    color: var(--color-text);
    transition: min-height 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .cart.cart-reloading .cart-container-empty,
  .cart.cart-reloading .cart-container {
    opacity: 0.1;
  }

  .cart.cart-mini {
    display: flex;
    flex-direction: column;
  }

  .cart-container-empty {
    display: none;
    text-align: center;
    opacity: 0;
    transition: opacity 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .cart-empty .cart-container-empty {
    display: block;
    opacity: 1;
  }

  .cart-container-empty-text {
    margin-top: 0;
  }

  .cart-container {
    position: relative;
    display: block;
    max-height: 100%;
    min-height: 0;
    opacity: 1;
    transition: opacity 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .cart-mini .cart-container {
    display: flex;
    flex-direction: column;
  }

  .cart-empty .cart-container {
    display: none;
    opacity: 0;
  }

  .cart-items {
    display: block;
    width: 100%;
  }

  @media screen and (min-width: 769px) {
    .cart-items {
      display: table;
      border-collapse: collapse;
    }
  }

  .cart-mini .cart-items {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    padding: var(--space-md) var(--space-lg);
  }

  .cart-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .cart-footer-column {
    width: 100%;
    padding-bottom: var(--space-md);
  }

  .cart-mini .cart-footer-column {
    width: 100%;
  }

  .cart-mini .cart-footer-column:last-child {
    padding-bottom: 0;
  }

  .cart-close {
    position: absolute;
    top: 1.25rem;
    right: var(--space-md);
    z-index: 1;
    color: var(--color-text);
    opacity: 0.5;
  }

  .cart-close svg {
    width: 1.5rem;
    height: 1.5rem;
    pointer-events: none;
  }

  .cart-totals,
  .cart-update,
  .cart-submit {
    display: block;
    width: 100%;
  }

  .cart-mini .cart-totals,
  .cart-mini .cart-update,
  .cart-mini .cart-submit {
    max-width: none;
    margin-left: initial;
  }

  .cart-total-row {
    margin-bottom: var(--space-md);
  }

  .cart-total-row:last-child {
    margin-bottom: 0;
  }

  .cart-total-row-title {
    float: left;
  }

  .cart-total-row-value {
    position: relative;
    float: right;
  }

  /* ==========================================================================
     COMPONENTS - Cart Line Items
     .cart-item-row, .cart-item-column, .cart-item-visual, .cart-item-details
     Ported from theme-compiled.css lines ~9575-9918
     ========================================================================== */

  .cart-item-row {
    position: relative;
  }

  .cart-item-row.cart-item-mini {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--color-border);
  }

  .cart-item-row.cart-item-mini:last-of-type {
    border-bottom: none;
  }

  .cart-item-column {
    text-align: left;
    opacity: 1;
    transition: opacity 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .cart-item-mini .cart-item-column {
    display: block;
    border-bottom: 0;
  }

  .cart-item-column-slide {
    display: flex;
    flex-direction: row;
  }

  .cart-item-mini .cart-item-column-slide {
    padding-top: 0;
    padding-bottom: 0;
  }

  .cart-item-mini .cart-item-col-product {
    width: 100%;
    padding-top: 1.5rem;
  }

  .cart-item:first-child .cart-item-col-product {
    padding-top: 0;
  }

  .cart-item-col-quantity {
    margin-left: 4.4375rem;
  }

  .cart-item-mini .cart-item-col-quantity {
    padding-bottom: 1.5rem;
  }

  .cart-item-col-total {
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
  }

  .cart-item-col-total .cart-item-column-slide {
    justify-content: flex-end;
  }

  @media screen and (max-width: 375px) {
    .cart-item-col-total {
      margin-left: 4.4375rem;
    }
  }

  .cart-item-mini .cart-item-col-total {
    padding-bottom: 1.5rem;
  }

  .cart-item-product {
    font-size: 0;
  }

  .cart-item-figure {
    border-radius: 0.3125rem;
    overflow: hidden;
    height: auto;
  }

  .cart-item-image {
    width: 100%;
    height: auto;
    display: block;
  }

  .cart-item-visual,
  .cart-item-details {
    display: inline-block;
    vertical-align: middle;
  }

  .cart-item-visual {
    padding-right: 1rem;
  }

  .cart-item-mini .cart-item-visual {
    width: 4.4375rem;
  }

  .cart-item-details {
    font-size: 1rem;
  }

  .cart-item-mini .cart-item-details {
    max-width: calc(100% - 4.4375rem);
    padding-right: 1.5rem;
  }

  .cart-item-vendor,
  .cart-item-product-title,
  .cart-item-variant-title,
  .cart-item-price {
    display: block;
  }

  .cart-item-vendor,
  .cart-item-variant-title {
    font-size: 0.75rem;
    opacity: 0.5;
  }

  .cart-item-product-title {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem;
  }

  .cart-item-price {
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--color-text);
  }

  .cart-item-mini .cart-item-price {
    font-size: 0.75rem;
  }

  .cart-item-total,
  .cart-item-price,
  .cart-total-row-value {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 100;
  }

  .cart-item-total {
    position: relative;
  }

  .cart-item-total .money {
    display: block;
    opacity: 1;
    transition: opacity 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .cart-item-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 3rem;
    min-height: inherit;
    padding: 0.25rem;
    margin-left: 0.25rem;
    color: var(--color-text);
    background-color: rgba(232, 232, 225, 0.3);
    border: none;
    cursor: pointer;
  }

  .cart-item-remove:hover {
    background-color: rgba(232, 232, 225, 0.5);
  }

  .cart-item-remove:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .cart-item-remove svg {
    width: 16px;
    height: 16px;
    pointer-events: none;
  }

  /* Quantity control (from theme-compiled.css ~4791-4918) */
  .form-element-quantity {
    display: flex;
    width: 5.25rem;
    min-width: 5.25rem;
    min-height: 3rem;
    padding: 0;
  }

  .form-element-quantity.form-element-secondary {
    padding: 0;
  }

  .form-element-quantity .form-element-quantity-decrement,
  .form-element-quantity .form-element,
  .form-element-quantity .form-element-quantity-increment {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 100;
    display: block;
    flex-shrink: 0;
    padding: 0;
    color: inherit;
    text-transform: uppercase;
    background: transparent;
    border: 0;
  }

  .form-element-quantity .form-element-quantity-decrement,
  .form-element-quantity .form-element-quantity-increment {
    flex-shrink: 1;
    width: 1.75rem;
    height: 3rem;
    font-size: 1.125rem;
    cursor: pointer;
  }

  .form-element-quantity .form-element-quantity-decrement:disabled,
  .form-element-quantity .form-element-quantity-increment:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .form-element-quantity .form-element {
    width: 1.75rem;
    height: 3rem;
    text-align: center;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
  }

  .form-element-quantity .form-element::-webkit-inner-spin-button,
  .form-element-quantity .form-element::-webkit-outer-spin-button {
    display: none;
  }

  .form-element-quantity-icon {
    display: inline-block;
    width: 0.875rem;
    height: 0.875rem;
    vertical-align: middle;
  }

  .form-element-quantity-icon svg {
    pointer-events: none;
  }

  /* Cart checkout button */
  .cart-checkout-btn {
    display: block;
    width: 100%;
    padding: 0.875rem 2rem;
    background: var(--color-accent-secondary, #6f421b);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.2s;
  }

  .cart-checkout-btn:hover {
    background: var(--color-heading, #a06a3b);
    color: #fff;
  }

  /* Cart footer layout adjustments for mini cart */
  .cart-mini .cart-footer {
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid var(--color-border);
  }

  .cart-totals .cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cart-totals .cart-total-row-title {
    float: none;
  }

  .cart-totals .cart-total-row-value {
    float: none;
  }

  .cart-submit {
    margin-top: var(--space-sm);
  }

  /* ==========================================================================
     COMPONENTS - Footer
     .site-footer-wrapper, .site-footer, .site-footer-blocks, .site-footer-block
     Extracted from theme-compiled.css lines ~7554-7677, ~12260-12409
     ========================================================================== */

  .site-footer {
    border-top: 1px solid #f8f8f7;
  }

  .site-footer-wrapper {
    z-index: 500;
    padding-bottom: 3.75rem;
    overflow: hidden;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
  }

  @media screen and (min-width: 769px) {
    .site-footer-wrapper {
      padding-bottom: 0;
    }
  }

  .site-footer-item {
    position: relative;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  @media screen and (min-width: 769px) {
    .site-footer-item {
      padding-top: var(--space-lg);
      padding-bottom: var(--space-lg);
    }
  }

  @media screen and (min-width: 1025px) {
    .site-footer-item {
      padding-top: 2.5rem;
      padding-bottom: 2.5rem;
    }
  }

  .site-footer-item:not(:first-child) {
    border-top: 1px solid var(--color-border);
  }

  .site-footer-inner {
    font-size: 0;
  }

  .site-footer-item-bottom .site-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .site-footer-item-bottom .site-footer-left,
  .site-footer-item-bottom .site-footer-right {
    display: block;
    width: auto;
  }

  .site-footer-item-bottom .site-footer-right {
    margin-top: 0;
    margin-left: 0;
  }

  @media screen and (min-width: 1025px) {
    .site-footer-right,
    .site-footer-left {
      vertical-align: middle;
    }
    .site-footer-right:not(:only-child),
    .site-footer-left:not(:only-child) {
      display: inline-block;
      width: calc(50% - 1rem);
    }
  }

  .site-footer-right {
    margin-top: var(--space-sm);
  }

  @media screen and (min-width: 1025px) {
    .site-footer-right {
      margin-top: 0;
      margin-left: var(--space-lg);
    }
  }

  .site-footer-credits {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 0.875rem;
  }

  .site-footer-credits a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s;
  }

  .site-footer-credits a:hover {
    color: var(--color-accent-secondary);
  }

  /* --- Footer blocks --- */

  .site-footer-blocks {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: -1.25rem;
  }

  @media screen and (min-width: 769px) {
    .site-footer-blocks {
      margin-top: -2rem;
    }
  }

  .site-footer-block {
    display: inline-block;
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
    width: 100%;
    margin-top: 1.25rem;
    font-size: 1rem;
    vertical-align: top;
  }

  @media screen and (min-width: 769px) {
    .site-footer-block {
      width: calc(50% - 0.75rem);
      margin-top: var(--space-lg);
    }
    .site-footer-block:nth-child(2n) {
      margin-left: 1.5rem;
    }
    .site-footer-block:only-child {
      width: 100%;
      max-width: 31.25rem;
    }
  }

  @media screen and (min-width: 1025px) {
    .site-footer-block {
      width: calc(25% - 1.5rem);
    }
    .site-footer-block:not(:first-child) {
      margin-left: var(--space-lg);
    }
    .site-footer-block:only-child,
    .site-footer-blocks-2 .site-footer-block {
      width: calc(50% - 1rem);
    }
    .site-footer-blocks-3 .site-footer-block {
      width: calc(33.3333333333% - 1.35rem);
    }
  }

  .site-footer-block-title {
    margin-top: 1.25rem;
    margin-bottom: 0.625rem;
    font-size: 1.125rem;
  }

  .site-footer-block-title:first-child {
    margin-top: 0;
  }

  /* --- Footer menu list --- */

  .site-footer-social-list,
  .site-footer-block-menu-list {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;
  }

  .site-footer-social-list .menu-list-item:not(:first-child),
  .site-footer-block-menu-list .menu-list-item:not(:first-child) {
    margin-top: 0.75rem;
  }

  .site-footer-social-list .menu-list-link,
  .site-footer-block-menu-list .menu-list-link {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s;
  }

  .site-footer-social-list .menu-list-link:hover,
  .site-footer-block-menu-list .menu-list-link:hover {
    color: var(--color-accent-secondary);
  }

  .site-footer-block-rich-text a {
    text-decoration: underline;
  }

  /* --- Footer social icons --- */

  .menu-list-social-link {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .site-footer-social-text,
  .site-footer-social-icon {
    display: inline-block;
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
  }

  .site-footer-social-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: currentColor;
  }

  .site-footer-social-text {
    margin-left: var(--space-sm);
  }

  /* --- Payment icons --- */

  .payment-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
    margin-right: -10px;
    margin-left: -10px;
  }

  @media screen and (min-width: 376px) {
    .payment-icons {
      justify-content: flex-start;
      text-align: left;
    }
  }

  @media screen and (min-width: 1025px) {
    .payment-icons {
      justify-content: flex-end;
      margin-top: -20px;
    }
  }

  .payment-icons-item {
    display: inline-block;
    height: 1.5rem;
    margin-top: 20px;
    margin-right: 10px;
    margin-left: 10px;
  }

  .payment-icons-item svg {
    display: block;
    width: 51px;
    height: 32px;
    fill: currentColor;
  }

  /* --- Footer decorative pattern --- */

  .site-footer-credits-pattern,
  .site-footer-block-pattern {
    position: absolute;
    top: 50%;
    display: none;
    margin-top: -1.25rem;
    color: var(--color-accent-primary);
  }

  @media screen and (min-width: 376px) {
    .site-footer-credits-pattern,
    .site-footer-block-pattern {
      display: inline-block;
    }
  }

  .site-footer-block-pattern {
    right: -3.25rem;
    transition: right 400ms linear;
  }

  @media screen and (min-width: 769px) {
    .site-footer-block-pattern {
      right: -3rem;
    }
  }

  @media screen and (min-width: 1025px) {
    .site-footer-block-pattern {
      right: -2.75rem;
    }
  }

  @media screen and (min-width: 1401px) {
    .site-footer-block-pattern {
      right: 0;
    }
  }

  .site-footer-credits-pattern {
    left: -3.25rem;
    transition: left 400ms linear;
  }

  @media screen and (min-width: 769px) {
    .site-footer-credits-pattern {
      left: -3rem;
    }
  }

  @media screen and (min-width: 1025px) {
    .site-footer-credits-pattern {
      left: -2.75rem;
    }
  }

  @media screen and (min-width: 1401px) {
    .site-footer-credits-pattern {
      left: 0;
    }
  }

  /* ==========================================================================
     COMPONENTS - Homepage Sections
     Slideshow, List Collections, Featured Product, Video, Newsletter
     Phase 2: Homepage Content
     ========================================================================== */

  /* --- Section spacing (from theme-compiled.css ~5341) --- */

  .section-slideshow,
  .section-dynamic-product .product-regular,
  .newsletter-outer,
  .section-dynamic-list-collections,
  .video-block {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  @media screen and (min-width: 769px) {
    .section-slideshow,
    .section-dynamic-product .product-regular,
    .newsletter-outer,
    .section-dynamic-list-collections,
    .video-block {
      padding-top: 6rem;
      padding-bottom: 6rem;
    }
  }

  .section-slideshow:not(:last-child),
  .section-dynamic-product:not(:last-child),
  .section-dynamic-list-collections:not(:last-child) {
    border-bottom: 1px solid #f9f8f7;
  }

  /* --- Section headings (from theme-compiled.css ~5365) --- */

  .grid-description-heading,
  .newsletter-title,
  .video-block-heading {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 400;
    max-width: 43.75rem;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--color-heading);
  }

  @media screen and (min-width: 769px) {
    .grid-description-heading,
    .newsletter-title,
    .video-block-heading {
      margin-bottom: 2.5rem;
      font-size: 2.25rem;
    }
  }

  .grid-description-subheading {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 400;
    max-width: 43.75rem;
    margin: 0 auto 0.5rem;
    font-size: 0.75rem;
    color: var(--color-accent-secondary);
    text-transform: uppercase;
  }

  /* --- Shared button styles --- */

  .btn-secondary {
    position: relative;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 3rem;
    padding: 0.975rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0.3125rem;
    overflow: hidden;
    color: #ffffff;
    background-color: var(--color-accent-secondary);
    transition: opacity 400ms cubic-bezier(0.25, 0.1, 0.25, 1),
                background-color 400ms linear;
  }

  .btn-secondary:hover,
  .btn-secondary:focus {
    color: white;
    background-color: rgb(126, 75, 31);
  }

  /* --- Slideshow (customized from theme-compiled.css ~6580-6952) --- */

  .section-slideshow {
    overflow: hidden;
  }

  .section-slideshow:first-child {
    padding-top: 0;
  }

  .slideshow {
    position: relative;
    display: block;
    width: 100%;
    min-height: 9.375rem;
    overflow: hidden;
    outline: 0;
  }

  .slideshow-track {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
  }

  .slideshow-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    outline: 0;
  }

  .slideshow-slide-media {
    position: relative;
    width: 100%;
  }

  .slideshow-slide-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 17 / 9;
    object-fit: cover;
    object-position: 50% 50%;
  }

  .slideshow-slide-content {
    padding: 2rem 1rem 1.5rem;
  }

  .slideshow-slide-content.text-layout-full-width-left {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
  }

  @media screen and (min-width: 769px) {
    .slideshow-slide-content.text-layout-full-width-left {
      justify-content: center;
      padding: 2rem 3rem;
    }
  }

  .slideshow-slide-buttons {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  /* --- Slideshow navigation arrows --- */

  .slideshow-pagination-prev,
  .slideshow-pagination-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
  }

  .slideshow:hover .slideshow-pagination-prev,
  .slideshow:hover .slideshow-pagination-next {
    opacity: 1;
  }

  .slideshow-pagination-prev:hover,
  .slideshow-pagination-next:hover {
    background: rgba(255, 255, 255, 0.9);
  }

  .slideshow-pagination-prev {
    left: 0.75rem;
  }

  .slideshow-pagination-next {
    right: 0.75rem;
  }

  .slideshow-pagination-prev svg,
  .slideshow-pagination-next svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  /* --- Slideshow dot indicators --- */

  .slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0 0;
  }

  .slideshow-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    border: 1px solid var(--color-accent-secondary);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease;
  }

  .slideshow-dot.active {
    background: var(--color-accent-secondary);
  }

  .slideshow-dot:hover {
    background: var(--color-accent-primary);
  }

  /* --- List Collections / Svensk Design --- */

  .list-collections {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
  }

  @media screen and (min-width: 769px) {
    .list-collections {
      display: flex;
      align-items: center;
      gap: 2rem;
      padding: 0 1.5rem;
    }
  }

  @media screen and (min-width: 1025px) {
    .list-collections {
      padding: 0 var(--space-lg);
    }
  }

  .grid-item-description {
    text-align: center;
    margin-bottom: 2rem;
  }

  @media screen and (min-width: 769px) {
    .grid-item-description {
      flex: 1;
      margin-bottom: 0;
      text-align: left;
    }
  }

  .grid-description-subheading {
    max-width: none;
    text-align: inherit;
    text-transform: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: var(--font-weight-body);
    color: var(--color-text);
    line-height: 1.6;
  }

  .collection-item {
    text-align: center;
  }

  @media screen and (min-width: 769px) {
    .collection-item {
      flex: 0 0 40%;
      max-width: 400px;
    }
  }

  .collection-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .collection-item-link:hover {
    color: var(--color-accent-secondary);
  }

  .collection-item-image {
    position: relative;
    display: block;
    margin: 0;
    overflow: hidden;
    border-radius: 0.3125rem;
    background-color: #fdfcfb;
  }

  .collection-item-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: 50% 50%;
  }

  .collection-item-title {
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.125rem;
    color: var(--color-heading);
  }

  /* --- Featured Product --- */

  .product-regular {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
  }

  @media screen and (min-width: 769px) {
    .product-regular {
      padding: 0 1.5rem;
    }
  }

  @media screen and (min-width: 1025px) {
    .product-regular {
      padding: 0 var(--space-lg);
    }
  }

  .product-loading {
    text-align: center;
    padding: 2rem;
    color: var(--color-text);
    opacity: 0.6;
    font-style: italic;
  }

  /* product-detail layout moved to product page section below */

  .product-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--color-heading);
    margin-bottom: 0.75rem;
  }

  @media screen and (min-width: 769px) {
    .product-title {
      font-size: 2.25rem;
    }
  }

  .product-price {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 1rem;
  }

  .product-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .product-cta {
    position: relative;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 3rem;
    padding: 0.975rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0.3125rem;
    overflow: hidden;
    color: #fff;
    background-color: var(--color-accent-primary);
    transition: opacity 400ms cubic-bezier(0.25, 0.1, 0.25, 1),
                background-color 400ms linear;
  }

  .product-cta:hover,
  .product-cta:focus {
    color: white;
    background-color: rgb(234, 215, 191);
  }

  /* --- Video block (from theme-compiled.css ~5741, ~13754) --- */

  .video-block {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
  }

  @media screen and (min-width: 769px) {
    .video-block {
      padding: 0 1.5rem;
    }
  }

  @media screen and (min-width: 1025px) {
    .video-block {
      padding: 0 var(--space-lg);
    }
  }

  .video-block-inner {
    text-align: center;
  }

  .video-block-content {
    text-align: center;
  }

  .video-block-content.text-layout-top {
    margin-bottom: 1.5rem;
  }

  @media screen and (min-width: 769px) {
    .video-block-content.text-layout-top {
      margin-bottom: 2rem;
    }
  }

  .video-block-media {
    position: relative;
  }

  .video-block-edge {
    border-radius: 0.3125rem;
    overflow: hidden;
    position: relative;
    z-index: 10;
    height: 0;
  }

  .aspect-ratio-16-by-9 .video-block-edge {
    padding-bottom: 56.25%;
  }

  .video-block-edge video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* --- Newsletter (from theme-compiled.css ~6435-6554, ~10820-10899) --- */

  .newsletter-outer {
    overflow: hidden;
  }

  .newsletter-inner {
    position: relative;
    width: 43.75rem;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 0 var(--space-md);
  }

  .newsletter-border {
    overflow: hidden;
    color: var(--color-text);
    background-color: var(--color-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-radius: 0.3125rem;
  }

  .newsletter-content {
    position: relative;
    z-index: 30;
    padding: 1.25rem 1.5rem;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    background: var(--color-bg);
  }

  @media screen and (min-width: 769px) {
    .newsletter-content {
      padding-top: 2rem;
      padding-bottom: 2rem;
    }
  }

  @media screen and (min-width: 1025px) {
    .newsletter-content {
      padding-top: 3rem;
      padding-bottom: 3rem;
    }
  }

  .newsletter-title {
    margin-bottom: 0;
  }

  .newsletter-text {
    margin-top: 0.5rem;
  }

  @media screen and (min-width: 769px) {
    .newsletter-text {
      margin-top: 1.25rem;
    }
  }

  .newsletter-full {
    margin-top: 1.25rem;
  }

  @media screen and (min-width: 769px) {
    .newsletter-full {
      margin-top: 2rem;
    }
  }

  .form-element-submit,
  .form-element-submit.form-element-secondary {
    position: relative;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 3rem;
    padding: 0.975rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0.3125rem;
    overflow: hidden;
    color: #ffffff;
    background-color: var(--color-accent-secondary, #6f421b);
    border: none;
    cursor: pointer;
    transition: opacity 400ms cubic-bezier(0.25, 0.1, 0.25, 1),
                background-color 400ms linear;
  }

  .form-element-submit button {
    all: unset;
    font: inherit;
    color: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
    cursor: pointer;
    width: 100%;
    text-align: center;
  }

  .form-element-submit:hover,
  .form-element-submit:focus,
  .form-element-submit.form-element-secondary:hover,
  .form-element-submit.form-element-secondary:focus {
    color: white;
    background-color: rgb(126, 75, 31);
  }

  /* --- Background helper --- */

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

  /* ==========================================================================
     COMPONENTS - Content Pages
     .site-page, .page-masthead, .page-title, .page-content
     Image overlay, text blocks, testimonials, gallery, retailers, FAQ, contact
     Phase 2: Content Pages
     ========================================================================== */

  /* --- Page layout --- */

  .site-page {
    max-width: 100%;
  }

  .site-page .page-masthead {
    padding: 3rem var(--space-md) 1.5rem;
    text-align: center;
  }

  @media screen and (min-width: 769px) {
    .site-page .page-masthead {
      padding: 4rem 1.5rem 2rem;
    }
  }

  .site-page .page-title {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 400;
    font-size: 1.75rem;
    color: var(--color-heading);
    margin: 0;
  }

  @media screen and (min-width: 769px) {
    .site-page .page-title {
      font-size: 2.5rem;
    }
  }

  .site-page .page-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 3rem;
  }

  @media screen and (min-width: 769px) {
    .site-page .page-content {
      padding-bottom: 4rem;
    }
  }

  /* --- Image with text overlay (About Us hero) --- */

  .image-with-text-overlay {
    position: relative;
    width: 100%;
  }

  .image-overlay-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .image-overlay-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 3;
    object-fit: cover;
  }

  .image-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .image-overlay-content .page-title {
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  @media screen and (min-width: 769px) {
    .image-overlay-content .page-title {
      font-size: 3rem;
    }
  }

  /* --- Text block (About Us body) --- */

  .text-block {
    padding: 2.5rem var(--space-md);
  }

  @media screen and (min-width: 769px) {
    .text-block {
      padding: 4rem 1.5rem;
    }
  }

  .background-alternate {
    background-color: #faf6f1;
    color: var(--color-text);
  }

  .text-block-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .text-block-content h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--color-heading);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
  }

  .text-block-content h2:first-child {
    margin-top: 0;
  }

  @media screen and (min-width: 769px) {
    .text-block-content h2 {
      font-size: 1.5rem;
    }
  }

  .text-block-content p {
    font-family: var(--font-body);
    font-weight: var(--font-weight-body);
    line-height: 1.8;
    margin-bottom: var(--space-md);
  }

  .text-block-content p:last-child {
    margin-bottom: 0;
  }

  /* --- Testimonials --- */

  .testimonials {
    padding: 3rem var(--space-md);
    text-align: center;
  }

  @media screen and (min-width: 769px) {
    .testimonials {
      padding: 4rem 1.5rem;
    }
  }

  .testimonials-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--color-heading);
    margin-bottom: 2rem;
  }

  @media screen and (min-width: 769px) {
    .testimonials-title {
      font-size: 2.25rem;
      margin-bottom: 2.5rem;
    }
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
  }

  @media screen and (min-width: 769px) {
    .testimonials-grid {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
  }

  .testimonial-item {
    padding: 1.5rem;
    background-color: #faf6f1;
    border-radius: 0.3125rem;
  }

  .testimonial-caption {
    margin: 0;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-text);
  }

  .testimonial-caption p {
    margin: 0;
  }

  .testimonial-name {
    display: block;
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--color-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* --- Gallery (Alternate / Stacked Layout) --- */

  .gallery-alternate {
    font-size: 0;
    line-height: 0;
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }

  @media screen and (min-width: 769px) {
    .gallery-alternate {
      margin-left: calc(-1 * var(--space-md));
      margin-right: calc(-1 * var(--space-md));
    }
  }

  .gallery-row {
    font-size: 0;
    line-height: 0;
    clear: both;
  }

  .gallery-row-half {
    font-size: 0;
    line-height: 0;
  }

  .gallery-row-half img {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    float: left;
  }

  .gallery-row-half::after {
    content: "";
    display: table;
    clear: both;
  }

  .gallery-row img {
    display: block;
    width: 100%;
  }

  .gallery-alternate img {
    height: auto;
    border-radius: 0;
    margin: 0;
    padding: 0;
  }

  /* --- Gallery Simple (stacked full-width layout) --- */

  .gallery-simple {
    font-size: 0;
    line-height: 0;
  }

  .gallery-simple img {
    display: block;
    width: 100%;
    height: auto;
  }

  .gallery-row-split {
    font-size: 0;
    line-height: 0;
  }

  .gallery-row-split img {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    height: auto;
  }

  /* --- Gallery Grid (6-image layout) --- */

  .gallery {
    padding: 0 var(--space-md) 3rem;
  }

  @media screen and (min-width: 769px) {
    .gallery {
      padding: 0 1.5rem 4rem;
    }
  }

  .gallery-grid-6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  @media screen and (min-width: 769px) {
    .gallery-grid-6 {
      grid-template-columns: 60% 1fr;
      grid-template-rows: auto auto;
      gap: 0.5rem;
    }

    .gallery-grid-column-wide {
      grid-column: 1 / 2;
    }

    .gallery-grid-column-narrow {
      grid-column: 2 / 3;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    /* First wide column in first row */
    .gallery-grid-6 > .gallery-grid-column-wide:first-child {
      grid-row: 1 / 2;
    }

    /* First narrow column */
    .gallery-grid-6 > .gallery-grid-column-narrow:nth-child(2) {
      grid-row: 1 / 2;
    }

    /* Second narrow column and second wide column in second row */
    .gallery-grid-6 > .gallery-grid-column-narrow:nth-child(3) {
      grid-column: 1 / 2;
      grid-row: 2 / 3;
      flex-direction: row;
    }

    .gallery-grid-6 > .gallery-grid-column-narrow:nth-child(3) .gallery-image {
      flex: 1;
    }

    .gallery-grid-6 > .gallery-grid-column-wide:nth-child(4) {
      grid-column: 2 / 3;
      grid-row: 2 / 3;
    }
  }

  .gallery-image {
    overflow: hidden;
  }

  .gallery-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* --- Testimonials heading (Shopify pattern) --- */

  .testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .testimonials-heading {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--color-heading);
  }

  @media screen and (min-width: 769px) {
    .testimonials-heading {
      font-size: 2.25rem;
    }
  }

  /* --- FAQ Accordion --- */

  .faq-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 2rem;
  }

  .faq-item:not(:first-child) {
    margin-top: 1.25rem;
  }

  @media screen and (min-width: 769px) {
    .faq-item:not(:first-child) {
      margin-top: 2rem;
    }
  }

  @media screen and (min-width: 1025px) {
    .faq-item:not(:first-child) {
      margin-top: 2.5rem;
    }
  }

  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.0625rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.5;
  }

  @media screen and (min-width: 769px) {
    .faq-question {
      font-size: 1.5rem;
    }
  }

  .faq-button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    min-width: 2.25rem;
    margin-left: 1rem;
    padding: 0.5rem;
    border-radius: 0.3125rem;
    background-color: var(--color-accent-primary);
    color: #fff;
    transition: background-color 0.4s linear;
  }

  .faq-button:hover {
    background-color: #ead7bf;
  }

  .faq-button svg {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    fill: currentColor;
  }

  .faq-icon-chevron {
    transform: rotate(90deg);
  }

  .faq-icon-minus {
    display: none;
  }

  .faq-item.active .faq-icon-chevron {
    display: none;
  }

  .faq-item.active .faq-icon-minus {
    display: block;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), padding 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    padding: 0;
  }

  .faq-item.active .faq-answer {
    max-height: 1000px;
    padding-top: 0.75rem;
  }

  @media screen and (min-width: 769px) {
    .faq-item.active .faq-answer {
      padding-top: 1rem;
    }
  }

  @media screen and (min-width: 1025px) {
    .faq-item.active .faq-answer {
      padding-top: 1.25rem;
    }
  }

  .faq-answer p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 0.5rem;
  }

  .faq-answer p:last-child {
    margin-bottom: 0;
  }

  /* --- Retailers (Card Grid) --- */

  .retailers-country {
    margin-bottom: 2.5rem;
  }

  .retailers-country:last-child {
    margin-bottom: 0;
  }

  /* Country banner header */
  .retailers-country-banner {
    background: var(--color-accent-primary, #e9d5bc);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
  }

  .retailers-country-banner h3 {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-weight: 400;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
  }

  .retailers-count {
    background: var(--color-accent-secondary, #6f421b);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-family: var(--font-body, 'Source Sans 3', sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
  }

  /* Responsive grid */
  .retailers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media screen and (min-width: 640px) {
    .retailers-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media screen and (min-width: 1024px) {
    .retailers-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* Retailer card */
  .retailer-card {
    position: relative;
    background: #fff;
    border: 1px solid #efe6db;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .retailer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }

  /* City badge (top-right corner) */
  .retailer-city-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--color-accent-primary, #e9d5bc);
    color: var(--color-accent-secondary, #6f421b);
    padding: 0.25rem 0.6rem;
    border-radius: 8px;
    font-family: var(--font-body, 'Source Sans 3', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
  }

  /* Fixed-height logo area — centers logos and aligns names across rows */
  .retailer-card img {
    display: block;
    max-width: 200px;
    max-height: 100px;
    height: 100px;
    width: auto;
    object-fit: contain;
    margin: auto 0;
  }

  /* Retailer name — sits right after fixed 100px logo, same position in all cards */
  .retailer-name {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--color-heading, #a06a3b);
    margin: 0;
    padding-top: 1rem;
  }

  /* City label below name */
  .retailer-city {
    font-family: var(--font-body, 'Source Sans Pro', sans-serif);
    font-style: normal;
    font-weight: 300;
    line-height: 1.6;
    font-size: 1rem;
    color: #666;
    margin-top: 0.25rem;
  }

  /* --- Contact Page --- */

  .contact-cta {
    margin-top: 2rem;
    text-align: center;
  }

  .contact-intro {
    text-align: center;
    margin-bottom: 2rem;
  }

  .contact-intro h6 {
    font-family: var(--font-body, 'Source Sans 3', sans-serif);
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.6;
  }

  .contact-form-container {
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .form-element-wrapper {
    display: flex;
    flex-direction: column;
  }

  .form-element-label {
    font-family: var(--font-body, 'Source Sans 3', sans-serif);
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--color-text);
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .form-element.input {
    font-family: var(--font-body, 'Source Sans 3', sans-serif);
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.3125rem;
    padding: 0.75rem 1rem;
    line-height: 1.4;
    transition: border-color 0.2s;
  }

  .form-element.input:focus {
    outline: none;
    border-color: var(--color-accent-secondary, #6f421b);
  }

  textarea.form-element.input {
    resize: vertical;
    min-height: 120px;
  }

  .site-page .page-content {
    position: relative;
  }

  /* --- Stars / embellishment pattern --- */

  .page-content-pattern {
    display: flex;
    justify-content: center;
    padding: 1.5rem 0 2rem;
  }

  .embellishment-pattern {
    display: inline-block;
    max-width: 100%;
    color: var(--color-accent-primary, #e9d5bc);
  }

  .embellishment-pattern-large {
    width: 3.75rem;
    height: 2.5rem;
  }

  /* --- FAQ accordion --- */

  .faq-triggers {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 3rem;
  }

  .faq-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    cursor: pointer;
    user-select: none;
  }

  .faq-heading:hover {
    color: var(--color-accent-secondary);
  }

  .faq-title {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    color: var(--color-text);
    margin: 0;
  }

  @media screen and (min-width: 769px) {
    .faq-title {
      font-size: 1.125rem;
    }
  }

  .faq-heading:hover .faq-title {
    color: var(--color-accent-secondary);
  }

  .faq-button {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-heading);
    margin-left: 1rem;
    transition: transform 0.3s ease;
    line-height: 1;
  }

  .faq-heading.active .faq-button {
    transform: rotate(45deg);
  }

  .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .faq-content.active {
    max-height: 500px;
  }

  .faq-content .rte {
    padding: 1rem 0 1.5rem;
  }

  .faq-content .rte p {
    line-height: 1.7;
  }

  /* ==========================================================================
     COMPONENTS - Collection page (from theme-compiled.css)
     Breadcrumbs, collection header, product grid, product cards
     ========================================================================== */

  /* --- Breadcrumbs --- */

  .breadcrumbs {
    font-size: 0;
  }

  .breadcrumbs a,
  .breadcrumbs span {
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    vertical-align: middle;
  }

  .breadcrumbs span {
    opacity: 0.5;
  }

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

  .breadcrumbs a:hover {
    text-decoration: underline;
  }

  .breadcrumbs-delimiter {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: 0.25rem;
    margin-left: 0.25rem;
  }

  .breadcrumbs-delimiter svg {
    opacity: 0.5;
    width: 100%;
    height: 100%;
  }

  /* --- Collection header --- */

  .collection-header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 2rem;
    text-align: center;
  }

  @media (min-width: 769px) {
    .collection-header {
      padding-right: 0;
      padding-left: 0;
      margin-top: 2.5rem;
    }
  }

  .collection-header-content {
    flex-basis: auto;
    width: 100%;
  }

  .collection-header-content:first-child {
    max-width: 31.25rem;
    margin: 0 auto;
  }

  @media (max-width: 768px) {
    .collection-header-breadcrumbs {
      display: none;
    }
  }

  .collection-header-title {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1.3;
    font-family: var(--font-heading);
    color: var(--color-heading);
  }

  @media (min-width: 769px) {
    .collection-header-title {
      margin-top: 1.25rem;
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1025px) {
    .collection-header-title {
      margin-top: 1.5rem;
      font-size: 3rem;
    }
  }

  /* --- Collection content section --- */

  .collection-content {
    max-width: 1280px;
    margin-top: 3rem;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media screen and (min-width: 769px) {
    .collection-content {
      margin-top: 4.25rem;
      margin-bottom: 4.25rem;
      padding-right: 1.5rem;
      padding-left: 1.5rem;
    }
  }

  @media screen and (min-width: 1025px) {
    .collection-content {
      margin-top: 7rem;
      margin-bottom: 7rem;
      padding-right: 2rem;
      padding-left: 2rem;
    }
  }

  /* --- Product grid layout --- */

  .productgrid-standard {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }

  .productgrid-standard .product-item {
    width: calc(50% - 2rem);
    margin-right: 1rem;
    margin-bottom: 4.25rem;
    margin-left: 1rem;
  }

  @media (max-width: 768px) {
    .productgrid-standard .product-item {
      width: calc(50% - 1.5rem);
    }

    .productgrid-standard .product-item:nth-child(2n) {
      margin-left: 0.5rem;
    }

    .productgrid-standard .product-item:nth-child(2n+1) {
      margin-right: 0.5rem;
    }
  }

  .productgrid-standard-products-row-2 .product-item {
    width: 100%;
  }

  @media (max-width: 768px) {
    .productgrid-standard-products-row-2 .product-item:nth-child(2n) {
      margin-left: 1rem;
    }

    .productgrid-standard-products-row-2 .product-item:nth-child(2n+1) {
      margin-right: 1rem;
    }
  }

  @media (min-width: 769px) {
    .productgrid-standard-products-row-2 .product-item {
      width: calc(50% - 2rem);
    }
  }

  /* --- Product item styles --- */

  .product-item {
    position: relative;
  }

  .product-item-image {
    overflow: hidden;
    border-radius: 0.3125rem;
    position: relative;
    display: block;
    width: 100%;
    max-width: 608px;
    max-height: 608px;
    margin: 0;
    aspect-ratio: 1;
  }

  .product-item-image-link {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
  }

  .product-item-image-img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0.3125rem;
    object-fit: cover;
  }

  /* Sold out badge on collection product cards */
  .sold-out-badge {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
  }

  .product-item-info {
    margin-top: 1.25rem;
    color: var(--color-heading);
  }

  @media (min-width: 769px) {
    .product-item-info {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
    }
  }

  .product-item-title {
    display: flex;
    font-family: var(--font-heading);
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1.1;
  }

  .product-item-title a {
    color: inherit;
    text-decoration: none;
  }

  @media (max-width: 768px) {
    .productgrid .product-item-title {
      justify-content: center;
      text-align: center;
    }
  }

  @media (min-width: 769px) {
    .productgrid .product-item-title {
      flex-basis: auto;
      flex-grow: 0;
      flex-shrink: 1;
      justify-content: flex-start;
      width: 60%;
      padding-right: 0.75rem;
      font-size: 1.125rem;
      text-align: left;
    }
  }

  .productgrid-standard .product-item-title {
    width: 100%;
  }

  /* --- Product price --- */

  .product-price {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    vertical-align: middle;
  }

  .price-main {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--color-accent-secondary);
  }

  .product-item-price {
    display: flex;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.1;
  }

  @media (max-width: 768px) {
    .productgrid .product-item-price {
      justify-content: center;
      text-align: center;
    }
  }

  @media (min-width: 769px) {
    .productgrid .product-item-price {
      flex-basis: auto;
      flex-grow: 0;
      flex-shrink: 1;
      justify-content: flex-end;
      width: 40%;
      padding-left: 0.75rem;
      margin-top: 0;
      font-size: 1.125rem;
      text-align: right;
    }
  }

  .productgrid-standard .product-item-price {
    width: 100%;
  }

  /* --- Product page (single product detail) --- */

  .product-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
  }

  /* Product detail: two-column on desktop, stacked on mobile */
  .product-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media screen and (min-width: 769px) {
    .product-detail {
      flex-direction: row;
      align-items: flex-start;
      gap: 3rem;
    }
  }

  /* Gallery: stacked images */
  .product-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-images-image-figure {
    margin: 0;
  }

  .product-images-image-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.3125rem;
  }

  /* Product info column */
  .product-info.product-main-content {
    flex: 1;
    position: sticky;
    top: 2rem;
  }

  @media screen and (min-width: 769px) {
    .product-info.product-main-content {
      text-align: left;
      max-width: 500px;
    }
  }

  /* Breadcrumbs inside product info */
  .product-breadcrumbs {
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--color-text);
  }

  .product-breadcrumbs a {
    color: var(--color-text);
    text-decoration: none;
  }

  .product-breadcrumbs a:hover {
    text-decoration: underline;
  }

  .breadcrumbs-delimiter {
    margin: 0 0.25rem;
    opacity: 0.5;
  }

  /* Vendor name */
  .product-vendor {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.5rem;
  }

  /* Price in product detail */
  .product-main-price {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 1rem;
  }

  /* Product form (quantity + ATC) */
  .product-form {
    margin-top: 1.5rem;
  }

  /* Quantity picker */
  .product-quantity {
    margin-bottom: 1rem;
  }

  .product-quantity-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
    margin-bottom: 0.5rem;
  }

  .product-quantity-controls {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
  }

  .qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: transparent;
    font-size: 1.125rem;
    color: var(--color-text);
    cursor: pointer;
    transition: background-color 0.15s;
  }

  .qty-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .qty-input {
    width: 3rem;
    height: 2.5rem;
    text-align: center;
    border: none;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-text);
    -moz-appearance: textfield;
    appearance: textfield;
  }

  .qty-input::-webkit-outer-spin-button,
  .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  /* Mobile product header: visible below 769px only */
  .product-header-mobile {
    display: block;
    text-align: center;
    order: -1;
  }

  @media screen and (min-width: 769px) {
    .product-header-mobile {
      display: none;
    }
  }

  /* On mobile, hide vendor/title/price inside product-info (shown in mobile header instead) */
  @media screen and (max-width: 768px) {
    .product-main-content > .product-vendor,
    .product-main-content > .product-title,
    .product-main-content > .product-main-price,
    .product-main-content > .product-breadcrumbs {
      display: none;
    }

    .product-info.product-main-content {
      text-align: center;
    }
  }

  /* Add to cart button on product page */
  .product-atc-btn {
    display: inline-block;
    background: var(--color-accent-secondary, #6f421b);
    color: #fff;
    border: none;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: background-color 0.2s;
    width: 100%;
    text-align: center;
  }

  .product-atc-btn:hover {
    background: var(--color-heading, #a06a3b);
  }

  .product-atc-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .product-atc-btn--sold-out {
    background: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 1;
  }

  .product-atc-btn--sold-out:hover {
    background: #cccccc;
  }

  /* --- Loading / error state --- */

  .productgrid-loading {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--color-heading);
    font-family: var(--font-body);
    font-size: 1.125rem;
    width: 100%;
  }

  /* =========================================================================
     CHECKOUT PAGE
     Shopify-style full-viewport split layout with accordion steps
     ========================================================================= */

  /* --- Body override for checkout (no site header padding) --- */

  .checkout-body {
    padding-top: 0 !important;
  }

  /* --- Full-viewport split layout --- */

  .checkout-page {
    display: flex;
    min-height: 100vh;
  }

  .checkout-left {
    flex: 1 1 58%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .checkout-left-inner {
    max-width: 620px;
    width: 100%;
    padding: 2rem 4rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .checkout-right {
    flex: 0 0 42%;
    background: #fafafa;
    border-left: 1px solid #e1e1e1;
  }

  .checkout-right-inner {
    max-width: 420px;
    width: 100%;
    padding: 2rem 2rem 2rem 4rem;
    position: sticky;
    top: 0;
    max-height: 100vh;
    overflow-y: auto;
  }

  /* --- Checkout Header --- */

  .checkout-header {
    padding: 1.5rem 0 1rem;
  }

  .checkout-logo {
    display: inline-block;
  }

  .checkout-logo img {
    display: block;
    max-width: 150px;
    max-height: 150px;
  }

  /* --- Checkout Breadcrumb --- */

  .checkout-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }

  .checkout-breadcrumb-item {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #737373;
    text-decoration: none;
    transition: color 0.15s;
  }

  .checkout-breadcrumb-link {
    color: var(--color-link);
    text-decoration: none;
  }

  .checkout-breadcrumb-link:hover {
    color: var(--color-accent-secondary);
  }

  .checkout-breadcrumb-item--active {
    color: var(--color-text);
    font-weight: 600;
  }

  .checkout-breadcrumb-sep {
    color: #b3b3b3;
    display: flex;
    align-items: center;
  }

  .checkout-breadcrumb-sep svg {
    display: block;
  }

  /* --- Checkout Footer (policy links) --- */

  .checkout-footer {
    border-top: 1px solid #e5e5e5;
    padding-top: 1rem;
    margin-top: auto;
    padding-bottom: 1.5rem;
    font-size: 0.75rem;
    color: #737373;
    font-family: var(--font-body);
  }

  .checkout-footer a {
    color: #737373;
    text-decoration: none;
    transition: color 0.15s;
  }

  .checkout-footer a:hover {
    color: var(--color-text);
  }

  .checkout-footer-sep {
    margin: 0 0.5rem;
    color: #b3b3b3;
  }

  /* --- Form column --- */

  .checkout-form-column {
    min-width: 0;
    flex: 1;
  }

  /* --- Order summary column (inside right panel) --- */

  .checkout-summary-column {
    /* No border/radius — lives inside the gray right panel */
  }

  /* --- Checkout Steps --- */

  .checkout-step {
    border-bottom: 1px solid #e5e5e5;
    padding: 1.5rem 0;
  }

  .checkout-step:first-child {
    padding-top: 0;
  }

  .checkout-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .checkout-step-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-heading);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .checkout-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--color-accent-secondary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  .checkout-step--completed .checkout-step-number {
    background: var(--color-heading);
  }

  .checkout-step--pending .checkout-step-title {
    opacity: 0.5;
  }

  .checkout-step--pending .checkout-step-number {
    background: #ccc;
  }

  .checkout-step-edit {
    background: none;
    border: none;
    color: var(--color-link);
    font-size: 0.875rem;
    font-family: var(--font-body);
    cursor: pointer;
    padding: 0.25rem 0;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .checkout-step-edit:hover {
    color: var(--color-accent-secondary);
  }

  .checkout-step-summary {
    font-size: 0.9rem;
    color: var(--color-text);
    padding: 0.5rem 0 0;
    line-height: 1.5;
  }

  .checkout-step-content {
    padding-top: 1rem;
  }

  /* --- Checkout Button --- */

  .checkout-step-btn {
    display: block;
    width: 100%;
    background: var(--color-accent-secondary);
    color: #fff;
    padding: 0.9rem;
    border: none;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease;
    margin-top: 0.5rem;
  }

  .checkout-step-btn:hover {
    background: var(--color-heading);
  }

  .checkout-step-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .checkout-continue-btn {
    display: block;
    width: 100%;
    background: var(--color-accent-secondary);
    color: #fff;
    padding: 0.9rem;
    border: none;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s ease;
  }

  .checkout-continue-btn:hover {
    background: var(--color-heading);
  }

  .checkout-continue-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  /* --- Checkout Form Fields --- */

  .checkout-field {
    margin-bottom: 1rem;
  }

  .checkout-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--color-text);
    font-family: var(--font-body);
  }

  .checkout-field input {
    width: 100%;
    padding: 0.9rem 0.85rem;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--color-text);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .checkout-field input:focus {
    border-color: var(--color-accent-secondary);
    outline: none;
    box-shadow: 0 0 0 1px var(--color-accent-secondary);
  }

  .checkout-field input::placeholder {
    color: #aaa;
  }

  .checkout-field-error {
    color: #c00;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    font-family: var(--font-body);
  }

  .checkout-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* --- Checkout Order Summary --- */

  .checkout-summary-content {
    padding: 0;
  }

  .checkout-summary-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e5e5;
  }

  .checkout-summary-items {
    /* Container for line items */
  }

  .checkout-summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
  }

  .checkout-summary-item-image {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: visible;
    border: 1px solid #e5e5e5;
    flex-shrink: 0;
    background: #fff;
  }

  .checkout-summary-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .checkout-summary-item-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    background: rgba(114, 114, 114, 0.9);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
  }

  .checkout-summary-item-details {
    flex: 1;
    min-width: 0;
  }

  .checkout-summary-item-title {
    font-size: 0.875rem;
    font-weight: 600;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--color-text);
  }

  .checkout-summary-item-variant {
    font-size: 0.8rem;
    color: #666;
    display: block;
  }

  .checkout-summary-item-price {
    font-size: 0.875rem;
    white-space: nowrap;
    color: var(--color-text);
  }

  .checkout-summary-totals {
    border-top: 1px solid #e5e5e5;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }

  .checkout-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.375rem 0;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--color-text);
  }

  .checkout-summary-row--total {
    font-weight: 700;
    font-size: 1.1rem;
    border-top: 1px solid #e5e5e5;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
  }

  .checkout-summary-row--discount span:last-child {
    color: #2a7d2a;
  }

  /* --- Checkout Discount Code Form --- */

  .checkout-discount-form {
    padding: 0.75rem 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin: 0.5rem 0;
  }

  .checkout-discount-input-row {
    display: flex;
    gap: 0.5rem;
  }

  .checkout-discount-input {
    flex: 1;
    padding: 0.65rem 0.75rem;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    font-size: 0.9rem;
    font-family: var(--font-body);
  }

  .checkout-discount-input:focus {
    outline: none;
    border-color: #6f421b;
    box-shadow: 0 0 0 1px #6f421b;
  }

  .checkout-discount-btn {
    padding: 0.65rem 1.2rem;
    background: #6f421b;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
  }

  .checkout-discount-btn:hover {
    background: #5a3516;
  }

  .checkout-discount-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .checkout-discount-error {
    color: #c00;
    font-size: 0.8rem;
    margin-top: 0.4rem;
  }

  .checkout-discount-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.5rem;
  }

  .checkout-discount-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.6rem;
    background: #e9d5bc;
    color: #6f421b;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
  }

  .checkout-discount-remove {
    background: none;
    border: none;
    color: #6f421b;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0 0.1rem;
  }

  .checkout-summary-loading {
    padding: 2rem 0;
    color: #999;
    font-size: 0.9rem;
    font-family: var(--font-body);
  }

  /* --- Checkout Empty State --- */

  .checkout-empty {
    text-align: center;
    padding: 4rem 2rem;
  }

  .checkout-empty h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-heading);
    margin-bottom: 0.75rem;
  }

  .checkout-empty p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
  }

  .checkout-empty .checkout-step-btn {
    display: inline-block;
    width: auto;
    padding: 0.875rem 2rem;
  }

  /* --- Checkout Loading --- */

  .checkout-loading {
    color: #999;
    font-size: 0.9rem;
    font-family: var(--font-body);
  }

  .checkout-error {
    color: #c00;
    font-size: 0.875rem;
    font-family: var(--font-body);
    margin-bottom: 0.5rem;
  }

  /* --- Checkout Form Validation Error State --- */

  .checkout-field--error {
    border-color: #c00 !important;
  }

  /* --- Checkout Shipping Options --- */

  .checkout-shipping-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: border-color 0.15s;
  }

  .checkout-shipping-option:hover {
    border-color: var(--color-accent-secondary);
  }

  .checkout-shipping-option input[type="radio"] {
    accent-color: var(--color-accent-secondary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .checkout-shipping-option-details {
    flex: 1;
  }

  .checkout-shipping-option-name {
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
  }

  .checkout-shipping-option-desc {
    font-size: 0.8rem;
    color: #666;
    display: block;
  }

  .checkout-shipping-option-price {
    font-weight: 600;
    white-space: nowrap;
  }

  /* Selected shipping option state */
  .checkout-shipping-option:has(input:checked) {
    border-color: var(--color-accent-secondary);
    background: rgba(111, 66, 27, 0.03);
  }

  .checkout-shipping-btn {
    margin-top: 1rem;
  }

  .checkout-shipping-error {
    margin-top: 0.5rem;
  }

  /* --- Checkout Mobile Order Summary Toggle --- */

  .checkout-summary-mobile {
    display: none;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    margin-bottom: 1.5rem;
  }

  .checkout-summary-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--color-link);
  }

  .checkout-summary-toggle-price {
    font-weight: 700;
    color: var(--color-text);
    margin-left: auto;
    margin-right: 0.5rem;
  }

  .checkout-summary-toggle-arrow {
    transition: transform 0.2s;
    flex-shrink: 0;
  }

  .checkout-summary-toggle[aria-expanded="true"] .checkout-summary-toggle-arrow {
    transform: rotate(180deg);
  }

  .checkout-summary-mobile-content {
    padding: 0 1.25rem 1rem;
  }

  /* --- Step 4: Payment --- */

  #stripe-payment-element {
    min-height: 100px;
    margin-bottom: 1rem;
  }

  #payment-error {
    color: #c00;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #fff5f5;
    border: 1px solid #fecaca;
    border-radius: 5px;
  }

  #pay-btn {
    margin-top: 0.5rem;
  }

  /* Loading state for payment step */
  #stripe-payment-element .checkout-loading {
    text-align: center;
    color: #666;
    padding: 2rem 0;
  }

  /* --- Checkout Responsive --- */

  @media (max-width: 768px) {
    .checkout-page {
      flex-direction: column;
    }

    .checkout-left {
      flex: 1 1 auto;
      align-items: stretch;
    }

    .checkout-left-inner {
      max-width: none;
      padding: 1.5rem 1rem;
      min-height: auto;
    }

    /* Hide desktop right column on mobile */
    .checkout-right {
      display: none;
    }

    /* Show mobile summary toggle on mobile */
    .checkout-summary-mobile {
      display: block;
    }

    .checkout-field-row {
      grid-template-columns: 1fr;
    }

    .checkout-breadcrumb {
      gap: 0.4rem;
    }
  }

  /* =========================================================================
     ORDER CONFIRMATION PAGE
     Standalone page shown after successful payment
     ========================================================================= */

  .order-confirm-body {
    margin: 0;
    font-family: 'Source Sans 3', sans-serif;
    color: #27211c;
    background: #ffffff;
  }

  .order-confirm-page {
    max-width: 640px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .order-confirm-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
  }

  .order-confirm-logo img {
    max-height: 50px;
  }

  .order-confirm-main {
    flex: 1;
  }

  .order-confirm-loading {
    text-align: center;
    color: #666;
    padding: 3rem 0;
  }

  /* Success header */
  .order-confirm-success {
    text-align: center;
    margin-bottom: 2rem;
  }

  .order-confirm-checkmark {
    margin-bottom: 1rem;
  }

  .order-confirm-success h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #a06a3b;
    margin: 0 0 0.5rem;
  }

  .order-confirm-ordernr {
    font-size: 1.1rem;
    font-weight: 600;
    color: #27211c;
    margin: 0 0 0.25rem;
  }

  .order-confirm-email {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
  }

  /* Details section */
  .order-confirm-details {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .order-confirm-details h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #27211c;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  /* Order items */
  .order-confirm-items {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
  }

  .order-confirm-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .order-confirm-item:last-child {
    margin-bottom: 0;
  }

  .order-confirm-item-image {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
  }

  .order-confirm-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .order-confirm-item-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #6f421b;
    color: #fff;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
  }

  .order-confirm-item-details {
    flex: 1;
    min-width: 0;
  }

  .order-confirm-item-title {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .order-confirm-item-variant {
    display: block;
    font-size: 0.8rem;
    color: #666;
  }

  .order-confirm-item-price {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  /* Shipping address */
  .order-confirm-address {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
  }

  .order-confirm-address p {
    margin: 0 0 0.15rem;
    font-size: 0.9rem;
    color: #444;
  }

  /* Totals */
  .order-confirm-totals {
    margin-top: 0;
  }

  .order-confirm-row {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    font-size: 0.9rem;
  }

  .order-confirm-row--total {
    border-top: 1px solid #e5e5e5;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    font-weight: 700;
    font-size: 1.05rem;
  }

  /* CTA */
  .order-confirm-cta {
    text-align: center;
    margin-top: 1rem;
  }

  .order-confirm-btn {
    display: inline-block;
    background: #6f421b;
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s ease;
  }

  .order-confirm-btn:hover {
    background: #a06a3b;
  }

  /* Error state */
  .order-confirm-error {
    text-align: center;
    padding: 3rem 0;
  }

  .order-confirm-error h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #c00;
    margin-bottom: 0.5rem;
  }

  .order-confirm-error p {
    color: #666;
    margin-bottom: 1.5rem;
  }

  /* Footer */
  .order-confirm-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
    margin-top: auto;
  }

  .order-confirm-footer a {
    color: #794920;
    text-decoration: none;
    font-size: 0.9rem;
  }

  .order-confirm-footer a:hover {
    text-decoration: underline;
  }

  /* Responsive */
  @media (max-width: 480px) {
    .order-confirm-page {
      padding: 1.25rem 1rem;
    }

    .order-confirm-details {
      padding: 1rem;
    }

    .order-confirm-success h1 {
      font-size: 1.25rem;
    }
  }

} /* end @layer components */

/* ==========================================================================
   UTILITIES
   Screen-reader-only, rich text, clearfix
   ========================================================================== */

@layer utilities {
  .visually-hidden,
  .show-for-sr {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  .rte a {
    color: var(--color-link);
    text-decoration: none;
    transition: color 0.2s;
  }

  .rte a:hover {
    color: var(--color-accent-secondary);
  }

  .rte p {
    margin-top: 0;
    margin-bottom: var(--space-md);
  }

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

  .rte ul,
  .rte ol {
    padding-left: 1.5rem;
    margin-bottom: var(--space-md);
    list-style: revert;
  }

  .rte img {
    max-width: 100%;
    height: auto;
  }
}

/* ==========================================================================
   OVERRIDES - Outside @layer for highest cascade priority
   Mobile menu slide-in, cart drawer z-index, tablet hamburger
   ========================================================================== */

/* --- Body padding for fixed header --- */
body {
  padding-top: 5rem;
}

@media screen and (max-width: 1024px) {
  body {
    padding-top: 3.75rem;
  }
}

/* --- Cart drawer z-index fix (header wrapper is z-index: 3000) --- */
.cart-drawer-overlay {
  z-index: 3500 !important;
}

#site-header-drawer-cart {
  z-index: 4000 !important;
}

/* --- Tablet/mobile: show hamburger, hide desktop nav at ≤1024px --- */
@media screen and (max-width: 1024px) {
  .site-header-inner {
    display: flex !important;
    align-items: center;
    height: 3.75rem;
    padding-right: 0;
    padding-left: 0;
  }

  .site-header-drawer-toggle {
    display: inline-block !important;
    align-self: center;
    flex-shrink: 0;
    padding-left: var(--space-sm);
  }

  .site-header-navigation {
    display: none !important;
  }

  .site-header .site-header-logo {
    display: inline-block !important;
    flex-grow: 1;
    width: auto;
    text-align: center;
  }

  .site-header .site-header-logo .site-logo-image {
    max-width: 120px !important;
    max-height: 50px !important;
  }

  .site-header-actions {
    flex-shrink: 0;
    padding-right: var(--space-sm);
  }

  .site-header-drawer-button {
    color: var(--color-accent-secondary);
  }

  .site-header-action-link,
  .site-header-action-link:hover {
    color: var(--color-accent-secondary);
  }
}

/* --- Mobile menu: left-side slide-in panel --- */
.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80%;
  max-width: 400px;
  height: 100%;
  z-index: 4000;
  background: var(--color-bg);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  visibility: hidden;
  padding: 0;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  color: var(--color-text);
}

.drawer-menu.visible {
  transform: translateX(0);
  visibility: visible;
}

.drawer-menu-header {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
}

.drawer-menu-close {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  padding: 0.25rem;
}

.drawer-menu-close-icon {
  display: flex;
  align-items: center;
  width: 1rem;
  height: 1rem;
}

.drawer-menu-close-icon svg {
  width: 100%;
  height: 100%;
}

.drawer-menu-nav {
  padding: 0.5rem 1.5rem 2rem;
}

.drawer-menu-nav .navmenu-item {
  padding: 0.625rem 0;
}

.drawer-menu-nav .navmenu-link-depth-1 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-text);
}

.drawer-menu-nav .navmenu-link-depth-1:hover {
  color: var(--color-accent-secondary);
}

/* Menu overlay */
.drawer-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 3500;
}

.drawer-menu-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   ORDER CONFIRMATION PAGE
   ============================================================ */

.order-confirm-body {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  color: #27211c;
  background: #ffffff;
}

.order-confirm-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.order-confirm-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.order-confirm-logo img {
  max-height: 50px;
}

.order-confirm-main {
  flex: 1;
}

.order-confirm-loading {
  text-align: center;
  color: #666;
  padding: 3rem 0;
}

/* Success header */
.order-confirm-success {
  text-align: center;
  margin-bottom: 2rem;
}

.order-confirm-checkmark {
  margin-bottom: 1rem;
}

.order-confirm-success h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #a06a3b;
  margin: 0 0 0.5rem;
}

.order-confirm-ordernr {
  font-size: 1.1rem;
  font-weight: 600;
  color: #27211c;
  margin: 0 0 0.25rem;
}

.order-confirm-email {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Details section */
.order-confirm-details {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.order-confirm-details h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #27211c;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Order items */
.order-confirm-items {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.order-confirm-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.order-confirm-item:last-child {
  margin-bottom: 0;
}

.order-confirm-item-image {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.order-confirm-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-confirm-item-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #6f421b;
  color: #fff;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.order-confirm-item-details {
  flex: 1;
  min-width: 0;
}

.order-confirm-item-title {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.order-confirm-item-variant {
  display: block;
  font-size: 0.8rem;
  color: #666;
}

.order-confirm-item-price {
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Shipping address */
.order-confirm-address {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.order-confirm-address p {
  margin: 0 0 0.15rem;
  font-size: 0.9rem;
  color: #444;
}

/* Totals */
.order-confirm-totals {
  margin-top: 0;
}

.order-confirm-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.9rem;
}

.order-confirm-row--total {
  border-top: 1px solid #e5e5e5;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  font-weight: 700;
  font-size: 1.05rem;
}

/* CTA */
.order-confirm-cta {
  text-align: center;
  margin-top: 1rem;
}

.order-confirm-btn {
  display: inline-block;
  background: #6f421b;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.order-confirm-btn:hover {
  background: #a06a3b;
}

/* Error state */
.order-confirm-error {
  text-align: center;
  padding: 3rem 0;
}

.order-confirm-error h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: #c00;
  margin-bottom: 0.5rem;
}

.order-confirm-error p {
  color: #666;
  margin-bottom: 1.5rem;
}

/* Footer */
.order-confirm-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e5e5;
  margin-top: auto;
}

.order-confirm-footer a {
  color: #794920;
  text-decoration: none;
  font-size: 0.9rem;
}

.order-confirm-footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
  .order-confirm-page {
    padding: 1.25rem 1rem;
  }

  .order-confirm-details {
    padding: 1rem;
  }

  .order-confirm-success h1 {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   PERFORMANCE - content-visibility for below-fold sections
   Skips rendering of off-screen sections until scrolled into view
   ========================================================================== */

.section-dynamic-list-collections,
.section-dynamic-product,
.section-video-with-text,
.newsletter-outer {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}
