/** Shopify CDN: Minification failed

Line 3202:0 Expected "}" to go with "{"

**/
/* ========================================
   Son of Edmond — Custom CSS Overrides
   Applied on top of Dawn's base styles
   ======================================== */

/* --- Brand Accent Color Variable --- */
:root {
  --soe-accent: #C7AC48;
  --soe-accent-hover: #B89A35;
  --soe-primary: #1B4332;
  --soe-primary-light: #2D6A4F;
  --soe-primary-dark: #0F2B1F;
  --soe-cream: #F8F6F1;
  --soe-text-muted: #8A8A8A;
}

/* --- Homepage Section Dividers --- */
#MainContent > .shopify-section + .shopify-section {
  border-top: 1px solid #e5e5e5;
}

/* --- Global Typography Refinements --- */
/* Dawn uses 62.5% root so 1rem = 10px. Our sizes use rem accordingly. */
h1, h2, h3, .h0, .h1, .h2, .h3 {
  letter-spacing: 0.01em;
  margin: 0;
  padding: 0;
}

/* Increase Dawn's default body text */
body {
  font-size: 1.6rem;
  line-height: 1.6;
}

/* --- Buttons --- */
.button--primary,
.shopify-challenge__button {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1.2rem 3rem;
}

.button--secondary {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1.2rem 3rem;
}

/* --- Header Styling --- */
/* Colours inherit from Dawn's colour scheme (editable in theme editor).
   We only add structural overrides and brand-specific accents. */
