/** Shopify CDN: Minification failed

Line 3338:0 Unexpected "}"

**/
/* ============================================
   BRASS FOR HOMES — Quiet Luxury Design System
   "The Riad Folio" Editorial Aesthetic
   ============================================ */

/* === CSS CUSTOM PROPERTIES === */
:root {
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --color-brass: #B8860B;
  --color-brass-light: #D4A843;
  --color-brass-dark: #6B4E0A;
  --color-brass-text: #8B6508;
  --color-ivory: #FAF8F5;
  --color-cream: #F5F0EB;
  --color-charcoal: #1C1917;
  --color-foreground: #2D2A26;
  --color-muted: #6B6560;
  --color-border: #E5E0DA;
  --color-border-light: #EDEBE8;
  --max-width: 1440px;
  --header-height: 72px;
}

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-foreground);
  background: var(--color-ivory);
  font-feature-settings: "kern" 1, "liga" 1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

::selection {
  background: rgba(184, 134, 11, 0.2);
  color: var(--color-foreground);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-foreground);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.75rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p {
  line-height: 1.75;
  color: var(--color-muted);
}

/* === UTILITY CLASSES === */
.editorial-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.margin-note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.brass-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-brass), transparent);
  border: none;
}

.section-padding {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-max {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.section-spacing {
  margin-top: 6rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .section-spacing {
    margin-top: 10rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* === SCROLL ANIMATION === */
.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.fade-in.is-visible .stagger-child:nth-child(1) { transition-delay: 0.05s; }
.fade-in.is-visible .stagger-child:nth-child(2) { transition-delay: 0.1s; }
.fade-in.is-visible .stagger-child:nth-child(3) { transition-delay: 0.15s; }
.fade-in.is-visible .stagger-child:nth-child(4) { transition-delay: 0.2s; }
.fade-in.is-visible .stagger-child:nth-child(5) { transition-delay: 0.25s; }
.fade-in.is-visible .stagger-child:nth-child(6) { transition-delay: 0.3s; }

.stagger-child {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.is-visible .stagger-child {
  opacity: 1;
  transform: translateY(0);
}

/* === HEADER === */
/* === REDESIGNED NAV OVERLAY v2 === */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--color-ivory);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .nav-overlay__header { padding: 1.25rem 2.5rem; }
}
@media (min-width: 1024px) {
  .nav-overlay__header { padding: 1.25rem 4rem; }
}
.nav-close-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-close-btn__x {
  position: relative;
  width: 20px;
  height: 20px;
}
.nav-close-btn__x span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 1px;
  background: var(--color-foreground);
}
.nav-close-btn__x span:first-child { transform: rotate(45deg); }
.nav-close-btn__x span:last-child { transform: rotate(-45deg); }

/* Nav body — centered content */
.nav-overlay__body {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem 1.5rem 2rem;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .nav-overlay__body {
    align-items: center;
    padding: 2rem 2.5rem;
  }
}
@media (min-width: 1024px) {
  .nav-overlay__body { padding: 2rem 4rem; }
}

/* Content grid — columns */
.nav-overlay__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
  width: 100%;
  max-width: 900px;
}
@media (min-width: 768px) {
  .nav-overlay__content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem 4rem;
  }
}
@media (max-width: 479px) {
  .nav-overlay__content {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.5rem;
  }
}

/* Column headings */
.nav-col__heading {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-brass);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(184, 134, 11, 0.15);
}
@media (max-width: 767px) {
  .nav-col__heading {
    font-size: 0.6875rem;
    margin-bottom: 0.75rem;
  }
}

/* Column links container */
.nav-col__links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Individual nav links — compact */
.nav-overlay .nav-link {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--color-foreground);
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(12px);
}
@media (max-width: 767px) {
  .nav-overlay .nav-link {
    font-size: 0.95rem;
    padding: 0.35rem 0;
  }
}
.nav-overlay.is-open .nav-link {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered animation for all links */
.nav-overlay.is-open .nav-col:nth-child(1) .nav-link { transition-delay: 0.05s; }
.nav-overlay.is-open .nav-col:nth-child(1) .nav-link:nth-child(2) { transition-delay: 0.08s; }
.nav-overlay.is-open .nav-col:nth-child(1) .nav-link:nth-child(3) { transition-delay: 0.11s; }
.nav-overlay.is-open .nav-col:nth-child(1) .nav-link:nth-child(4) { transition-delay: 0.14s; }
.nav-overlay.is-open .nav-col:nth-child(1) .nav-link:nth-child(5) { transition-delay: 0.17s; }
.nav-overlay.is-open .nav-col:nth-child(1) .nav-link:nth-child(6) { transition-delay: 0.20s; }
.nav-overlay.is-open .nav-col:nth-child(1) .nav-link:nth-child(7) { transition-delay: 0.23s; }
.nav-overlay.is-open .nav-col:nth-child(1) .nav-link:nth-child(8) { transition-delay: 0.26s; }
.nav-overlay.is-open .nav-col:nth-child(2) .nav-link { transition-delay: 0.10s; }
.nav-overlay.is-open .nav-col:nth-child(2) .nav-link:nth-child(2) { transition-delay: 0.13s; }
.nav-overlay.is-open .nav-col:nth-child(2) .nav-link:nth-child(3) { transition-delay: 0.16s; }
.nav-overlay.is-open .nav-col:nth-child(2) .nav-link:nth-child(4) { transition-delay: 0.19s; }
.nav-overlay.is-open .nav-col:nth-child(2) .nav-link:nth-child(5) { transition-delay: 0.22s; }
.nav-overlay.is-open .nav-col:nth-child(3) .nav-link { transition-delay: 0.15s; }
.nav-overlay.is-open .nav-col:nth-child(3) .nav-link:nth-child(2) { transition-delay: 0.18s; }
.nav-overlay.is-open .nav-col:nth-child(3) .nav-link:nth-child(3) { transition-delay: 0.21s; }
.nav-overlay.is-open .nav-col:nth-child(3) .nav-link:nth-child(4) { transition-delay: 0.24s; }

/* Hover state */
.nav-overlay .nav-link:hover {
  color: var(--color-brass);
  transform: translateX(4px);
}

/* Tertiary column — slightly muted */
.nav-col--tertiary .nav-link {
  font-size: clamp(0.875rem, 2vw, 1.1rem) !important;
  color: var(--color-muted);
}
.nav-col--tertiary .nav-link:hover {
  color: var(--color-brass);
}

/* Footer */
.nav-overlay__footer {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--color-border-light);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .nav-overlay__footer {
    padding: 1.5rem 2.5rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .nav-overlay__footer { padding: 1.5rem 4rem; }
}

/* === DESKTOP HEADER ENHANCEMENTS === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--color-ivory);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .site-header__inner { padding: 1.25rem 2.5rem; }
}
@media (min-width: 1024px) {
  .site-header__inner { padding: 1.25rem 4rem; }
}
.header-menu-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.header-menu-btn__lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.header-menu-btn__lines span {
  display: block;
  height: 1px;
  background: var(--color-foreground);
  transition: all 0.3s ease;
}
.header-menu-btn__lines span:first-child { width: 20px; }
.header-menu-btn__lines span:last-child { width: 28px; }
.header-menu-btn:hover .header-menu-btn__lines span {
  background: var(--color-brass);
}
.header-menu-btn:hover .header-menu-btn__lines span:first-child {
  width: 28px;
}
.header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .header-logo { font-size: 1.25rem; }
}
.header-logo a {
  color: var(--color-foreground);
  transition: color 0.3s ease;
  text-decoration: none;
}
.header-logo a:hover {
  color: var(--color-brass);
}
.header-utils {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .header-utils { gap: 1.5rem; }
}
.header-utils a {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}
.header-utils a:hover {
  color: var(--color-brass);
}
/* Subtle underline on hover for desktop nav links */
@media (min-width: 768px) {
  .header-utils a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-brass);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .header-utils a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.header-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-brass);
  color: white;
  font-size: 9px;
  font-weight: 600;
  margin-left: 4px;
}
.brass-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-light) 15%, var(--color-border-light) 85%, transparent);
}




/* === MOBILE/DESKTOP VISIBILITY === */
.nav-desktop-only { display: none; }
.nav-mobile-only { display: block; width: 100%; }
@media (min-width: 768px) {
  .nav-desktop-only { display: grid; }
  .nav-mobile-only { display: none; }
}

/* === MOBILE ACCORDION NAVIGATION === */
.nav-overlay__accordion {
  padding: 1rem 0;
}
.nav-accordion {
  border-bottom: 1px solid var(--color-border-light);
}
.nav-accordion:first-child {
  border-top: 1px solid var(--color-border-light);
}
.nav-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-accordion__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--color-foreground);
}
.nav-accordion__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--color-brass);
  transition: transform 0.3s ease;
}
.nav-accordion__icon-v {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
/* Rotate the vertical line to hidden when open */
.nav-accordion.is-open .nav-accordion__icon-v {
  transform: rotate(90deg);
  opacity: 0;
}

/* Panel — uses max-height for reliable collapse */
.nav-accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-accordion.is-open .nav-accordion__panel {
  max-height: 500px;
}
.nav-accordion__panel-inner {
  padding: 0 0 1rem 0;
}
/* Links inside panel */
.nav-accordion__panel-inner a {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-muted);
  text-decoration: none;
  padding: 0.5rem 0 0.5rem 0.75rem;
  border-left: 1px solid var(--color-border-light);
  margin-left: 0.25rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.nav-accordion__panel-inner a:first-child {
  padding-top: 0.25rem;
}
.nav-accordion__panel-inner a:hover,
.nav-accordion__panel-inner a:active {
  color: var(--color-brass);
  border-left-color: var(--color-brass);
}





/* === HERO SECTION === */
.hero {
  position: relative;
  width: 100%;
  padding-top: var(--header-height);
}

.hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero__media {
    aspect-ratio: 21/9;
  }
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2), transparent);
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 1.5rem;
}

@media (min-width: 768px) {
  .hero__content {
    padding: 4rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero__content {
    padding: 5rem 4rem;
  }
}

.hero__text {
  max-width: 640px;
}

.hero__label {
  color: rgba(255,255,255,0.6);
}

.hero__title {
  font-size: clamp(1.75rem, 5vw, 3.75rem);
  color: white;
  margin-top: 1rem;
}

.hero__desc {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero__desc {
    font-size: 1rem;
  }
}

.hero__cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.75rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.hero__cta:hover {
  background: white;
  color: var(--color-foreground);
}

/* === VALUE STRIP === */
.value-strip {
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 1.25rem 0;
}

.value-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .value-strip__inner {
    gap: 2rem;
  }
}

.value-strip__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.value-strip__icon {
  color: var(--color-brass);
  font-size: 0.8125rem;
}

.value-strip__text {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

/* === CATEGORY GRID === */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.category-card {
  position: relative;
  display: block;
  overflow: hidden;
}

.category-card__media {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease-out;
}

.category-card:hover .category-card__media img {
  transform: scale(1.05);
}

.category-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent, transparent);
}

.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .category-card__content {
    padding: 2rem;
  }
}