.header-wrapper {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-wrapper.scrolled-past-header {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header {
  padding: 2rem 3rem !important;
}

/* Logo layout */
.header__heading-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.header__heading-link .h2 {
  font-size: 2.6rem !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--soe-primary) !important;
}

/* Logo tagline */
.soe-logo-tagline {
  font-family: var(--font-body-family);
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgb(var(--color-secondary-button-text));
  margin-top: 0.2rem;
  line-height: 1;
}

/* Push nav to the right: swap grid columns so nav gets 1fr and icons get auto */
@media screen and (min-width: 990px) {
  .header--middle-left {
    grid-template-columns: auto 1fr auto !important;
  }

  .header--middle-left .header__inline-menu {
    justify-self: end;
  }
}

/* Nav links — uppercase, colour from Dawn's scheme */
.header__menu-item {
  font-size: 1.28rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgb(var(--color-foreground)) !important;
  position: relative;
  text-decoration: none !important;
}

/* Kill ALL of Dawn's text-decoration underlines on nav items */
.header__menu-item span,
.header__menu-item:hover span,
.header__active-menu-item,
.header__menu-item:hover .header__active-menu-item {
  text-decoration: none !important;
  text-decoration-thickness: 0 !important;
}

/* Gold underline via ::after pseudo-element */
.header__inline-menu .header__menu-item::after {
  content: '';
  position: absolute;
  bottom: 0.6rem;
  left: 1.2rem;
  right: 1.2rem;
  height: 1.5px;
  background-color: #C7AC48;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.header__inline-menu .header__menu-item:hover::after,
.header__inline-menu .header__menu-item[aria-current="page"]::after {
  transform: scaleX(1);
}

.header__menu-item:hover {
  color: var(--soe-primary) !important;
}

/* Hide account icon — not used */
.header__icon--account {
  display: none !important;
}

/* Search icon in header */
.header__icon--search {
  cursor: pointer;
}

/* Search modal styling */
.search-modal {
  z-index: 100;
}

.search-modal__content {
  background: rgb(var(--color-background));
  border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.search-modal__form .search__input {
  font-family: var(--font-body-family);
  font-size: 1.6rem;
}

.search-modal__form .field__button svg {
  color: rgb(var(--color-foreground));
}

/* Header icons — colour from Dawn's scheme */
.header__icon,
.header__icon svg {
  color: rgb(var(--color-foreground)) !important;
}

/* Cart count bubble */
.cart-count-bubble {
  background: var(--soe-accent) !important;
  color: var(--soe-primary-dark) !important;
  font-size: 1rem;
  font-weight: 700;
}

/* Mobile menu drawer */
.menu-drawer__navigation .list-menu__item--link {
  font-family: var(--font-heading-family);
  font-size: 2rem;
  font-weight: 500;
}

.menu-drawer__navigation .list-menu__item--link:hover {
  color: rgb(var(--color-secondary-button-text)) !important;
}

/* --- Footer --- */
.footer {
  padding: 5rem 0 2rem !important;
}

/* Column headings */
.footer .footer-block__heading,
.footer .footer__heading {
  font-family: var(--font-body-family);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Links */
.footer .footer-block__details-content a,
.footer .list-menu__item--link {
  font-size: 1.4rem;
  transition: color 0.2s ease;
}

.footer .footer-block__details-content a:hover,
.footer .list-menu__item--link:hover {
  color: rgb(var(--color-secondary-button-text)) !important;
}

/* Social icons */
.footer .footer__list-social a {
  border: 1px solid rgba(var(--color-foreground), 0.15);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.footer .footer__list-social a:hover {
  color: rgb(var(--color-secondary-button-text)) !important;
  border-color: var(--soe-accent);
}

/* Newsletter in footer */
.footer .newsletter-form__field-wrapper {
  max-width: 100%;
}

.footer .field__input:focus {
  border-color: var(--soe-accent);
}

/* Divider between content and bottom */
.footer .footer__content-top {
  padding-bottom: 3rem;
  border-bottom: 1px solid #e5e5e5;
}

/* Bottom bar */
.footer .footer__content-bottom {
  border-top: none;
  padding-top: 2rem;
  font-size: 1.2rem;
}

.footer .footer__content-bottom a:hover {
  color: rgb(var(--color-secondary-button-text)) !important;
}

/* Mobile footer */
@media screen and (max-width: 749px) {
  .footer {
    padding: 3.5rem 0 2rem !important;
  }

  .footer .footer__content-top {
    padding-bottom: 2rem;
  }

  .footer .footer-block__heading,
  .footer .footer__heading {
    margin-bottom: 1rem;
  }
}

/* --- Section Labels (reusable utility) --- */
.soe-section-label {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(var(--color-secondary-button-text));
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* --- Announcement Bar — Dark Green --- */
.announcement-bar-section .announcement-bar,
.announcement-bar-section[class*="color-"] {
  background: var(--soe-primary) !important;
}

.announcement-bar {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.announcement-bar a,
.announcement-bar .announcement-bar__message {
  color: var(--soe-cream) !important;
}

/* --- Header (additional) --- */
.header__heading-link .h2 {
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* --- Featured Products Section --- */
.soe-fp__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 2rem;
}

.soe-fp__desc {
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.5);
  margin-top: 0.4rem;
}

.soe-fp__viewall {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(var(--color-secondary-button-text));
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.soe-fp__viewall:hover {
  color: var(--soe-accent-hover);
}

/* Featured products dots - hidden on desktop */
.soe-fp__dots {
  display: none;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.soe-fp__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(var(--color-foreground), 0.15);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.soe-fp__dot--active {
  background: var(--soe-accent);
  transform: scale(1.3);
}

@media screen and (max-width: 749px) {
  .soe-fp__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .soe-fp__dots {
    display: flex;
  }
}

/* --- Dawn Product Cards (featured collection) --- */

/* Card container */
.card-wrapper {
  position: relative;
}

/* Remove Dawn's default card borders and shadows */
.card--card,
.card--standard {
  border: none;
  box-shadow: none;
  background: transparent;
}

.card--card .card__inner,
.card--standard .card__inner {
  border: none;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
}

/* Make card image area clickable */
a.card__media {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

/* Force square image ratio to match homepage cards */
.card.ratio,
.card .ratio {
  --ratio-percent: 100% !important;
}

.card__media .media {
  overflow: hidden;
  background: rgba(var(--color-foreground), 0.04);
}

.card__media .media img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: opacity 0.4s ease, transform 0.5s ease;
}

/* Image hover swap - second image fades in */
.card__media .media img + img {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
}

.card-wrapper:hover .card__media .media img + img {
  opacity: 1;
}

/* Gentle zoom on single-image cards only */
.card-wrapper:hover .card__media .media img:only-child {
  transform: scale(1.03);
}

/* Gold accent line on hover - only on first card__content */
.card__content {
  position: relative;
}

.card__content:first-of-type::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--soe-accent);
  transition: width 0.4s ease;
}

.card__content:not(:first-of-type)::before {
  display: none;
}

.card-wrapper:hover .card__content:first-of-type::before {
  width: 40px;
}

/* Typography */
.card__heading {
  font-family: var(--font-heading-family);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card__heading a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-wrapper:hover .card__heading a {
  color: rgb(var(--color-secondary-button-text));
}

.card__information .price {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(var(--color-foreground), 0.55);
}

.card--standard .card__content {
  padding: 1rem 0.2rem 0;
}

.card--card .card__content {
  padding: 1rem 0.2rem 0;
}

/* Remove duplicate content area padding/line */
.card__content + .card__content {
  padding-top: 0;
}

/* Quick Add to Cart button */
.quick-add__submit.button--secondary {
  background: transparent !important;
  border: 1.5px solid var(--soe-primary) !important;
  color: var(--soe-primary) !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 1rem !important;
  transition: all 0.3s ease !important;
}

.quick-add__submit.button--secondary:hover {
  background: var(--soe-primary) !important;
  color: rgb(var(--color-button-text)) !important;
  border-color: var(--soe-primary) !important;
}

/* Badge styling */
.card .badge {
  border: none;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card .badge.soe-badge--type {
  background: var(--soe-accent) !important;
  color: var(--soe-primary-dark) !important;
}

.card .badge--bottom-left {
  top: 1rem;
  left: 1rem;
  bottom: auto;
  right: auto;
}

/* Sold out badge */
.card .badge[class*="sold"] {
  background: rgba(var(--color-foreground), 0.06);
  color: rgba(var(--color-foreground), 0.5);
}

/* Slider arrows to match our nav style */
.slider-buttons .slider-button {
  border: 1px solid rgba(var(--color-foreground), 0.1);
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.slider-buttons .slider-button:hover {
  background: var(--soe-primary);
  color: white;
  border-color: var(--soe-primary);
}

/* Section title styling */
.featured-collection .title-wrapper {
  margin-bottom: 2rem;
}

.featured-collection .title-wrapper .title {
  margin: 0;
}

/* --- Badge Styling --- */
.badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
}


/* --- Cart Drawer --- */
.cart-drawer__overlay {
  background: rgba(0, 0, 0, 0.4);
}

/* --- Newsletter --- */
.newsletter-form__field-wrapper .field__input {
  border-radius: 0;
}


/* Force newsletter outer section background to white (inner uses colour scheme) */
[id*="newsletter"].shopify-section,
[id*="newsletter"] > .newsletter {
  background: #FFFFFF !important;
}

/* 2-column newsletter layout to match static site */
@media screen and (min-width: 750px) {
  .newsletter__wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0 3rem;
    align-items: center;
    text-align: left;
    border: 1px solid rgba(var(--color-foreground), 0.08);
  }

  /* Heading in left column, row 1 */
  .newsletter__wrapper > .inline-richtext,
  .newsletter__wrapper > h2 {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0.5rem;
  }

  /* Subheading in left column, row 2 */
  .newsletter__wrapper > .newsletter__subheading {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0 !important;
    max-width: none;
  }

  /* Form in right column, spanning both rows */
  .newsletter__wrapper > div:last-child {
    grid-column: 2;
    grid-row: 1 / -1;
    margin-top: 0 !important;
  }

  .newsletter__wrapper .newsletter-form__field-wrapper {
    max-width: none;
  }
}

/* --- Collection Description Expander --- */
.soe-desc-expander {
  position: relative;
}

.soe-desc-expander__content {
  max-height: 8.5em;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.soe-desc-expander--expanded .soe-desc-expander__content {
  max-height: 200rem;
}

.soe-desc-expander__fade {
  position: absolute;
  bottom: 3.2rem;
  left: 0;
  right: 0;
  height: 4em;
  background: linear-gradient(to bottom, transparent, rgb(var(--color-background)));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.soe-desc-expander--expanded .soe-desc-expander__fade {
  opacity: 0;
}

.soe-desc-expander__btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgb(var(--color-secondary-button-text));
}

.soe-desc-expander__btn svg {
  transition: transform 0.3s ease;
}

.soe-desc-expander--expanded .soe-desc-expander__btn svg {
  transform: rotate(180deg);
}

/* Hide expander if content is short enough */
.soe-desc-expander--no-overflow .soe-desc-expander__fade,
.soe-desc-expander--no-overflow .soe-desc-expander__btn {
  display: none;
}

.soe-desc-expander--no-overflow .soe-desc-expander__content {
  max-height: none;
}

/* --- Collection Page --- */
.collection-hero__title {
  font-weight: 500;
}

/* --- Bundle Builder ---
   Design: inspired by Seamus Golf, Mr Porter, Bellroy.
   Principles: restraint, generous whitespace, image-swap on hover,
   soft typography, no borders at rest. */

/* Header */
.soe-b__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 2rem;
}

.soe-b__label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(var(--color-secondary-button-text));
  margin-bottom: 0.1rem;
}

.soe-b__heading {
  font-family: var(--font-heading-family);
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 500;
  color: rgb(var(--color-foreground));
  line-height: 1.1;
  margin-top: 10px;
  margin-bottom: 10px !important;
}

/* Tier badges */
.soe-b__tiers {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.soe-b__tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem 1.4rem;
  border: 1px solid rgba(var(--color-foreground), 0.08);
}

.soe-b__tier--highlight {
  background: var(--soe-primary);
  border-color: var(--soe-primary);
}

.soe-b__tier-pct {
  font-family: var(--font-heading-family);
  font-size: 2rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  line-height: 1;
}

.soe-b__tier--highlight .soe-b__tier-pct {
  color: rgb(var(--color-secondary-button-text));
}

.soe-b__tier-label {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.5);
  margin-top: 0.2rem;
}

.soe-b__tier--highlight .soe-b__tier-label {
  color: rgb(var(--color-secondary-button-text));
}

/* Slider */
.soe-b__slider {
  position: relative;
}

/* Modern slider nav - below carousel */
.soe-b__slidernav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.soe-b__slidernav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: rgba(var(--color-foreground), 0.35);
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0;
}

.soe-b__slidernav-btn:hover {
  color: rgb(var(--color-foreground));
}

.soe-b__slidernav-btn:hover svg {
  transform: scale(1.15);
}

.soe-b__slidernav-btn svg {
  transition: transform 0.2s ease;
}

.soe-b__slidernav-track {
  width: 60px;
  height: 2px;
  background: rgba(var(--color-foreground), 0.1);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.soe-b__slidernav-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 20px;
  background: var(--soe-accent);
  border-radius: 1px;
  transition: left 0.3s ease;
}

.soe-b__rail {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.soe-b__rail::-webkit-scrollbar { display: none; }

/* Peek effect (#17) - show edge of next card */
@media screen and (min-width: 750px) {
  .soe-b__rail {
    padding-right: 8%;
  }
}

/* Dot indicators (#18) */
.soe-b__dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.soe-b__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(var(--color-foreground), 0.15);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.soe-b__dot--active {
  background: var(--soe-accent);
  transform: scale(1.3);
}

/* -------- Product Card -------- */
.soe-pc {
  flex: 0 0 calc(25% - 1.5rem);
  scroll-snap-align: start;
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.soe-pc__detail {
  flex: 1;
}

.soe-pc__add-btn {
  margin-top: auto;
}

/* Image container - forced square */
.soe-pc__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: rgba(var(--color-foreground), 0.04);
  text-decoration: none;
  aspect-ratio: 1/1;
}

/* Images fill the square container */
.soe-pc__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease, transform 0.5s ease;
}

/* Hover image sits on top, hidden by default */
.soe-pc__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

/* Image swap ONLY on cards with a second image */
.soe-pc--has-alt:hover .soe-pc__img--primary {
  opacity: 0;
}

.soe-pc--has-alt:hover .soe-pc__img--hover {
  opacity: 1;
}

/* Gentle zoom on single-image cards */
.soe-pc:not(.soe-pc--has-alt):hover .soe-pc__img--primary {
  transform: scale(1.03);
}

.soe-pc__empty {
  width: 100%;
  height: 100%;
  background: var(--soe-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--color-foreground), 0.35);
  font-family: var(--font-heading-family);
  font-size: 1.3rem;
}

/* Badges */
.soe-pc__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  z-index: 2;
  pointer-events: none;
}

.soe-pc__badge--new,
.soe-pc__badge--type {
  background: var(--soe-accent);
  color: var(--soe-primary-dark);
}

.soe-pc__badge--soldout {
  background: rgba(var(--color-foreground), 0.06);
  color: rgba(var(--color-foreground), 0.5);
}

/* Bundle checkbox */
.soe-pc__bundle-tick {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 3;
  cursor: pointer;
}

.soe-pc__bundle-tick input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.soe-pc__tick-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 2px solid rgba(var(--color-foreground), 0.6);
  background: rgba(0,0,0,0.15);
  transition: all 0.2s ease;
  color: transparent;
}

.soe-pc:hover .soe-pc__tick-box {
  border-color: rgba(var(--color-foreground), 0.85);
  background: rgba(0,0,0,0.25);
}

.soe-pc.is-selected .soe-pc__tick-box {
  background: var(--soe-accent);
  border-color: var(--soe-accent);
  color: var(--soe-primary-dark);
}

.soe-pc__tick-label {
  display: none;
}

.soe-pc.is-selected .soe-pc__media::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 2px var(--soe-accent);
  pointer-events: none;
  z-index: 1;
}

/* Card detail */
.soe-pc__detail {
  padding: 1rem 0.2rem 0;
  position: relative;
}

/* Gold accent line slides in on hover */
.soe-pc__detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--soe-accent);
  transition: width 0.4s ease;
}

.soe-pc:hover .soe-pc__detail::before {
  width: 40px;
}

.soe-pc__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-heading-family);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgb(var(--color-foreground));
  line-height: 1.3;
  text-decoration: none;
  margin-bottom: 0.3rem;
  transition: color 0.2s ease;
}

/* #6 - name turns gold on card hover */
.soe-pc:hover .soe-pc__name {
  color: rgb(var(--color-secondary-button-text));
}

/* #13 - product type as pill */
.soe-pc__type-pill {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.45);
  border: 1px solid rgba(var(--color-foreground), 0.1);
  padding: 0.15rem 0.6rem;
  margin-bottom: 0.4rem;
}

.soe-pc__cost {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  letter-spacing: 0.02em;
}

/* Colour swatches */
.soe-pc__swatches {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.soe-pc__swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(var(--color-foreground), 0.15);
  border: 1px solid rgba(var(--color-foreground), 0.08);
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.soe-pc__swatch:hover {
  box-shadow: 0 0 0 1.5px rgb(var(--color-foreground));
}

.soe-pc__swatch-more {
  font-size: 1rem;
  color: rgba(var(--color-foreground), 0.4);
}

/* Add to Cart button on product cards */
.soe-pc__add-btn {
  display: block;
  width: 100%;
  margin-top: 0.8rem;
  padding: 0.9rem 0;
  background: transparent;
  border: 1.5px solid var(--soe-primary);
  color: var(--soe-primary);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.soe-pc__add-btn:hover {
  background: var(--soe-primary);
  color: rgb(var(--color-button-text));
}

.soe-pc__add-btn--disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: rgba(var(--color-foreground), 0.2);
  color: rgba(var(--color-foreground), 0.4);
}

.soe-pc__add-btn--disabled:hover {
  background: transparent;
  color: rgba(var(--color-foreground), 0.4);
}

/* -------- Summary Bar (sticky with thumbnails) -------- */
.soe-b__bar {
  position: sticky;
  bottom: 0;
  z-index: 50;
  margin-top: 2.5rem;
  padding: 1.2rem 2rem;
  background: var(--soe-primary);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: soe-slideUp 0.3s ease;
}

.soe-b__bar-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}