.category-card__label {
  color: rgba(255,255,255,0.6);
}

.category-card__title {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  color: white;
  margin-top: 0.5rem;
}

.category-card__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color 0.5s ease;
}

.category-card:hover .category-card__link {
  border-color: white;
}

/* === PRODUCT CAROUSEL === */
.product-carousel__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .product-carousel__header {
    margin-bottom: 3.5rem;
  }
}

.product-carousel__nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-carousel__nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.product-carousel__nav-btn:hover {
  border-color: var(--color-brass);
  color: var(--color-brass);
}

.product-carousel__nav-btn svg {
  width: 16px;
  height: 16px;
}

.product-carousel__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 1rem;
}

.product-carousel__track::-webkit-scrollbar {
  display: none;
}

.product-carousel__view-all {
  display: none;
}

@media (min-width: 768px) {
  .product-carousel__view-all {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-brass);
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
    padding-bottom: 2px;
    transition: color 0.5s ease;
  }

  .product-carousel__view-all:hover {
    color: var(--color-foreground);
  }
}

/* === PRODUCT CARD === */
.product-card {
  min-width: 260px;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .product-card {
    min-width: 280px;
  }
}

@media (min-width: 1024px) {
  .product-card {
    min-width: 300px;
  }
}

.product-card a {
  display: block;
}

.product-card__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--color-cream);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease-out;
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__info {
  margin-top: 1rem;
}

.product-card__title {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-foreground);
  transition: color 0.5s ease;
}

.product-card:hover .product-card__title {
  color: var(--color-brass);
}

.product-card__price {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

/* === EDITORIAL BREAK (Dark Section) === */
.editorial-break {
  background: var(--color-charcoal);
  color: white;
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .editorial-break {
    padding: 8rem 0;
  }
}

.editorial-break__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .editorial-break__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.editorial-break .editorial-label {
  color: rgba(255,255,255,0.4);
}

.editorial-break h3 {
  color: white;
}

.editorial-break p {
  color: rgba(255,255,255,0.6);
}

.patina-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .patina-timeline {
    gap: 1rem;
  }
}

.patina-timeline__item {
  text-align: center;
}

.patina-timeline__circle {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0.75rem;
}

.patina-timeline__label {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .patina-timeline__label {
    font-size: 0.75rem;
  }
}

/* === FINISHES SECTION === */
.finishes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .finishes-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
  }
}

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

.finish-item__swatch {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

@media (min-width: 768px) {
  .finish-item__swatch {
    width: 5rem;
    height: 5rem;
  }
}

.finish-item__name {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.finish-item__desc {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* === ARTISAN STORY SECTION === */
.artisan-section {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .artisan-section {
    grid-template-columns: 1fr 1fr;
  }
}

.artisan-section__media {
  aspect-ratio: 4/5;
  overflow: hidden;
}

@media (min-width: 768px) {
  .artisan-section__media {
    aspect-ratio: auto;
    height: 100%;
  }
}

.artisan-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artisan-section__content {
  display: flex;
  align-items: center;
  padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
  .artisan-section__content {
    padding: 0 2.5rem;
  }
}

@media (min-width: 1024px) {
  .artisan-section__content {
    padding: 0 4rem;
  }
}

.artisan-section__inner {
  max-width: 420px;
}

.artisan-quote {
  margin-top: 2rem;
  padding: 1.25rem;
  border-left: 2px solid rgba(184, 134, 11, 0.4);
}

.artisan-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--color-muted);
}

.artisan-quote cite {
  display: block;
  font-size: 0.75rem;
  color: var(--color-muted);
  font-style: normal;
  margin-top: 0.75rem;
}

.story-link {
  display: inline-block;
  margin-top: 2.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-brass);
  border-bottom: 1px solid rgba(184, 134, 11, 0.3);
  padding-bottom: 4px;
  transition: color 0.5s ease;
}

.story-link:hover {
  color: var(--color-foreground);
}

/* === TESTIMONIALS === */
.testimonial-section {
  text-align: center;
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(45, 42, 38, 0.9);
  max-width: 720px;
  margin: 0 auto;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial__author {
  margin-top: 2rem;
}

.testimonial__author-name {
  font-size: 0.875rem;
  font-weight: 500;
}

.testimonial__author-location {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.testimonial__author-project {
  display: block;
  font-size: 0.75rem;
  color: var(--color-brass);
  margin-top: 0.25rem;
}

.testimonial__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.testimonial__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all 0.5s ease;
  border: none;
  padding: 0;
}

.testimonial__dot.is-active {
  background: var(--color-brass);
  width: 24px;
  border-radius: 4px;
}

/* === FAQ / ACCORDION === */
.accordion-item {
  border-bottom: 1px solid var(--color-border-light);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: left;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .accordion-trigger {
    font-size: 1rem;
  }
}

.accordion-trigger:hover,
.accordion-trigger[aria-expanded="true"] {
  color: var(--color-brass);
}

.accordion-trigger__icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion-trigger__icon::before,
.accordion-trigger__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transition: transform 0.3s ease;
}

.accordion-trigger__icon::before {
  width: 12px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.accordion-trigger__icon::after {
  width: 1px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.accordion-trigger[aria-expanded="true"] .accordion-trigger__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion-content.is-open {
  max-height: 500px;
}

.accordion-content__inner {
  padding-bottom: 1.25rem;
  padding-right: 2rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.8;
}

/* === CTA SECTION === */
.cta-section {
  text-align: center;
  padding: 5rem 0;
  border-top: 1px solid var(--color-border-light);
}

@media (min-width: 768px) {
  .cta-section {
    padding: 8rem 0;
  }
}

.cta-section h3 {
  max-width: 720px;
  margin: 0 auto;
}

.cta-section p {
  max-width: 420px;
  margin: 1.5rem auto 0;
}

.cta-btn {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.875rem 2rem;
  background: var(--color-foreground);
  color: var(--color-ivory);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.5s ease;
}

.cta-btn:hover {
  background: var(--color-brass);
}

/* === PRODUCT PAGE TRUST BADGES === */

.product-trust-badge svg {
  flex-shrink: 0;
  color: var(--color-brass);
}
@media (max-width: 768px) {
  .product-trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

/* === PRODUCT ACCORDIONS === */
.product-accordions {
  margin-top: 2.5rem;
}

/* === RELATED PRODUCTS === */
.related-products {
  border-top: 1px solid var(--color-border-light);
}
.related-products__header {
  margin-bottom: 2.5rem;
}
.related-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.related-product-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
.related-product-card__image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f5f3f0;
  margin-bottom: 1rem;
}
.related-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.related-product-card:hover .related-product-card__image img {
  transform: scale(1.03);
}
.related-product-card__info h3 {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}
.related-product-card__info span {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--color-muted);
}
@media (max-width: 768px) {
  .related-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* === ARTISAN STORY BANNER === */
.product-artisan-banner {
  border-top: 1px solid var(--color-border-light);
  text-align: center;
}
.product-artisan-banner__content {
  max-width: 600px;
  margin: 0 auto;
}
.product-artisan-banner__content p {
  margin-left: auto;
  margin-right: auto;
}


/* === FOOTER === */
.footer-newsletter {
  background: var(--color-charcoal);
  color: white;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .footer-newsletter {
    padding: 5rem 0;
  }
}

.footer-newsletter__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-newsletter__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-newsletter .editorial-label {
  color: rgba(255,255,255,0.4);
}

.footer-newsletter h3 {
  color: white;
}

.footer-newsletter p {
  color: rgba(255,255,255,0.5);
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: white;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.3);
}

.newsletter-form input:focus {
  border-color: var(--color-brass);
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  transition: all 0.5s ease;
}

.newsletter-form button:hover {
  background: white;
  color: var(--color-charcoal);
}

.footer-main {
  border-top: 1px solid var(--color-border-light);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .footer-main {
    padding: 5rem 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand p {
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  font-size: 0.75rem;
  color: var(--color-muted);
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--color-brass);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-foreground);
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  display: inline-block;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col nav a {
  font-size: 0.875rem;
  color: var(--color-muted);
  transition: color 0.5s ease;
}

.footer-col nav a:hover {
  color: var(--color-foreground);
}

.footer-trust {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-light);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-trust {
    gap: 2.5rem;
    margin-top: 4rem;
  }
}

.footer-trust span {
  font-size: 0.75rem;
  color: var(--color-muted);
  letter-spacing: 0.02em;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-bottom span,
.footer-bottom a {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.footer-bottom a:hover {
  color: var(--color-foreground);
}

/* === PRODUCT PAGE === */
.product-page {
  padding-top: calc(var(--header-height) + 1.5rem);
}
.product-info__breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 2rem;
}
.product-info__breadcrumb a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.product-info__breadcrumb a:hover {
  color: var(--color-brass);
}
.product-info__breadcrumb span {
  margin: 0 0.5rem;
}
.product-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .product-page__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}
@media (min-width: 1200px) {
  .product-page__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
  }
}
/* Gallery */
.product-gallery__main {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f3f0;
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery__thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  overflow-x: auto;
}
.product-gallery__thumb {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border: 1px solid transparent;
  opacity: 0.5;
  transition: opacity 0.3s, border-color 0.3s;
  cursor: pointer;
  overflow: hidden;
}
.product-gallery__thumb:hover,
.product-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--color-brass);
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Product Info */
.product-info__title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.product-info__price {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-foreground);
  margin-bottom: 1.5rem;
}
.product-info__compare-price {
  text-decoration: line-through;
  color: var(--color-muted);
  margin-left: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 400;
}
.product-info__description {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 1.5rem;
}
.product-info__description p {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-muted);
}
/* Variant selector */
.product-info__variant-group {
  margin-bottom: 1.5rem;
}
.product-info__variant-group label {
  display: block;
  margin-bottom: 0.75rem;
}
.product-info__variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.variant-option {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-border);
  font-size: 0.8125rem;
  font-family: var(--font-sans);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.variant-option:hover {
  border-color: var(--color-foreground);
}
.variant-option.is-selected {
  border-color: var(--color-brass);
}
/* Add to Cart form */
.product-form {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.product-form__row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}
.product-form__quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
}
.product-form__qty-btn {
  width: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-foreground);
}
.product-form__qty-input {
  width: 40px;
  text-align: center;
  border: none;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  background: transparent;
  -moz-appearance: textfield;
}
.product-form__qty-input::-webkit-outer-spin-button,
.product-form__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.product-form__add-btn {
  flex: 1;
  height: 52px;
  background: var(--color-foreground);
  color: var(--color-ivory);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, opacity 0.3s;
}
.product-form__add-btn:hover {
  background: var(--color-brass);
}
.product-form__add-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
/* Trust badges (inline row) */
.product-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 1rem 0 1.5rem;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 1.5rem;
}
.product-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}
.product-trust-item svg {
  color: var(--color-brass);
  flex-shrink: 0;
}
/* Accordions */
.product-accordions {
  border-top: 1px solid var(--color-border-light);
}
.accordion-item {
  border-bottom: 1px solid var(--color-border-light);
}
.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-foreground);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.accordion-trigger__icon {
  position: relative;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.accordion-trigger__icon::before,
.accordion-trigger__icon::after {
  content: '';
  position: absolute;
  background: var(--color-foreground);
  transition: transform 0.3s ease;
}
.accordion-trigger__icon::before {
  top: 50%;
  left: 0;
  width: 12px;
  height: 1px;
  transform: translateY(-50%);
}
.accordion-trigger__icon::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 12px;
  transform: translateX(-50%);
}
.accordion-trigger[aria-expanded="true"] .accordion-trigger__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.accordion-content.is-open {
  max-height: 500px;
}
.accordion-content__inner {
  padding: 0 0 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.8;
  color: var(--color-muted);
}
.accordion-content__inner p {
  margin-bottom: 0.5rem;
}
.accordion-content__inner ul {
  padding-left: 1rem;
  margin: 0.5rem 0;
}
.accordion-content__inner li {
  margin-bottom: 0.375rem;
}
/* Related Products */
.related-products {
  border-top: 1px solid var(--color-border-light);
  padding-top: 4rem;
}
.related-products__header {
  margin-bottom: 2.5rem;
}
.related-products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .related-products__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.related-product-card {
  text-decoration: none;
  color: var(--color-foreground);
}
.related-product-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f3f0;
  margin-bottom: 0.75rem;
}
.related-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.related-product-card:hover .related-product-card__image img {
  transform: scale(1.04);
}
.related-product-card__info h3 {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}
.related-product-card__info span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--color-muted);
}
/* Artisan Banner */
.product-artisan-banner {
  background: #f5f3f0;
  text-align: center;
  padding: 5rem 2rem;
}
.product-artisan-banner__content {
  max-width: 500px;
  margin: 0 auto;
}
.product-artisan-banner__link {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-foreground);
  padding-bottom: 2px;
  color: var(--color-foreground);
  text-decoration: none;
}
.product-artisan-banner__link:hover {
  color: var(--color-brass);
  border-color: var(--color-brass);
}