/* Thumbnails - after text */
.soe-b__bar-thumbs {
  display: flex;
  order: 1;
}

.soe-b__bar-thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--soe-primary);
  margin-left: -6px;
}

.soe-b__bar-thumb:first-child {
  margin-left: 0;
}

.soe-b__bar-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

@keyframes soe-slideUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.soe-b__bar-left strong {
  font-size: 1.4rem;
  color: var(--soe-cream);
}

.soe-b__bar-left span {
  font-size: 1.15rem;
  color: rgb(var(--color-secondary-button-text));
}

.soe-b__bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.soe-b__bar-was {
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), 0.4);
  text-decoration: line-through;
}

.soe-b__bar-total {
  font-family: var(--font-heading-family);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--soe-cream);
}

.soe-b__bar-cta {
  padding: 1rem 2.5rem;
  background: var(--soe-accent);
  color: var(--soe-primary-dark);
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: var(--font-body-family);
}

.soe-b__bar-cta:hover {
  background: var(--soe-accent-hover);
}

/* Responsive */
@media screen and (max-width: 989px) {
  .soe-b__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .soe-pc {
    flex: 0 0 calc(33.333% - 1.34rem);
  }

  .soe-b__bar {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .soe-b__bar-left { width: 100%; justify-content: center; }
  .soe-b__bar-text { align-items: center; }
  .soe-b__bar-right { width: 100%; justify-content: center; flex-wrap: wrap; }
}

@media screen and (max-width: 749px) {
  .soe-pc {
    flex: 0 0 calc(50% - 1rem);
  }

  .soe-b__slidernav { display: none; }

  .soe-b__bar {
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
  }

  .soe-b__bar-left { width: 100%; justify-content: center; }
  .soe-b__bar-text { align-items: center; }
  .soe-b__bar-thumbs { justify-content: center; }
  .soe-b__bar-right { width: 100%; justify-content: center; flex-wrap: wrap; }
}

/* --- Product Page Trust Signals --- */
.soe-trust-signals {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.25rem 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  margin: 1rem 0;
}

.soe-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(var(--color-foreground), 0.6);
}

.soe-trust-item svg {
  flex-shrink: 0;
  color: rgb(var(--color-foreground));
}

/* --- Delivery Countdown --- */
.soe-delivery {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: rgba(var(--color-foreground), 0.03);
  border: 1px solid rgba(var(--color-foreground), 0.06);
  margin: 1rem 0;
  font-size: 0.8rem;
  color: rgba(var(--color-foreground), 0.6);
}

.soe-delivery svg {
  flex-shrink: 0;
  color: rgb(var(--color-foreground));
}

.soe-delivery strong {
  color: rgb(var(--color-foreground));
  font-weight: 600;
}

/* --- Payment Icons --- */
.soe-payments {
  margin: 0.75rem 0;
}