/* Collection page title fix - ensure readable contrast */
.collection-header h1,
.collection-header h2,
.template-collection h1 {
  color: var(--color-foreground) !important;
}
.collection-header .editorial-label {
  color: var(--color-muted);
}
.collection-header p {
  color: var(--color-muted);
  font-size: 0.9375rem;
}

/* === COLLECTION PAGE === */
.collection-hero {
  padding-top: calc(var(--header-height) + 2rem);
}

.collection-hero__inner {
  max-width: 640px;
}

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

@media (min-width: 768px) {
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .collection-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* === FINISHES SHOWCASE IMAGE === */
.finishes-hero {
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
  margin-bottom: 3rem;
}

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

/* === PAGE TEMPLATE (Story, Trade, etc.) === */
.page-hero {
  padding-top: calc(var(--header-height) + 2rem);
}

.page-content {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-muted);
}
.page-content h2, .page-content h3 {
  font-family: var(--font-display);
  color: var(--color-foreground);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.page-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
}
.page-content h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
}
.page-content p {
  margin-bottom: 1.25rem;
}
.page-content ul, .page-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.25rem;
}
.page-content li {
  margin-bottom: 0.5rem;
}
.page-content strong {
  color: var(--color-foreground);
  font-weight: 500;
}
.page-content a {
  color: var(--color-brass);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.page-content p {
  margin-bottom: 1.5rem;
}

/* === RESPONSIVE HELPERS === */
.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: block;
  }
}

@media (min-width: 1024px) {
  .hide-tablet {
    display: block;
  }
}

.text-center { text-align: center; }
.text-white { color: white; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

/* === POLICY PAGES — Override Shopify's built-in policy-*.css === */
.shopify-policy__container {
  max-width: 720px !important;
  margin: 0 auto !important;
  padding: calc(var(--header-height) + 2rem) 2rem 4rem !important;
}
@media (min-width: 768px) {
  .shopify-policy__container {
    padding: calc(var(--header-height) + 3rem) 2.5rem 5rem !important;
  }
}
.shopify-policy__title {
  text-align: left !important;
  margin-bottom: 2rem !important;
  padding-bottom: 1.5rem !important;
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
}
.shopify-policy__title h1 {
  font-family: var(--font-serif) !important;
  font-size: clamp(1.8rem, 3vw, 2.4rem) !important;
  font-weight: 300 !important;
  color: var(--color-foreground) !important;
  line-height: 1.2 !important;
  margin: 0 !important;
}
.shopify-policy__body,
.shopify-policy__body .rte {
  font-family: var(--font-sans) !important;
  font-size: 0.9rem !important;
  color: var(--color-muted) !important;
  line-height: 1.8 !important;
}
.shopify-policy__body h1,
.shopify-policy__body h2,
.shopify-policy__body .rte h1,
.shopify-policy__body .rte h2 {
  font-family: var(--font-serif) !important;
  font-size: clamp(1.15rem, 2vw, 1.5rem) !important;
  font-weight: 400 !important;
  color: var(--color-foreground) !important;
  line-height: 1.3 !important;
  margin: 2.5rem 0 1rem !important;
}
.shopify-policy__body h3,
.shopify-policy__body .rte h3 {
  font-family: var(--font-sans) !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: var(--color-foreground) !important;
  margin: 2rem 0 0.75rem !important;
}
.shopify-policy__body p,
.shopify-policy__body .rte p {
  margin-bottom: 1rem !important;
}
.shopify-policy__body ul,
.shopify-policy__body ol,
.shopify-policy__body .rte ul,
.shopify-policy__body .rte ol {
  padding-left: 1.25rem !important;
  margin-bottom: 1.5rem !important;
}
.shopify-policy__body li,
.shopify-policy__body .rte li {
  margin-bottom: 0.5rem !important;
  line-height: 1.7 !important;
}
.shopify-policy__body a,
.shopify-policy__body .rte a {
  color: var(--color-brass) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
}
.shopify-policy__body a:hover,
.shopify-policy__body .rte a:hover {
  color: var(--color-foreground) !important;
}
.shopify-policy__body strong,
.shopify-policy__body .rte strong {
  color: var(--color-foreground) !important;
  font-weight: 500 !important;
}

/* cache-bust */


/* === MOBILE LAYOUT FIXES === */

/* Footer brand title */
.footer-brand__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-foreground);
  margin-bottom: 0.75rem;
}

/* Value strip mobile: 2-column centered grid */
@media (max-width: 767px) {
  .value-strip__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
    justify-items: start;
  }
  .value-strip__item {
    gap: 0.5rem;
  }
  .value-strip__text {
    font-size: 0.7rem;
  }

  /* Hero mobile adjustments */
  .hero__media {
    aspect-ratio: 3/4;
  }
  .hero__content {
    padding: 1.5rem 1.25rem;
  }
  .hero__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.2;
  }
  .hero__desc {
    font-size: 0.8rem;
    margin-top: 0.75rem;
    max-width: 300px;
  }
  .hero__cta {
    margin-top: 1.25rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.6875rem;
  }

  /* Footer mobile: tighter spacing */
  .footer-main {
    padding: 2.5rem 0 1.5rem;
  }
  .footer-grid {
    gap: 2rem;
  }
  .footer-brand__title {
    font-size: 1.25rem;
  }
  .footer-trust {
    margin-top: 2rem;
    padding-top: 1.25rem;
    gap: 0.75rem 1.5rem;
  }
  .footer-trust span {
    font-size: 0.65rem;
  }
  .footer-bottom {
    margin-top: 1rem;
    padding-top: 1rem;
  }
  .footer-col h4 {
    margin-bottom: 0.75rem;
  }
  .footer-col nav {
    gap: 0.5rem;
  }
  .footer-col nav a {
    font-size: 0.8rem;
  }
}


/* === JOURNAL / BLOG STYLES === */

/* Blog listing - responsive grid */
@media (min-width: 768px) {
  .journal-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .journal-card {
    grid-template-columns: 1fr !important;
  }
  .journal-featured div:first-child img:hover,
  .journal-card div:first-child img:hover {
    transform: scale(1.03);
  }
}

/* Article body typography */
.article-body {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-foreground);
}
.article-body p {
  margin-bottom: 1.5rem;
}
.article-body .article-intro {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-muted);
  font-style: italic;
  margin-bottom: 2.5rem;
}
.article-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}
.article-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-weight: 400;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.article-body blockquote {
  margin: 2.5rem 0;
  padding: 2rem 0 2rem 2rem;
  border-left: 2px solid var(--color-brass);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-foreground);
}
.article-body blockquote p {
  margin-bottom: 0.5rem;
}
.article-body blockquote cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  margin-top: 0.75rem;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.8125rem;
}
.article-body table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-bottom: 2px solid var(--color-foreground);
}
.article-body table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border-light);
}
.article-body strong {
  font-weight: 600;
}
.article-body a {
  color: var(--color-brass);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.article-body a:hover {
  color: var(--color-foreground);
}
.article-body .article-cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-light);
}
.article-body .article-cta a {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--color-foreground);
  color: var(--color-background);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.5s ease;
}
.article-body .article-cta a:hover {
  background: var(--color-brass);
  color: white;
}

/* Mobile adjustments for article hero */
@media (max-width: 767px) {
  .journal-featured > div:first-child {
    aspect-ratio: 16/9 !important;
  }
}