.soe-payments__label {
  font-size: 0.7rem;
  color: var(--soe-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.soe-payments__icons {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.soe-payments__icons .payment-icon {
  height: 24px;
}

/* --- Payment Icons Bar --- */
.soe-pay-bar {
  text-align: center;
}

.soe-pay-bar__title {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.45);
  margin: 0 0 1.6rem;
}

.soe-pay-bar__track {
  overflow: hidden;
}

.soe-pay-bar__rail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.soe-pay-bar__icon {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.soe-pay-bar__icon:hover {
  opacity: 1;
}

.soe-pay-bar__icon svg {
  display: block;
  height: 32px;
  width: auto;
}

/* Hide cloned icons on desktop */
.soe-pay-bar__icon--clone {
  display: none;
}

/* Mobile: scrolling carousel */
@media (max-width: 749px) {
  .soe-pay-bar__rail {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 2.5rem;
    animation: soe-pay-scroll 18s linear infinite;
    width: max-content;
  }

  .soe-pay-bar__icon--clone {
    display: block;
  }

  .soe-pay-bar__icon svg {
    height: 28px;
  }

  .soe-pay-bar__track:hover .soe-pay-bar__rail {
    animation-play-state: paused;
  }
}

@keyframes soe-pay-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Custom Hero Section --- */
/* Override EVERYTHING Dawn sets on the hero wrapper */
.soe-hero-wrapper,
.soe-hero-wrapper[class*="color-"],
.soe-hero-wrapper.gradient {
  background: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.soe-hero {
  position: relative;
  height: 550px;
  overflow: hidden;
  /* Gradient is applied via inline style in the Liquid template
     to guarantee it overrides Dawn's colour scheme system.
     Fallback here in case inline style is removed: */
  background: linear-gradient(135deg, var(--soe-primary) 0%, var(--soe-primary-dark) 40%, #1a3a2a 100%);
}

/* Dark overlay on hero image for text readability */
.soe-hero__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: #000000;
  pointer-events: none;
}

/* Optional background image (sits above gradient, below content) */
.soe-hero__bg {
  position: absolute;
  inset: 0;
}

.soe-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--bg-pos-desktop, center center);
}

@media screen and (max-width: 1199px) {
  .soe-hero__bg img {
    object-position: var(--bg-pos-mobile, center center);
  }
}

.soe-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 550px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.soe-hero__subtitle {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgb(var(--color-secondary-button-text)) !important;
  margin-bottom: 1.5rem;
}

.soe-hero__title {
  font-family: var(--font-heading-family);
  font-size: clamp(5.5rem, 6.25vw, 6.875rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--soe-cream);
  margin-bottom: 1.5rem;
}

.soe-hero__desc {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(var(--color-foreground), 0.75) !important;
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.soe-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.soe-hero__actions .button {
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
}

/* Hero buttons need explicit colours on dark background */
.soe-hero__actions .button--primary {
  background: var(--soe-accent);
  color: var(--soe-primary-dark);
}

.soe-hero__actions .button--primary:hover {
  background: var(--soe-accent-hover);
}

.soe-hero__actions .button--secondary {
  background: transparent;
  color: var(--soe-cream);
  border: 1.5px solid rgba(248, 246, 241, 0.5);
}

.soe-hero__actions .button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--soe-cream);
}

.soe-hero__image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.soe-hero__image img {
  max-height: 520px;
  width: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.25));
}

.soe-hero__clubs-svg {
  height: 460px;
  width: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.25));
}

@media screen and (max-width: 1199px) {
  .soe-hero {
    height: 550px;
  }

  .soe-hero__inner {
    height: 550px;
    padding: 0 1.5rem;
    text-align: center;
    justify-content: center;
  }

  .soe-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .soe-hero__desc {
    max-width: 460px;
  }

  .soe-hero__actions {
    justify-content: center;
  }
}

/* --- Brand Pillars Section --- */
.soe-brand-pillars-wrapper {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.soe-brand-pillars-wrapper .h1 {
  margin: 0;
}

.soe-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.soe-pillar {
  text-align: center;
  padding: 1rem 1.5rem;
}

.soe-pillar__icon {
  color: var(--soe-accent);
  margin-bottom: 0.75rem;
}

.soe-pillar__icon svg,
.soe-pillar__icon img {
  width: 72px;
  height: 72px;
}

.soe-pillar__title {
  font-family: var(--font-heading-family);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--soe-primary);
  margin-bottom: 0.75rem;
}