/* === FIX: Ensure product images always render === */
:root {
  --header-height: 60px;
}
.collection-grid .product-card__media img,
.product-card img,
.product-gallery img,
.product-gallery__main img {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
/* Ensure product cards themselves are visible even if fade-in hasn't triggered */
.collection-grid .product-card,
.collection-grid .stagger-child {
  opacity: 1 !important;
  transform: none !important;
}
/* Fix collection page spacing with defined header-height */
.collection-hero {
  padding-top: calc(var(--header-height) + 2rem);
}

/* === SHOP LANDING PAGE === */
.shop-landing {
  padding-top: calc(var(--header-height) + 2rem);
}
.shop-landing__hero {
  text-align: center;
  padding: 4rem 2rem 5rem;
  max-width: 600px;
  margin: 0 auto;
}
.shop-landing__hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-top: 0.5rem;
}
.shop-landing__hero p {
  color: var(--color-muted);
  margin-top: 1rem;
  line-height: 1.7;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
}
.shop-landing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}
.shop-landing__card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #2a2520;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
}
.shop-landing__card--large {
  grid-column: span 2;
  aspect-ratio: 21/9;
}
.shop-landing__card-overlay {
  position: relative;
  z-index: 2;
  padding: 2rem 2.5rem;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  padding-top: 4rem;
}
.shop-landing__card-overlay .editorial-label {
  color: rgba(255,255,255,0.7);
}
.shop-landing__card-overlay h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  margin-top: 0.25rem;
  color: #fff;
}
.shop-landing__card-cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.shop-landing__card:hover .shop-landing__card-cta {
  opacity: 1;
  transform: translateY(0);
}
.shop-landing__footer {
  text-align: center;
  padding: 4rem 2rem 6rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-muted);
}
.shop-landing__footer a {
  color: var(--color-brass);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 768px) {
  .shop-landing__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .shop-landing__card--large {
    grid-column: span 1;
    aspect-ratio: 16/9;
  }
  .shop-landing__card {
    aspect-ratio: 16/10;
  }
  .shop-landing__card-cta {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ensure collection hero text is always visible */
.collection-hero .collection-hero__inner {
  opacity: 1 !important;
  transform: none !important;
}
.collection-hero h1 {
  color: var(--color-foreground) !important;
  opacity: 1 !important;
}


/* === CONTACT PAGE === */
.contact-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.contact-hero {
  text-align: center;
  margin-bottom: 4rem;
  padding-top: calc(var(--header-height) + 1rem);
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--color-foreground);
  margin: 0.75rem 0 1rem;
  line-height: 1.2;
}
.contact-subtitle {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
  }
}
.contact-form-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-foreground);
  margin-bottom: 1.5rem;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-form .form-group {
  margin-bottom: 1.25rem;
}
.contact-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-foreground);
  background: var(--color-surface);
  border: 1px solid rgba(45, 42, 38, 0.12);
  border-radius: 2px;
  transition: border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-brass);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-muted);
  opacity: 0.7;
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6560' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.contact-submit {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: var(--color-foreground);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  margin-top: 0.5rem;
}
.contact-submit:hover {
  opacity: 0.85;
}
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info-card {
  padding: 1.5rem;
  border: 1px solid rgba(45, 42, 38, 0.08);
  background: var(--color-surface);
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-foreground);
  margin-bottom: 0.75rem;
}
.contact-info-card p {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.info-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
}
.info-item:last-child {
  margin-bottom: 0;
}
.info-item .info-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}
.info-item a,
.info-item span:not(.info-label) {
  font-size: 0.9375rem;
  color: var(--color-foreground);
}
.info-item a {
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 42, 38, 0.2);
  transition: border-color 0.2s ease;
}
.info-item a:hover {
  border-color: var(--color-brass);
}
.contact-link {
  font-size: 0.875rem;
  color: var(--color-foreground);
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 42, 38, 0.2);
  transition: border-color 0.2s ease;
}
.contact-link:hover {
  border-color: var(--color-brass);
}