.soe-pillar__text {
  font-size: 1.5rem;
  color: rgba(var(--color-foreground), 0.55);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/* Pillar dots - hidden on desktop */
.soe-pillars__dots {
  display: none;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.soe-pillars__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(var(--color-foreground), 0.15);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.soe-pillars__dot--active {
  background: var(--soe-accent);
  transform: scale(1.3);
}

@media screen and (max-width: 749px) {
  .soe-pillars__grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .soe-pillars__grid::-webkit-scrollbar { display: none; }

  .soe-pillar {
    flex: 0 0 85%;
    scroll-snap-align: center;
    padding: 1rem 2rem;
  }

  .soe-pillars__dots {
    display: flex;
  }
}

/* --- Testimonials Section --- */
.soe-testimonials-wrapper {
  background: var(--soe-primary) !important;
}

.soe-testimonials {
  background: var(--soe-primary);
  color: var(--soe-cream);
}

.soe-testimonials .section-header__title {
  color: var(--soe-cream);
}

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

.soe-testimonial {
  background: rgba(var(--color-foreground), 0.05);
  border: 1px solid rgba(var(--color-foreground), 0.08);
  padding: 2.5rem 2rem;
}

.soe-testimonial__stars {
  color: var(--soe-accent);
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.soe-testimonial__quote {
  font-family: var(--font-heading-family);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(var(--color-foreground), 0.85);
  margin-bottom: 1.5rem;
}

.soe-testimonial__name {
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--soe-cream);
  display: block;
}

.soe-testimonial__detail {
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.5);
}

/* Testimonial dots - hidden on desktop */
.soe-testimonials__dots {
  display: none;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.soe-testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(var(--color-foreground), 0.25);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.soe-testimonials__dot--active {
  background: var(--soe-accent);
  transform: scale(1.3);
}

@media screen and (max-width: 749px) {
  .soe-testimonials__grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .soe-testimonials__grid::-webkit-scrollbar { display: none; }

  .soe-testimonial {
    flex: 0 0 85%;
    scroll-snap-align: center;
    padding: 1.5rem;
  }

  .soe-testimonials__dots {
    display: flex;
  }
}

/* --- Craft Story Section --- */
.soe-craft__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.soe-craft__images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

.soe-craft__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soe-craft__title {
  font-family: var(--font-heading-family);
  font-size: clamp(2.8rem, 3vw, 4rem);
  font-weight: 500;
  color: var(--soe-primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.soe-craft__text {
  font-size: 1.6rem;
  color: rgba(var(--color-foreground), 0.55);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.soe-craft__stats {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.soe-craft__stat-number {
  font-family: var(--font-heading-family);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--soe-primary);
  display: block;
}

.soe-craft__stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soe-text-muted);
  margin-top: 0.15rem;
  display: block;
}

@media screen and (max-width: 749px) {
  .soe-craft__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .soe-craft__images {
    order: -1;
  }

  .soe-craft__stats {
    flex-direction: column;
    gap: 1.25rem;
  }
}

/* --- Page Hero (Our Story, Workshop, Contact) --- */
.soe-page-hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.soe-page-hero--compact {
  padding: 4rem 0 3rem;
}

.soe-page-hero__bg {
  position: absolute;
  inset: 0;
}

.soe-page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.soe-page-hero__label {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgb(var(--color-secondary-button-text));
  margin-bottom: 1rem;
}

.soe-page-hero__title {
  font-family: var(--font-heading-family);
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--soe-cream);
  margin-top: 10px;
  margin-bottom: 1rem;
}

.soe-page-hero__text {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(var(--color-foreground), 0.7);
  max-width: 500px;
}

@media screen and (max-width: 749px) {
  .soe-page-hero {
    padding: 3.5rem 0 3rem;
  }

  .soe-page-hero--compact {
    padding: 3rem 0 2.5rem;
  }
}

/* --- Story Values --- */
.soe-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.soe-value {
  padding: 2rem;
  border: 1px solid rgba(var(--color-foreground), 0.08);
}

.soe-value__number {
  font-family: var(--font-heading-family);
  font-size: 3.2rem;
  font-weight: 600;
  color: rgb(var(--color-secondary-button-text));
  display: block;
  margin-bottom: 0.75rem;
}

.soe-value__title {
  font-family: var(--font-heading-family);
  font-size: 2rem;
  font-weight: 600;
  color: var(--soe-primary);
  margin-bottom: 0.5rem;
}

.soe-value__text {
  font-size: 1.5rem;
  color: rgba(var(--color-foreground), 0.55);
  line-height: 1.7;
}

@media screen and (max-width: 749px) {
  .soe-values__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .soe-value {
    padding: 1.5rem;
  }
}

/* --- Timeline --- */
.soe-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.soe-timeline::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(var(--color-foreground), 0.08);
}

.soe-timeline__item {
  display: flex;
  gap: 2rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.soe-timeline__item:last-child {
  padding-bottom: 0;
}

.soe-timeline__year {
  font-family: var(--font-heading-family);
  font-size: 1.8rem;
  font-weight: 600;
  color: rgb(var(--color-secondary-button-text));
  width: 50px;
  flex-shrink: 0;
  text-align: right;
}

.soe-timeline__item::after {
  content: '';
  position: absolute;
  left: 56px;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  background: var(--soe-primary);
  border-radius: 50%;
}

.soe-timeline__title {
  font-family: var(--font-heading-family);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--soe-primary);
  margin-bottom: 0.35rem;
}

.soe-timeline__text {
  font-size: 1.5rem;
  color: rgba(var(--color-foreground), 0.55);
  line-height: 1.7;
}

/* --- Workshop Process Steps --- */
.soe-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.soe-step--reverse {
  direction: rtl;
}

.soe-step--reverse > * {
  direction: ltr;
}

.soe-step__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.soe-step__number {
  font-family: var(--font-heading-family);
  font-size: 4rem;
  font-weight: 600;
  color: rgb(var(--color-secondary-button-text));
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.soe-step__title {
  font-family: var(--font-heading-family);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--soe-primary);
  margin-bottom: 0.75rem;
}

.soe-step__text {
  font-size: 1.5rem;
  color: rgba(var(--color-foreground), 0.55);
  line-height: 1.8;
}

@media screen and (max-width: 749px) {
  .soe-step {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .soe-step--reverse {
    direction: ltr;
  }
}

/* --- FAQ --- */
.soe-faq__item {
  border-bottom: 1px solid #e5e5e5;
}

.soe-faq__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: none;
  border: none;
  font-family: var(--font-body-family);
  font-size: 1.6rem;
  font-weight: 500;
  color: rgb(var(--color-foreground));
  cursor: pointer;
  text-align: left;
}

.soe-faq__toggle:hover {
  color: var(--soe-primary);
}

.soe-faq__icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.soe-faq__item.active .soe-faq__icon {
  transform: rotate(180deg);
}

.soe-faq__answer {
  padding-bottom: 1.25rem;
}

.soe-faq__answer p {
  font-size: 1.5rem;
  color: rgba(var(--color-foreground), 0.55);
  line-height: 1.7;
}

/* --- Contact Form --- */
.soe-contact__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
}

.soe-contact__info-card {
  border: 1px solid rgba(var(--color-foreground), 0.08);
  padding: 2rem;
}

.soe-contact__info-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.soe-contact__info-item:last-child {
  border-bottom: none;
}

.soe-contact__callout {
  background: var(--soe-primary);
  padding: 2rem;
  margin-top: 1.5rem;
}

.soe-contact__callout-title {
  font-family: var(--font-heading-family);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--soe-cream);
  margin-bottom: 0.5rem;
}

.soe-contact__callout-text {
  font-size: 0.85rem;
  color: rgba(var(--color-foreground), 0.7);
  line-height: 1.7;
}

@media screen and (max-width: 749px) {
  .soe-contact__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* --- Story reverse layout --- */
.soe-step--reverse {
  direction: rtl;
}

.soe-step--reverse > * {
  direction: ltr;
}

/* --- Story Quote Block --- */
.soe-quote__wrapper {
  background: var(--soe-primary) !important;
  margin: 2rem calc(-50vw + 50%);
  width: 100vw;
}

.soe-quote {
  text-align: center;
  padding: 5rem 2rem;
  max-width: var(--page-width);
  margin: 0 auto;
}

.soe-quote__text {
  font-family: var(--font-heading-family);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--soe-cream);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.soe-quote__attribution {
  font-size: 1.3rem;
  color: rgb(var(--color-secondary-button-text));
  letter-spacing: 0.1em;
  display: block;
}

/* --- CTA Block --- */
.soe-cta {
  text-align: center;
  padding: 2rem 0;
}

.soe-cta__title {
  font-family: var(--font-heading-family);
  font-size: clamp(2.8rem, 3vw, 3.6rem);
  font-weight: 500;
  margin-top: 0;
  color: var(--soe-primary);
  margin-bottom: 0.5rem;
}

.soe-cta__text {
  font-size: 1.6rem;
  color: rgba(var(--color-foreground), 0.55);
  margin-bottom: 1.5rem;
}

/* --- Delivery Info --- */
.soe-delivery__intro {
  font-size: 1.6rem;
  color: rgba(var(--color-foreground), 0.55);
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

.soe-delivery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  justify-items: center;
}

.soe-delivery__grid:has(:only-child) {
  grid-template-columns: 1fr;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.soe-delivery__card {
  border: 1px solid rgba(var(--color-foreground), 0.08);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.soe-delivery__card:hover {
  border-color: rgba(var(--color-foreground), 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.soe-delivery__card--featured {
  border-color: var(--soe-accent);
  border-width: 2px;
}

.soe-delivery__card--featured:hover {
  border-color: var(--soe-accent-hover);
}

.soe-delivery__badge {
  position: absolute;
  top: -1.1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--soe-accent);
  color: rgb(var(--color-button-text));
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1.2rem;
  border-radius: 2px;
  white-space: nowrap;
}

.soe-delivery__card-icon {
  margin-bottom: 1.5rem;
  color: var(--soe-accent);
}

.soe-delivery__card-icon svg {
  stroke: var(--soe-accent);
}

.soe-delivery__card-title {
  font-family: var(--font-heading-family);
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.soe-delivery__card-time {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--soe-primary);
  margin: 0 0 0.5rem;
}

.soe-delivery__card-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: rgb(var(--color-secondary-button-text));
  margin: 0 0 1rem;
}

.soe-delivery__card-desc {
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.55);
  line-height: 1.6;
  margin: 0;
}

/* Info blocks grid */
.soe-delivery__info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid #e5e5e5;
  padding-top: 4rem;
}

.soe-delivery__info-block {
  padding: 0 1rem;
}

.soe-delivery__info-icon {
  color: var(--soe-accent);
  margin-bottom: 1rem;
}

.soe-delivery__info-icon svg {
  stroke: var(--soe-accent);
}

.soe-delivery__info-title {
  font-family: var(--font-heading-family);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 0.8rem;
}

.soe-delivery__info-text {
  font-size: 1.5rem;
  color: rgba(var(--color-foreground), 0.55);
  line-height: 1.7;
}

.soe-delivery__info-text p {
  margin: 0 0 1rem;
}

.soe-delivery__info-text p:last-child {
  margin-bottom: 0;
}

/* Delivery responsive */
@media screen and (max-width: 989px) {
  .soe-delivery__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .soe-delivery__info-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .soe-delivery__info-block {
    padding: 0;
  }
}

/* --- Policy Content --- */
.soe-policy__intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: rgba(var(--color-foreground), 0.65);
  text-align: center;
}

.soe-policy__intro p {
  margin: 0;
}

.soe-policy__blocks {
  max-width: 720px;
  margin: 0 auto;
}

.soe-policy__block {
  padding: 2.5rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.soe-policy__block:first-child {
  padding-top: 0;
}

.soe-policy__block:last-child {
  border-bottom: none;
}

.soe-policy__block-icon {
  color: var(--soe-accent);
  margin-bottom: 1rem;
}

.soe-policy__block-icon svg {
  stroke: var(--soe-accent);
}

.soe-policy__block-title {
  font-family: var(--font-heading-family);
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.soe-policy__block-content {
  font-size: 1.5rem;
  color: rgba(var(--color-foreground), 0.55);
  line-height: 1.8;
}

.soe-policy__block-content p {
  margin: 0 0 1rem;
}

.soe-policy__block-content p:last-child {
  margin-bottom: 0;
}

/* --- Product Page --- */

/* Add to cart button - green outline */
.product-form__submit.button {
  background: transparent !important;
  border: 1.5px solid var(--soe-primary) !important;
  color: var(--soe-primary) !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
}

.product-form__submit.button:hover {
  background: var(--soe-primary) !important;
  color: rgb(var(--color-button-text)) !important;
}

.product-form__submit.button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Reduce product image size to align with thumbnails */
@media screen and (min-width: 750px) {
  .product--medium .product__media-wrapper {
    max-width: 50% !important;
  }
}

/* Force square product images on product page */
.product__media-item .media {
  --ratio-percent: 100% !important;
}

.product__media-item .media img {
  object-fit: cover !important;
}

/* Free delivery message */
.soe-free-delivery {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 0;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--soe-primary);
}

/* --- Product USPs --- */
.soe-usps {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e5e5e5;
}

.soe-usps__item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.soe-usps__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soe-accent);
}

.soe-usps__icon svg {
  width: 24px;
  height: 24px;
}

.soe-usps__text {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(var(--color-foreground));
}

/* --- Product Accordion Tabs --- */
.soe-product-accordion {
  border-top: 1px solid #e5e5e5;
  margin-top: 2rem;
}

.soe-product-accordion__item {
  border-bottom: 1px solid #e5e5e5;
}

.soe-product-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.6rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.soe-product-accordion__title {
  font-family: var(--font-heading-family);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(var(--color-foreground));
}

.soe-product-accordion__chevron {
  flex-shrink: 0;
  color: rgb(var(--color-foreground));
  transition: transform 0.3s ease;
}

.soe-product-accordion__item--open .soe-product-accordion__chevron {
  transform: rotate(180deg);
}

.soe-product-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.soe-product-accordion__item--open .soe-product-accordion__content {
  max-height: 100rem;
}

.soe-product-accordion__body {
  padding-bottom: 2rem;
  font-size: 1.4rem;
  line-height: 1.7;
  color: rgba(var(--color-foreground), 0.75);
}

.soe-product-accordion__body h3,
.soe-product-accordion__body h4,
.soe-product-accordion__body strong {
  color: rgb(var(--color-foreground));
}

/* Sticky add to cart bar */
.soe-sticky-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgb(var(--color-background));
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  padding: 1rem 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.soe-sticky-cart.is-visible {
  transform: translateY(0);
}

.soe-sticky-cart__inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.soe-sticky-cart__info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-width: 0;
}

.soe-sticky-cart__image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.soe-sticky-cart__details {
  min-width: 0;
}

.soe-sticky-cart__title {
  font-family: var(--font-heading-family);
  font-size: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.soe-sticky-cart__price {
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), 0.55);
  margin: 0;
}