/* === PRODUCT GALLERY MOBILE SAFETY — Force visible === */
.product-gallery,
.product-gallery__main,
.product-gallery__main img,
.product-info {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* === FOOTER COLUMN TOGGLE (Mobile Accordion) === */
.footer-col__toggle {
  display: none; /* Hidden on desktop — headings show normally */
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col__links a {
  font-size: 0.875rem;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col__links a:hover {
  color: var(--color-foreground);
}

/* Desktop: show h4 directly, hide toggle button */
@media (min-width: 769px) {
  .footer-col__toggle {
    display: none !important;
  }
  .footer-col h4 {
    display: block;
    margin-bottom: 1.25rem;
  }
  .footer-col__links {
    display: flex !important;
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
  }
}

/* Mobile: accordion behavior */
@media (max-width: 768px) {
  .footer-col {
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 0;
  }

  .footer-col__toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    background: none;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .footer-col__toggle h4 {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-foreground);
  }

  .footer-col__icon {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-muted);
    transition: transform 0.3s ease;
    line-height: 1;
  }

  .footer-col__links {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
    padding: 0;
  }

  .footer-col.is-open .footer-col__links {
    max-height: 300px;
    opacity: 1;
    padding-bottom: 1rem;
  }

  .footer-col.is-open .footer-col__icon {
    transform: rotate(45deg);
  }

  /* Hide the standalone h4 on mobile (toggle button shows it instead) */
  .footer-col > h4 {
    display: none !important;
  }
}

/* ============================================
   MOBILE RESPONSIVE FIXES — Critical Layout
   Using actual class names from HTML inspection
   ============================================ */

@media (max-width: 768px) {
  
  /* === FIX 0: HOMEPAGE GRIDS === */
  .category-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .category-card {
    min-height: 220px !important;
    width: 100% !important;
    position: relative !important;
  }
  .category-card__media {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }
  .category-card__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .editorial-break__grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .artisan-section {
    grid-template-columns: 1fr !important;
  }
  .artisan-section__media {
    aspect-ratio: 16/10 !important;
    min-height: 250px !important;
  }
  
  /* === FIX 1: PRODUCT PAGE — Mobile Gallery + Add to Cart === */
  .product-page__grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  
  .product-gallery {
    display: block !important;
    width: 100% !important;
    min-height: 280px !important;
    margin-bottom: 1rem !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    order: 1 !important;
  }
  
  .product-gallery__main {
    display: block !important;
    width: 100% !important;
    min-height: 280px !important;
    aspect-ratio: 1 !important;
    overflow: hidden !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .product-gallery__main img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 280px !important;
    object-fit: cover !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  
  .product-gallery__thumbs {
    display: flex !important;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
  }
  
  .product-gallery__thumb {
    width: 60px !important;
    height: 60px !important;
    flex-shrink: 0;
    opacity: 0.6 !important;
  }
  
  .product-gallery__thumb.is-active {
    opacity: 1 !important;
  }
  
  .product-gallery__thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }
  
  .product-info {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    order: 2 !important;
  }
  
  .product-info__title {
    font-size: 1.6rem !important;
    line-height: 1.25 !important;
    word-wrap: break-word;
  }
  
  .product-info__breadcrumb {
    font-size: 0.6875rem !important;
    flex-wrap: wrap !important;
    padding: 0.5rem 0 !important;
  }
  
  .product-trust-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
    font-size: 0.75rem !important;
  }
  
  .product-info__variant-options {
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
  }
  
  .product-info__variant-options button,
  .product-info__variant-options label {
    flex: 0 0 auto !important;
    padding: 0.6rem 1rem !important;
    font-size: 0.8rem !important;
  }
  
  .product-form {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  
  .product-form__row {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  
  .product-form__quantity {
    width: 100% !important;
    justify-content: center !important;
    height: 48px !important;
    border: 1px solid var(--color-border) !important;
  }
  
  .product-form__qty-btn {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.25rem !important;
  }
  
  .product-form__qty-input {
    width: 50px !important;
    font-size: 1rem !important;
    height: 48px !important;
  }
  
  .product-form__add-btn {
    width: 100% !important;
    height: 56px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    background: var(--color-foreground) !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
  }
  
  .product-accordions {
    padding: 0 !important;
    margin-top: 1.5rem !important;
  }
  
  .related-products__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }
  
  .product-artisan-banner {
    padding: 3rem 1.5rem !important;
  }

  /* === FIX 2: SHOP LANDING PAGE === */
  .shop-landing__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 0 1rem !important;
  }
  
  .shop-landing__card {
    grid-column: span 1 !important;
    min-height: 250px !important;
    width: 100% !important;
  }
  
  .shop-landing__card--large {
    grid-column: span 1 !important;
    min-height: 300px !important;
  }
  
  .shop-landing__card-overlay {
    padding: 1.25rem !important;
  }
  
  .shop-landing__card-overlay h3 {
    font-size: 1.5rem !important;
  }
  
  .shop-landing__card-cta {
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .shop-landing__hero {
    padding: 3rem 1.5rem !important;
  }
  
  .shop-landing__hero h1 {
    font-size: 2.5rem !important;
  }
  
  .shop-landing__footer {
    padding: 2rem 1.5rem !important;
  }

  /* === FIX 3: CONTACT PAGE === */
  .contact-grid {
    display: block !important;
    grid-template-columns: 1fr !important;
    padding: 0 1.5rem !important;
  }
  
  .contact-form-wrapper {
    width: 100% !important;
    margin-bottom: 2.5rem;
  }
  
  .contact-info-wrapper {
    width: 100% !important;
  }
  
  .form-row {
    display: block !important;
    grid-template-columns: 1fr !important;
  }
  
  .form-row .form-group {
    margin-bottom: 1.25rem;
    width: 100% !important;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
  
  .contact-submit {
    width: 100% !important;
  }
  
  .contact-info-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-hero {
    padding: 3rem 1.5rem !important;
  }
  
  .contact-title {
    font-size: 2rem !important;
  }

  /* === NEWSLETTER SECTION === */
  .newsletter-section .newsletter-inner,
  [class*="newsletter"] [class*="inner"] {
    display: block !important;
    text-align: center;
  }
  
  .newsletter-section .form-inline,
  [class*="newsletter"] .form-inline {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  
  .newsletter-section input[type="email"],
  [class*="newsletter"] input[type="email"] {
    width: 100% !important;
  }
  
  .newsletter-section button[type="submit"],
  [class*="newsletter"] button[type="submit"] {
    width: 100% !important;
  }

  /* === FOOTER MOBILE === */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  
  .footer-brand {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border-light);
    text-align: center;
  }
  
  .footer-badges {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 1rem !important;
  }
  
  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1rem !important;
  }
}

/* Smaller mobile (480px and below) */
@media (max-width: 480px) {
  .product-trust-row {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
  
  .related-products__grid {
    grid-template-columns: 1fr 1fr !important;
  }
  
  .shop-landing__card {
    min-height: 220px !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: left;
  }
}


/* === MOBILE HOMEPAGE FIXES === */
@media (max-width: 768px) {
  /* Stack newsletter signup vertically on mobile */
  .newsletter-signup__inner {
    display: block !important;
    text-align: center !important;
    padding: 3rem 1.5rem !important;
  }
  
  .newsletter-signup__content {
    margin-bottom: 1.5rem !important;
  }
  
  .newsletter-signup__form {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  
  .newsletter-signup__input {
    width: 100% !important;
    min-width: unset !important;
  }
  
  .newsletter-signup__btn {
    width: 100% !important;
    padding: 0.9rem 1.5rem !important;
  }
  
  .newsletter-signup__note {
    text-align: center !important;
  }
  
  /* Improve value strip on mobile */
  .value-strip {
    padding: 0.6rem 0.75rem !important;
    font-size: 0.65rem !important;
  }
  
  .value-strip span {
    font-size: 0.65rem !important;
  }
  
  /* Hide "Menu" label text on mobile (hamburger icon is enough) */
  .header-menu-btn .editorial-label {
    display: none !important;
  }
}

/* Mobile Add to Cart button - increased height for better tap target */
@media (max-width: 768px) {
  .product-form__add-btn {
    height: 56px !important;
    min-height: 56px !important;
    font-size: 0.875rem !important;
    padding: 1rem 2rem !important;
  }
}


  .footer-brand p {
    text-align: center !important;
  }
  .footer-brand .footer-social {
    justify-content: center !important;
  }
  .footer-bottom {
    text-align: center !important;
  }
  .footer-bottom p {
    text-align: center !important;
  }
  .footer-bottom .footer-legal {
    justify-content: center !important;
  }
}





/* Footer brand left-aligned on mobile to match menu headings */
@media (max-width: 768px) {
  .footer-brand {
    text-align: left !important;
    align-items: flex-start !important;
  }
  .footer-brand__title {
    text-align: left !important;
  }
  .footer-brand p {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
  }
  .footer-brand .footer-social {
    justify-content: flex-start !important;
  }
  .footer-bottom {
    text-align: center !important;
  }
  .footer-bottom .footer-legal {
    justify-content: center !important;
  }
}