.soe-sticky-cart__button {
  flex-shrink: 0;
  background: var(--soe-primary);
  color: rgb(var(--color-button-text));
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.soe-sticky-cart__button:hover {
  background: var(--soe-primary-dark);
}

@media screen and (max-width: 749px) {
  .soe-sticky-cart__title {
    max-width: 150px;
  }

  .soe-sticky-cart__button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

/* --- Instagram Feed Section --- */
.soe-instagram-wrapper {
  padding: 0 !important;
  margin: 0 !important;
}

.soe-instagram {
  padding: 5.6rem 0;
}

.soe-instagram__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.soe-instagram__label {
  display: inline-block;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgb(var(--color-secondary-button-text));
  margin-bottom: 1rem;
}

.soe-instagram__title {
  font-family: var(--font-heading-family);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 500;
  color: rgb(var(--color-foreground));
  margin: 0 0 0.8rem;
}

.soe-instagram__handle {
  display: inline-block;
  font-size: 1.4rem;
  color: rgb(var(--color-foreground));
  opacity: 0.6;
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
}

.soe-instagram__handle:hover {
  opacity: 1;
  color: rgb(var(--color-secondary-button-text));
}

/* Rail - native scroll like bundle */
.soe-instagram__rail {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-right: 8%;
}

.soe-instagram__rail::-webkit-scrollbar { display: none; }

.soe-instagram__slide {
  flex: 0 0 calc(25% - 1.5rem);
  scroll-snap-align: start;
  min-width: 0;
}

.soe-instagram__link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
}

.soe-instagram__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.soe-instagram__link:hover img {
  transform: scale(1.05);
}

.soe-instagram__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 43, 31, 0.4);
  color: rgb(var(--color-foreground));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.soe-instagram__link:hover .soe-instagram__overlay {
  opacity: 1;
}

.soe-instagram__placeholder {
  aspect-ratio: 1;
  background: rgba(var(--color-foreground), 0.04);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dot indicators - matching bundle */
.soe-instagram__dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.soe-instagram__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(var(--color-foreground), 0.15);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.soe-instagram__dot--active {
  background: var(--soe-accent);
  transform: scale(1.3);
}

/* Arrow nav with progress track - matching bundle */
.soe-instagram__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.soe-instagram__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: rgba(var(--color-foreground), 0.35);
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0;
}

.soe-instagram__nav-btn:hover {
  color: rgb(var(--color-foreground));
}

.soe-instagram__nav-btn:hover svg {
  transform: scale(1.15);
}

.soe-instagram__nav-btn svg {
  transition: transform 0.2s ease;
}

.soe-instagram__nav-track {
  width: 60px;
  height: 2px;
  background: rgba(var(--color-foreground), 0.1);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.soe-instagram__nav-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 20px;
  background: var(--soe-accent);
  border-radius: 1px;
  transition: left 0.3s ease;
}

@media screen and (max-width: 989px) {
  .soe-instagram__slide {
    flex: 0 0 calc(33.333% - 1.33rem);
  }
}

@media screen and (max-width: 749px) {
  .soe-instagram {
    padding: 4rem 0;
  }

  .soe-instagram__slide {
    flex: 0 0 calc(50% - 1rem);
  }

  .soe-instagram__nav {
    display: none;
  }
}

/* ========================================
   Collection Cards Section
   ======================================== */
/* Wide container */
.soe-cc__container {
  width: 95%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.soe-cc__header {
  text-align: center;
  margin-bottom: 3rem;
}



/* Card - flex item in the rail */
.soe-cc__card {
  flex: 0 0 calc(33.333% - 1.34rem);
  scroll-snap-align: start;
  min-width: 0;
  text-decoration: none;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.4s ease;
}
@media screen and (max-width: 749px) {
  .soe-cc__card {
    flex: 0 0 85%;
  }
  .soe-b__rail {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}


.soe-cc__card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Image wrapper - square cards */
.soe-cc__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

/* The actual image */
.soe-cc__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Placeholder when no image set */
.soe-cc__placeholder {
  width: 100%;
  height: 100%;
  background: var(--soe-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--color-foreground), 0.35);
  font-family: var(--font-heading-family);
  font-size: 1.6rem;
}

/* Dark overlay - sits in front of image to darken it for text readability */
.soe-cc__shadow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background-color: var(--bg);
  opacity: var(--overlay-opacity, 0);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Content overlay - positioned over the image */
.soe-cc__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  color: rgb(var(--color-foreground));
}

/* Count text at the top */
.soe-cc__count {
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.85);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Collection title - centered */
.soe-cc__title {
  font-family: var(--font-heading-family);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  color: rgb(var(--color-foreground));
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Link text at the bottom */
.soe-cc__link {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.85);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Hover effects */
.soe-cc__card:hover .soe-cc__img {
  transform: scale(1.03);
}

.soe-cc__card:hover .soe-cc__shadow {
  opacity: calc(var(--overlay-opacity, 0) - 0.1);
}

.soe-cc__card:hover .soe-cc__count {
  opacity: 1;
  transform: translateY(0);
}

.soe-cc__card:hover .soe-cc__link {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop - hide slider nav, center cards */
@media screen and (min-width: 990px) {
  .soe-cc__rail + .soe-b__dots,
  .soe-cc__rail ~ .soe-b__slidernav {
    display: none;
  }

  .soe-cc__rail {
    padding-right: 0 !important;
    overflow: visible;
  }
}

/* Tablet */
@media screen and (max-width: 989px) {
  .soe-cc__card {
    flex: 0 0 calc(50% - 1rem);
  }

  .soe-cc__title {
    font-size: 2.2rem;
  }

 @media screen and (min-width: 750px) {
  .soe-cc__rail {
    padding-right: 8%;
  }
}


/* Mobile - carousel matching bundle */
@media screen and (max-width: 749px) {
  .soe-cc__card {
    flex: 0 0 calc(85% - 1rem);
    scroll-snap-align: center;
  }

  .soe-cc__title {
    font-size: 2.4rem;
  }

  .soe-b__slidernav {
    /* Already hidden at 749px from bundle styles */
  }

  /* Show count and link on mobile since no hover */
  .soe-cc__count {
    opacity: 1;
    transform: translateY(0);
  }

  .soe-cc__link {
    opacity: 1;
    transform: translateY(0);
  }
}
