/* =============================================================
   APPALOOSA — MAIN STYLESHEET
   Moved from shared.css. Design preserved 1-to-1.

   TABLE OF CONTENTS (search by line number or by #SECTION anchor):
   - :root variables ............... ~L15
   - base / reset / typography ..... ~L25
   - announcement bar + header ..... ~L130
   - mobile nav .................... ~L290
   - hero .......................... ~L600
   - collections ................... ~L740
   - products / cards .............. ~L900
   - about / gallery / journal ..... ~L1100
   - search overlay + results ...... ~L1630
   - cart drawer ................... ~L1800
   - product modal ................. ~L1950
   - shop filter + grid ............ ~L2400
   - forms / newsletter / contact .. ~L2550
   - footer ........................ ~L2850
   - RESPONSIVE @media ............. ~L3037 (1024 / 768 / 480)

   WooCommerce styles moved to a separate file: woocommerce.css
   ============================================================= */

/* =============================================
   APPALOOSA — SHARED CSS
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f5f5f2;
  --parchment: #faf9f6;
  --cream-dark: #e8e6e0;
  --burgundy: #800000;
  --burgundy-dark: #5c0000;
  --burgundy-mid: #9a1a1a;
  --warm-gray: #b0a690;
  --text-muted: #7a6e5e;
  --border: #ddd5c0;
  --font-serif:
    "Poppins", Helvetica, sans-serif; /* FIX #1: DM Serif → Poppins */
  --font-sans: "Poppins", Helvetica, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--burgundy-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Noise texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
}

/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar {
  background: var(--burgundy);
  color: var(--parchment);
  text-align: center;
  padding: 10px 20px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index: 1001;
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 36px; /* sits below announcement bar */
  left: 0;
  right: 0;
  z-index: 1000; /* always above filter bar (900) */
  background: rgba(250, 246, 238, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition:
    transform 0.4s var(--ease-out),
    top 0.2s ease,
    box-shadow 0.3s ease;
}
.site-header.scrolled-past-bar {
  top: 0;
}
.site-header.hidden {
  transform: translateY(-100%);
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(74, 16, 16, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header-nav--left {
  justify-content: flex-start;
}

.header-nav--right {
  justify-content: flex-end;
}

/* Hide old header-icons on desktop — icons now live in header-nav--right */
.header-icons {
  display: none;
}

.header-nav > a,
.nav-dropdown > button {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy-dark);
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-nav > a:hover,
.nav-dropdown > button:hover {
  color: var(--burgundy);
}

.nav-dropdown {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: -20px;
}

.nav-dropdown-arrow {
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
  display: inline-block;
}
/* FIX #3: arrow rotates on .is-open, not on :hover */
.nav-dropdown.is-open .nav-dropdown-arrow {
  transform: rotate(-135deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0; /* FIX #1: strictly under the button, does not extend off-screen */
  right: auto;
  transform: translateY(-6px);
  background: var(--parchment);
  border: 1px solid var(--border);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  box-shadow: 0 8px 30px rgba(74, 16, 16, 0.1);
  z-index: 200;
}
/* FIX #3: show only on .is-open */
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  transition:
    color 0.2s ease,
    background 0.2s ease;
}
.dropdown-menu a:hover {
  color: var(--burgundy);
  background: var(--cream);
}

.header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-logo-text {
  font-family: "Pinyon Script", var(--font-serif), cursive;
  font-size: 32px;
  color: var(--burgundy);
  text-align: center;
  line-height: 1;
}
.header-logo-sub {
  font-family: var(--font-sans);
  font-size: 7px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 3px;
  text-align: center;
}

.header-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--burgundy-dark);
  transition: color 0.2s ease;
  position: relative;
}
.header-icon-btn:hover {
  color: var(--burgundy);
}
.header-icon-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: var(--burgundy);
  color: var(--parchment);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

/* ---- MOBILE MENU BTN ---- */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  z-index: 10;
}
.mobile-menu-btn span {
  width: 22px;
  height: 1.5px;
  background: var(--burgundy-dark);
  transition: all 0.3s ease;
  display: block;
}
.mobile-menu-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ---- MOBILE DRAWER ---- */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(74, 16, 16, 0.4);
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  background: var(--parchment);
  z-index: 995;
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-nav-header {
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--burgundy);
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10;
  transition: color 0.2s ease;
}
.mobile-nav-close:hover {
  color: var(--burgundy);
}

/* FIX #4: padding-top 40px so content is not overlapped by the close icon */
.mobile-nav-links {
  padding: 40px 0 16px;
  flex: 1;
}
.mobile-nav-links a,
.mobile-nav-links button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 24px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--burgundy-dark);
  transition:
    color 0.2s ease,
    background 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-sans);
}
.mobile-nav-links a:hover,
.mobile-nav-links button:hover {
  color: var(--burgundy);
  background: var(--cream);
}

.mobile-nav-sub {
  padding-left: 16px;
  background: var(--cream);
  display: none;
}
.mobile-nav-sub.open {
  display: block;
}
.mobile-nav-sub a {
  font-size: 10px;
  color: var(--text-muted);
  padding: 10px 24px;
}
.mobile-nav-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 24px;
}

/* ---- PAGE WRAPPER ---- */
.page-content {
  padding-top: 72px; /* header height only; announcement bar is in normal flow */
}

/* ---- CONTAINERS ---- */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.container--wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- TYPOGRAPHY UTILS ---- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--warm-gray);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.deco-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}
.deco-line::before,
.deco-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border));
}
.deco-line::after {
  background: linear-gradient(to left, transparent, var(--border));
}
.deco-spot {
  width: 6px;
  height: 6px;
  background: var(--burgundy);
  border-radius: 50%;
  opacity: 0.4;
  box-shadow:
    14px 0 0 var(--burgundy),
    -14px 0 0 var(--burgundy);
}
.view-all-link {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--burgundy);
  border-bottom: 1px solid var(--burgundy);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
  cursor: pointer;
}
.view-all-link:hover {
  opacity: 0.6;
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--burgundy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #3d0a0a;
  background-size: cover;
  background-position: center;
}
.hero-spots {
  display: none;
}
.hero-stripes {
  display: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(100, 10, 10, 0.55);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  animation: heroReveal 1.4s var(--ease-out) both;
}
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(245, 239, 224, 0.6);
  margin-bottom: 24px;
  animation: heroReveal 1.4s 0.1s var(--ease-out) both;
}
.hero-title {
  font-family: "Pinyon Script", cursive;
  font-size: clamp(5rem, 18vw, 16rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0;
  margin: 0;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
  animation: heroReveal 1.4s 0.2s var(--ease-out) both;
}
.hero-title em {
  font-style: italic;
  color: rgba(245, 239, 224, 0.75);
}
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(245, 239, 224, 0.55);
  margin-bottom: 48px;
  animation: heroReveal 1.4s 0.35s var(--ease-out) both;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 44px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy-dark);
  background: var(--parchment);
  border: none;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
  animation: heroReveal 1.4s 0.5s var(--ease-out) both;
}
.hero-btn:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.hero-btn--ghost {
  background: transparent;
  color: rgba(245, 249, 246, 0.75);
  border: 1px solid rgba(245, 249, 246, 0.35);
}
.hero-btn--ghost:hover {
  background: rgba(245, 249, 246, 0.08);
  color: var(--parchment);
  transform: translateY(-2px);
}
.hero-content .hero-btn + .hero-btn {
  margin-left: 16px;
}
.hero-btn-arrow {
  width: 16px;
  height: 16px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.hero-btn:hover .hero-btn-arrow {
  transform: rotate(45deg) translate(2px, -2px);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: heroReveal 1.4s 0.8s var(--ease-out) both;
}
.hero-scroll span {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.4);
  font-family: var(--font-sans);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245, 239, 224, 0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ---- COLLECTIONS GRID ---- */
.collections-section {
  padding: 100px 0;
  background: var(--cream);
}
.collections-header {
  text-align: center;
  margin-bottom: 60px;
}
.collections-header .section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.collection-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-dark);
}
.collection-card--wide {
  grid-column: span 2;
  aspect-ratio: auto;
}
.collection-card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.collection-card--wide .collection-card-placeholder {
  min-height: 500px;
}
.collection-card-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--cream-dark) 0%,
    var(--cream) 50%,
    var(--cream-dark) 100%
  );
}
.collection-card-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse 45px 30px at 20% 30%,
      rgba(107, 26, 26, 0.08) 0%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 22px 38px at 65% 20%,
      rgba(107, 26, 26, 0.06) 0%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 55px 20px at 80% 65%,
      rgba(107, 26, 26, 0.07) 0%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 30px 45px at 40% 75%,
      rgba(107, 26, 26, 0.05) 0%,
      transparent 100%
    );
}
.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(74, 16, 16, 0.75) 0%,
    rgba(74, 16, 16, 0.1) 50%,
    transparent 100%
  );
  transition: opacity 0.4s ease;
}
.collection-card:hover .collection-card-overlay {
  opacity: 0.9;
}
.collection-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease-out);
}
.collection-card:hover .collection-card-content {
  transform: translateY(0);
}
.collection-card-label {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(245, 239, 224, 0.6);
  margin-bottom: 8px;
  display: block;
}
.collection-card-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--parchment);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.collection-card-link {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--parchment);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.collection-card-link::after {
  content: "→";
  font-size: 12px;
}
.collection-card:hover .collection-card-link {
  opacity: 0.8;
}

/* ---- PRODUCT CARDS ---- */
.products-section {
  padding: 100px 0;
  background: var(--parchment);
}
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}
.products-header .section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  cursor: pointer;
}
.product-card-media {
  aspect-ratio: 3/4;
  background: var(--cream-dark);
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}
.product-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse 35px 22px at 25% 35%,
      rgba(107, 26, 26, 0.07) 0%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 18px 30px at 72% 25%,
      rgba(107, 26, 26, 0.05) 0%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 42px 15px at 85% 70%,
      rgba(107, 26, 26, 0.06) 0%,
      transparent 100%
    );
  pointer-events: none;
}
.product-card-img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-card-img-wrap {
  transform: scale(1.04);
}
.product-silhouette {
  width: 60%;
  height: 70%;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
}
.product-silhouette::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(107, 26, 26, 0.06) 100%
  );
}
.product-card-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: var(--burgundy);
  color: var(--parchment);
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease-out);
  cursor: pointer;
}
.product-card:hover .product-card-quick-add {
  transform: translateY(0);
}
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--burgundy);
  color: var(--parchment);
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 10px;
  z-index: 2;
}
.product-card-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 6px;
  line-height: 1.25;
  transition: opacity 0.2s ease;
}
.product-card:hover .product-card-name {
  opacity: 0.75;
}
.product-card-price {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.product-card-price s {
  color: var(--warm-gray);
  margin-right: 8px;
}

/* ---- ABOUT SECTION ---- */
.about-section {
  padding: 120px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.about-img-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    var(--cream-dark) 0%,
    var(--cream) 60%,
    var(--cream-dark) 100%
  );
}
.about-img-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse 60px 40px at 30% 25%,
      rgba(107, 26, 26, 0.08) 0%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 30px 55px at 75% 15%,
      rgba(107, 26, 26, 0.06) 0%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 80px 25px at 85% 55%,
      rgba(107, 26, 26, 0.09) 0%,
      transparent 100%
    );
}
.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 55%;
  aspect-ratio: 1;
  background: var(--burgundy);
  z-index: -1;
  opacity: 0.12;
}
.about-text {
  padding: 20px 0;
}
.about-text .section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 24px;
}
.about-text .section-title em {
  font-style: italic;
  color: var(--burgundy-mid);
}
.about-body {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--burgundy);
  display: block;
  margin-bottom: 4px;
}
.about-stat-label {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 500;
}
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 40px;
  background: var(--burgundy);
  color: var(--parchment);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease;
  border: none;
}
.about-cta:hover {
  background: var(--burgundy-dark);
}

/* ---- GALLERY ---- */
.gallery-section {
  padding: 100px 0;
  background: var(--parchment);
}
.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}
.gallery-header .section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2;
}
.gallery-item:nth-child(2) {
  grid-column: span 4;
}
.gallery-item:nth-child(3) {
  grid-column: span 3;
}
.gallery-item:nth-child(4) {
  grid-column: span 4;
}
.gallery-item:nth-child(5) {
  grid-column: span 3;
}
.gallery-item:nth-child(6) {
  grid-column: span 7;
}
.gallery-item-inner {
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out);
}
.gallery-item:nth-child(1) .gallery-item-inner {
  min-height: 500px;
}
.gallery-item:nth-child(6) .gallery-item-inner {
  min-height: 300px;
}
.gallery-item-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.gallery-item-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse 50px 35px at 20% 30%,
      rgba(107, 26, 26, 0.09) 0%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 25px 45px at 70% 20%,
      rgba(107, 26, 26, 0.06) 0%,
      transparent 100%
    );
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 16, 16, 0);
  transition: background 0.4s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* let clicks pass through to parent .gallery-item */
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(74, 16, 16, 0.35);
}
.gallery-item:hover .gallery-item-inner {
  transform: scale(1.04);
}
.gallery-plus {
  width: 40px;
  height: 40px;
  border: 1px solid var(--parchment);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--parchment);
  font-size: 20px;
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  font-weight: 300;
}
.gallery-item:hover .gallery-plus {
  opacity: 1;
  transform: scale(1);
}

/* ---- ARTICLES ---- */
.articles-section {
  padding: 100px 0;
  background: var(--cream);
}
.articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}
.articles-header .section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.article-card {
  cursor: pointer;
}
.article-card-img {
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.article-card-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--cream) 0%,
    var(--cream-dark) 60%,
    var(--cream) 100%
  );
  transition: transform 0.6s var(--ease-out);
}
.article-card:hover .article-card-img::before {
  transform: scale(1.04);
}
.article-card-tag {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--burgundy);
  margin-bottom: 10px;
  display: block;
}
.article-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--burgundy-dark);
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.article-card:hover .article-card-title {
  color: var(--burgundy);
}
.article-card-excerpt {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card-meta {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-card-meta::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--warm-gray);
}

/* ---- CONTACT ---- */
.contact-section {
  padding: 100px 0;
  background: var(--parchment);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 20px;
}
.contact-body {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--burgundy);
  fill: none;
  stroke-width: 1.5;
}
.contact-detail-label {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}
.contact-detail-value {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--burgundy-dark);
  font-weight: 400;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 500;
}
.form-input,
.form-textarea,
.form-select {
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--burgundy-dark);
  transition: border-color 0.2s ease;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--burgundy);
  outline: none;
  box-shadow: none;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}
.form-submit {
  align-self: flex-start;
  padding: 14px 44px;
  background: var(--burgundy);
  color: var(--parchment);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
}
.form-submit:hover {
  background: var(--burgundy-dark);
}

/* ---- NEWSLETTER ---- */
.newsletter-section {
  padding: 80px 0;
  background: var(--burgundy);
}
.newsletter-inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.newsletter-eyebrow {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(245, 239, 224, 0.5);
  margin-bottom: 16px;
  display: block;
}
.newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--parchment);
  margin-bottom: 32px;
  line-height: 1.35;
}
.newsletter-success {
  padding: 20px 0;
}
.newsletter-success-text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--parchment);
  line-height: 1.3;
}
.newsletter-subtitle {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(245, 239, 224, 0.55);
  line-height: 1.8;
  margin-bottom: 36px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(245, 239, 224, 0.1);
  border: 1px solid rgba(245, 239, 224, 0.2);
  border-right: none;
  color: var(--parchment);
  font-family: var(--font-sans);
  font-size: 12px;
  outline: none;
  transition: background 0.2s ease;
  -webkit-appearance: none;
}
.newsletter-input::placeholder {
  color: rgba(245, 239, 224, 0.4);
}
.newsletter-input:focus {
  background: rgba(245, 239, 224, 0.15);
}
.newsletter-btn {
  padding: 14px 28px;
  background: var(--parchment);
  color: var(--burgundy);
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.newsletter-btn:hover {
  background: var(--cream);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--burgundy-dark);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 239, 224, 0.1);
}
.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--parchment);
  margin-bottom: 6px;
  display: block;
}
.footer-logo-sub {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.35);
  display: block;
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.9;
  color: rgba(245, 239, 224, 0.45);
  max-width: 260px;
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(245, 239, 224, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 239, 224, 0.4);
  font-size: 11px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.footer-social a:hover {
  border-color: rgba(245, 239, 224, 0.35);
  color: var(--parchment);
}
.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--parchment);
  margin-bottom: 20px;
  display: block;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul li a {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(245, 239, 224, 0.4);
  transition: color 0.2s ease;
  cursor: pointer;
}
.footer-col ul li a:hover {
  color: rgba(245, 239, 224, 0.8);
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.25);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(245, 239, 224, 0.25);
  transition: color 0.2s ease;
}
.footer-legal a:hover {
  color: rgba(245, 239, 224, 0.5);
}

/* ---- SEARCH OVERLAY ---- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(250, 246, 238, 0.97);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 120px;
}
.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.search-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-close:hover {
  color: var(--burgundy);
}
.search-eyebrow {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 32px;
}
.search-input-wrap {
  width: 100%;
  max-width: 600px;
  position: relative;
  padding: 0 40px;
}
.search-input {
  width: 100%;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--burgundy-dark);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border);
  padding: 0 0 16px 0;
  outline: none;
  transition: border-color 0.3s ease;
}
.search-input:focus {
  border-color: var(--burgundy);
}
.search-input::placeholder {
  color: var(--cream-dark);
}
.search-icon {
  position: absolute;
  right: 50px;
  top: 6px;
  color: var(--warm-gray);
}
.search-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* Search results */
.search-results {
  width: 100%;
  max-width: 600px;
  padding: 24px 40px 0;
  overflow-y: auto;
  max-height: 50vh;
}
.search-results-group {
  margin-bottom: 24px;
}
.search-results-label {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  display: block;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(221, 213, 192, 0.4);
  transition: background 0.2s ease;
}
.search-result-item:hover {
  background: var(--cream);
  padding-left: 8px;
  margin: 0 -8px;
  padding-right: 8px;
}
.search-result-img {
  width: 44px;
  height: 52px;
  background: var(--cream-dark);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.search-result-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
}
.search-result-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--burgundy-dark);
  margin-bottom: 2px;
}
.search-result-price {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-muted);
}
.search-result-price s {
  color: var(--warm-gray);
  margin-right: 6px;
}
.search-no-results {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  padding: 24px 0;
}

.search-popular {
  margin-top: 32px;
  text-align: center;
}
.search-popular-label {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 16px;
  display: block;
}
.search-popular-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.search-tag {
  padding: 8px 18px;
  border: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  background: none;
}
.search-tag:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

/* ---- CART DRAWER ---- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(74, 16, 16, 0.4);
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100%;
  background: var(--parchment);
  z-index: 2600;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-drawer-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-drawer-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--burgundy);
}
.cart-drawer-count {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.cart-drawer-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.cart-drawer-close:hover {
  color: var(--burgundy);
}
.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item-img {
  width: 80px;
  aspect-ratio: 3/4;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
}
.cart-item-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--burgundy);
  margin-bottom: 4px;
}
.cart-item-meta {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  background: none;
}
.cart-qty-btn:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}
.cart-qty-num {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--burgundy-dark);
  min-width: 16px;
  text-align: center;
}
.cart-item-price {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--burgundy-dark);
  font-weight: 500;
  white-space: nowrap;
}
.cart-item-remove {
  display: block;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  cursor: pointer;
  transition: color 0.2s ease;
  text-align: right;
}
.cart-item-remove:hover {
  color: var(--burgundy);
}
.cart-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cart-subtotal-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 500;
}
.cart-subtotal-val {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--burgundy);
}
.cart-note {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--warm-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}
.cart-checkout-btn {
  width: 100%;
  padding: 16px;
  background: var(--burgundy);
  color: var(--parchment);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
  box-sizing: border-box;
}
.cart-checkout-btn:hover {
  background: var(--burgundy-dark);
}
.cart-continue {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  cursor: pointer;
  transition: color 0.2s ease;
  background: none;
  border: none;
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}
.cart-continue:hover {
  color: var(--burgundy);
}
.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  text-align: center;
  gap: 16px;
}
.cart-empty-icon {
  font-size: 48px;
  opacity: 0.3;
}
.cart-empty-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--burgundy);
}
.cart-empty-body {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---- PRODUCT MODAL ---- */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.product-modal.active {
  opacity: 1;
  pointer-events: all;
}
.product-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 16, 16, 0.5);
  backdrop-filter: blur(4px);
}
.product-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  margin: auto;
  background: var(--parchment);
  overflow: hidden;
  transform: translateY(30px);
  transition: transform 0.4s var(--ease-out);
}
.product-modal.active .product-modal-panel {
  transform: translateY(0);
}
.product-modal-gallery {
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.gallery-slides-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.4s var(--ease-out);
}
.gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.gallery-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--cream-dark) 0%,
    var(--cream) 50%,
    var(--cream-dark) 100%
  );
}
.gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse 70px 45px at 25% 30%,
      rgba(107, 26, 26, 0.09) 0%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 35px 60px at 70% 20%,
      rgba(107, 26, 26, 0.06) 0%,
      transparent 100%
    );
  pointer-events: none;
}
.gallery-slide-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(107, 26, 26, 0.12);
  z-index: 1;
  user-select: none;
  pointer-events: none;
}
.gallery-slide-label {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(107, 26, 26, 0.4);
  z-index: 1;
  white-space: nowrap;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(250, 246, 238, 0.85);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 14px;
  color: var(--burgundy-dark);
}
.gallery-arrow:hover {
  background: var(--parchment);
}
.gallery-arrow--prev {
  left: 12px;
}
.gallery-arrow--next {
  right: 12px;
}
.product-modal-thumbs {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.product-modal-thumb {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 239, 224, 0.4);
  cursor: pointer;
  border: none;
  transition: background 0.2s ease;
}
.product-modal-thumb.active {
  background: var(--parchment);
}
.product-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(107, 26, 26, 0.15);
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-muted);
  transition: all 0.2s ease;
}
.product-modal-close:hover {
  background: var(--burgundy);
  color: var(--parchment);
  border-color: var(--burgundy);
}
.product-modal-body {
  padding: 44px 40px;
  /* Scroll the info column independently while the gallery stays fixed.
     min-height:0 lets this grid item shrink below its content so overflow
     activates; max-height matches the panel cap so the scroll region is
     bounded. */
  min-height: 0;
  max-height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal-breadcrumb {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 500;
}
.modal-title {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.modal-price {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}
.modal-price s {
  color: var(--warm-gray);
  margin-right: 10px;
}
.modal-price strong {
  color: var(--burgundy-dark);
  font-weight: 500;
}
.modal-option-label {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}
.modal-colors {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.modal-color-swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 3px;
  transition: all 0.2s ease;
}
.modal-color-swatch.active {
  border-color: var(--parchment);
  outline-color: var(--burgundy);
}
.modal-sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.modal-size-btn {
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--burgundy-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}
.modal-size-btn:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}
.modal-size-btn.active {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--parchment);
}
.modal-size-btn.sold-out {
  color: var(--warm-gray);
  border-color: var(--border);
  cursor: not-allowed;
  position: relative;
  overflow: hidden;
}
.modal-size-btn.sold-out::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--warm-gray);
  transform: rotate(-12deg);
}
.modal-add-to-cart {
  width: 100%;
  padding: 16px;
  background: var(--burgundy);
  color: var(--parchment);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
}
.modal-add-to-cart:hover {
  background: var(--burgundy-dark);
}
.modal-add-to-cart:disabled {
  background: var(--border);
  color: var(--warm-gray);
  cursor: not-allowed;
}
/* Quick view "View Product" primary button — full-width, site button standard
   (inherits .btn); rendered as an <a> so needs the link reset. */
.modal-view-product {
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  margin-top: 4px;
}
/* Read-only colour/size chips in the view-only quick view — no interactivity.
   Neutralises the hover/selection affordances of the base swatch styles. */
.modal-color-swatch.is-static,
.modal-size-btn.is-static {
  cursor: default;
  pointer-events: none;
}
.modal-size-btn.is-static:hover {
  border-color: var(--border);
  color: var(--burgundy-dark);
}
.modal-divider {
  border: none;
  border-top: 1px solid var(--border);
}
.modal-desc {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 2;
  color: var(--text-muted);
}
.modal-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-detail-row {
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-family: var(--font-sans);
  font-size: 11px;
}
.modal-detail-key {
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-size: 9px;
  min-width: 80px;
}
.modal-detail-val {
  color: var(--text-muted);
}

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 80px 0 60px;
  background: var(--burgundy-dark);
  text-align: center;
}
.page-hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.5);
  margin-bottom: 16px;
  display: block;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--parchment);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
.page-hero-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.45);
  margin-top: 16px;
}

/* ---- SHOP FILTERS ---- */
.shop-filter-bar {
  background: var(--parchment);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: var(--filter-bar-top, 72px);
  z-index: 900; /* below header (1000) */
  transition: top 0.35s var(--ease-out);
}
.shop-filter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.shop-filter-tabs {
  display: flex;
  gap: 0;
  overflow: hidden; /* no scrollbar visible */
  flex: 1;
  min-width: 0;
}
.shop-filter-tab {
  flex: 0 0 auto;
  padding: 8px 20px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  background: none;
  white-space: nowrap;
}
.shop-filter-tab.active,
.shop-filter-tab:hover {
  color: var(--burgundy);
  border-color: var(--border);
  background: var(--cream);
}

/* ---- CUSTOM SORT SELECT (tooltip-style dropdown) ---- */
.shop-sort {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  flex-shrink: 0;
}

/* Hide native select visually but keep accessible */
.shop-sort select {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  cursor: pointer;
  z-index: 2;
  font-size: 16px; /* prevent iOS zoom */
}

.shop-sort-display {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  background: var(--cream);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: border-color 0.2s ease;
  pointer-events: none; /* clicks fall through to select */
}
.shop-sort-display-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy-dark);
  font-weight: 500;
}
.shop-sort-display-arrow {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--burgundy);
  border-bottom: 1.5px solid var(--burgundy);
  transform: rotate(45deg) translateY(-1px);
  display: block;
  flex-shrink: 0;
}
.shop-sort:focus-within .shop-sort-display {
  border-color: var(--burgundy);
}
.shop-products-section {
  padding: 60px 0 100px;
  background: var(--cream);
}
.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ---- INFO PAGES ---- */
.info-page {
  padding: 40px 0;
  background: var(--cream);
}
.info-page-content {
  max-width: 760px;
  margin: 0 auto;
}
.info-section {
  margin-bottom: 48px;
}
.info-section-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--burgundy);
  margin-bottom: 16px;
}
.info-section p {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.info-table th,
.info-table td {
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 12px;
  border-bottom: 1px solid var(--border);
}
.info-table th {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 9px;
  color: var(--warm-gray);
  background: var(--parchment);
}
.info-table td {
  color: var(--text-muted);
}
.info-table tr:hover td {
  background: var(--parchment);
}
.info-accordion-item {
  border-bottom: 1px solid var(--border);
}
.info-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--burgundy-dark);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  transition: color 0.2s ease;
}
.info-accordion-btn:hover {
  color: var(--burgundy);
}
.info-accordion-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
}
.info-accordion-icon::before,
.info-accordion-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.3s ease;
}
.info-accordion-icon::before {
  width: 16px;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
}
.info-accordion-icon::after {
  width: 1px;
  height: 16px;
  left: 50%;
  transform: translateX(-50%);
}
.info-accordion-item.open .info-accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
}
.info-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.info-accordion-item.open .info-accordion-body {
  max-height: 600px;
}
.size-chart-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
}
.size-chart-tab {
  padding: 10px 24px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border: 1px solid var(--border);
  background: none;
  margin-right: -1px;
  transition: all 0.2s ease;
}
.size-chart-tab.active {
  background: var(--burgundy);
  color: var(--parchment);
  border-color: var(--burgundy);
  z-index: 1;
}

/* ---- JOURNAL ---- */
.journal-section {
  padding: 80px 0;
  background: var(--cream);
}
.journal-featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3px;
  margin-bottom: 60px;
}
.journal-featured-main {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 480px;
  background: var(--cream-dark);
}
.journal-featured-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--cream-dark) 0%,
    var(--cream) 60%,
    var(--cream-dark) 100%
  );
}
.journal-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(74, 16, 16, 0.7) 0%,
    rgba(74, 16, 16, 0.15) 50%,
    transparent 100%
  );
  transition: background 0.4s ease;
  z-index: 1;
}
.journal-featured-main:hover .journal-featured-overlay {
  background: rgba(74, 16, 16, 0.6);
}
.journal-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 2;
}
.journal-featured-tag {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.6);
  margin-bottom: 12px;
  display: block;
}
.journal-featured-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--parchment);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
}
.journal-featured-meta {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.4);
}
.journal-featured-side {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.journal-side-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 200px;
  background: var(--cream-dark);
}
.journal-side-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.journal-side-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(74, 16, 16, 0.65) 0%,
    transparent 60%
  );
  z-index: 1;
  transition: background 0.4s ease;
}
.journal-side-card:hover .journal-side-overlay {
  background: rgba(74, 16, 16, 0.6);
}
.journal-side-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}
.journal-side-tag {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.55);
  margin-bottom: 6px;
  display: block;
}
.journal-side-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--parchment);
  font-weight: 400;
  line-height: 1.2;
}
.journal-grid-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--burgundy);
  margin-bottom: 40px;
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ---- ABOUT PAGE SPECIFIC ---- */
.about-page-intro {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 40px 40px; /* FIX #18: padding-bottom reduced by half */
  background: var(--cream);
}
.about-page-intro .section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 28px;
}
.about-page-intro p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 2.1;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.about-page-intro p:last-child {
  margin-bottom: 0;
}
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
/* Reversed grid variant — text left, image right */
.about-full-grid--reverse {
  direction: rtl;
}
.about-full-grid--reverse > * {
  direction: ltr;
}
.about-full-img {
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.about-full-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    var(--cream-dark) 0%,
    var(--cream) 60%,
    var(--cream-dark) 100%
  );
}
.about-full-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse 80px 55px at 25% 30%,
      rgba(107, 26, 26, 0.09) 0%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 40px 70px at 70% 20%,
      rgba(107, 26, 26, 0.06) 0%,
      transparent 100%
    );
}
.about-full-text {
  padding: 80px 60px;
  background: var(--parchment);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-full-text .section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 24px;
}
.about-full-text p {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 2.1;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.about-values {
  padding: 100px 0;
  background: var(--cream);
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 60px;
}
.about-value-card {
  padding: 40px 32px;
  background: var(--parchment);
}
.about-value-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(107, 26, 26, 0.15);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.about-value-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--burgundy);
  margin-bottom: 12px;
}
.about-value-body {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.9;
  color: var(--text-muted);
}

/* ---- FOUNDER SECTION ---- */
.about-founder-section {
  padding: 100px 0;
  background: var(--burgundy);
}
.about-founder-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-founder-inner .eyebrow {
  color: rgba(245, 249, 246, 0.45);
  margin-bottom: 32px;
}
.about-founder-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  color: var(--parchment);
  line-height: 1.55;
  margin-bottom: 32px;
  border: none;
  padding: 0;
}
.about-founder-note {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 2;
  color: rgba(245, 249, 246, 0.55);
  margin-bottom: 16px;
}
.about-founder-cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 249, 246, 0.35);
  margin-top: 32px;
  font-style: normal;
}

/* ---- TRACK ORDER ---- */
.track-order-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 480px;
}

/* ---- EMAIL POPUP ---- */
.email-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(74, 16, 16, 0.5);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(2px);
}
.email-popup-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.email-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  width: min(520px, 92vw);
  background: var(--burgundy);
  z-index: 10001;
  padding: 56px 48px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    transform 0.4s var(--ease-out);
}
.email-popup.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}
.email-popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 16px;
  color: rgba(245, 249, 246, 0.45);
  transition: color 0.2s ease;
  line-height: 1;
}
.email-popup-close:hover {
  color: var(--parchment);
}
.email-popup-eyebrow {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(245, 249, 246, 0.45);
  display: block;
  margin-bottom: 20px;
}
.email-popup-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--parchment);
  line-height: 1.35;
  margin-bottom: 32px;
}
.email-popup-form {
  display: flex;
  gap: 0;
  max-width: 360px;
  margin: 0 auto 16px;
}
.email-popup-input {
  flex: 1;
  padding: 13px 18px;
  background: rgba(245, 249, 246, 0.1);
  border: 1px solid rgba(245, 249, 246, 0.2);
  border-right: none;
  color: var(--parchment);
  font-family: var(--font-sans);
  font-size: 12px;
  outline: none;
  -webkit-appearance: none;
  transition: background 0.2s ease;
}
.email-popup-input::placeholder {
  color: rgba(245, 249, 246, 0.38);
}
.email-popup-input:focus {
  background: rgba(245, 249, 246, 0.15);
}
.email-popup-btn {
  padding: 13px 24px;
  background: var(--parchment);
  color: var(--burgundy);
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.email-popup-btn:hover {
  background: var(--cream);
}
.email-popup-skip {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 249, 246, 0.3);
  transition: color 0.2s ease;
  margin-top: 4px;
  display: inline-block;
}
.email-popup-skip:hover {
  color: rgba(245, 249, 246, 0.6);
}
.email-popup-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.email-popup-success-text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--parchment);
  line-height: 1.2;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .header-inner,
  .container,
  .container--wide {
    padding: 0 24px;
  }
  .collections-grid {
    grid-template-columns: 1fr 1fr;
  }
  .collection-card--wide {
    grid-column: span 1;
  }
  .products-grid,
  .shop-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .journal-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cart-drawer {
    width: 380px;
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 32px; /* mobile announcement bar height */
  }
  .announcement-bar {
    font-size: 9px;
    padding: 8px 12px;
  }
  .header-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0 16px;
    height: 58px;
    gap: 0;
  }
  /* Burger on the LEFT — standalone column */
  .mobile-menu-btn {
    order: -1;
    justify-self: start;
  }
  /* Logo in CENTER */
  .header-logo {
    justify-content: center;
    grid-column: 2;
  }
  /* Icons on RIGHT — search + cart + burger btn */
  .header-icons {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
  }
  /* Hide account icon on mobile */
  .header-icons .header-icon-btn:nth-child(2) {
    display: none;
  }
  /* Ensure mobile-menu-btn inside header-icons is properly sized */
  .header-icons .mobile-menu-btn {
    order: 0;
    margin-left: 4px;
  }
  .header-logo-text {
    font-size: 18px;
  }
  .header-logo-sub {
    font-size: 6px;
  }
  .page-content {
    padding-top: 58px;
  }
  .shop-filter-bar {
    top: var(--filter-bar-top, 58px);
  }
  .hero-title {
    font-size: clamp(4rem, 22vw, 8rem);
  }
  .collections-grid {
    grid-template-columns: 1fr;
  }
  .collection-card--wide {
    grid-column: span 1;
  }
  .products-grid,
  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .articles-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .products-header,
  .articles-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .product-modal-panel {
    grid-template-columns: 1fr;
    width: 95%;
    max-height: 95vh;
  }
  .product-modal-gallery {
    min-height: 300px;
  }
  /* Stacked layout: gallery pinned at 300px on top, info scrolls below. */
  .product-modal-body {
    max-height: calc(95vh - 300px);
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-input {
    border-right: 1px solid rgba(245, 239, 224, 0.2);
    border-bottom: none;
  }
  .email-popup {
    padding: 40px 24px;
  }
  .email-popup-form {
    flex-direction: column;
  }
  .email-popup-input {
    border-right: 1px solid rgba(245, 249, 246, 0.2);
    border-bottom: none;
  }
  .journal-featured {
    grid-template-columns: 1fr;
  }
  .journal-featured-main {
    min-height: 320px;
  }
  .about-full-grid {
    grid-template-columns: 1fr;
  }
  .about-full-img {
    min-height: 300px;
  }
  .about-full-text {
    padding: 48px 32px;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  .search-close {
    right: 20px;
  }
  .cart-drawer {
    width: 100%;
  }
  .shop-filter-inner {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    overflow: hidden;
  }
  .shop-filter-tabs {
    overflow: hidden;
    flex: 1;
    min-width: 0;
  }
  .search-results {
    padding: 24px 20px 0;
  }
}

@media (max-width: 480px) {
  .products-grid,
  .shop-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .container,
  .container--wide {
    padding: 0 16px;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item-inner {
    min-height: 200px !important;
  }
}

/* ---- ARTICLE PAGE ---- */
.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.article-body p,
.article-body h2,
.article-body h3,
.article-body blockquote {
  padding-left: 0;
  padding-right: 0;
}

/* ---- JOURNAL ARTICLE BODY PADDING ---- */
.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .article-body {
    padding: 0 16px;
  }
  .article-hero-title {
    font-size: clamp(1.8rem, 8vw, 3rem) !important;
  }
}

/* =============================================================
   APPALOOSA — WORDPRESS ADJUSTMENTS
   Refinements for WordPress integration. Added as a separate
   section; the original design above was not changed.
   ============================================================= */

/* --- Journal: article page (single.php) --- */
/* page-content already provides top spacing under the fixed header; we remove
   the double spacing and the hero overlapping the content. */
.single .article-hero {
  padding-top: 40px;
}
.single .article-back {
  display: inline-block;
  margin-bottom: 16px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.single .article-back:hover {
  color: var(--burgundy-dark);
}
.single .article-cover {
  min-height: 320px;
  background: var(--burgundy-dark);
  border-radius: 4px;
  margin: 32px auto;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

/* --- Desktop: ensure mobile elements are hidden --- */
@media (min-width: 769px) {
  .mobile-menu-btn {
    display: none;
  }
  .header-icons {
    display: none;
  }
}

/* --- Responsive header: guarantee logo centering --- */
@media (max-width: 768px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 16px;
    height: 58px;
    gap: 0;
  }
  .header-nav--left,
  .header-nav--right {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
    grid-column: 1;
    justify-self: start;
  }
  .header-logo {
    grid-column: 2;
    justify-self: center;
    display: flex;
    justify-content: center;
  }
  .header-icons {
    display: flex;
    grid-column: 3;
    justify-self: end;
    gap: 4px;
  }
}

/* --- Fallback product cards (when there are no products yet) --- */
/* They do not look clickable until the shop is populated. */
.product-card:not([data-product-id]) {
  cursor: default;
}
.product-card:not([data-product-id]) .product-card-quick-add {
  display: none;
}

/* =============================================================
   WOOCOMMERCE — basic styles integration
   login / my account / cart forms in the Appaloosa style.
   ============================================================= */

/* WooCommerce pages container */
.woocommerce-page .page-content,
.woocommerce .page-content {
  padding-top: 72px;
}
@media (max-width: 768px) {
  .woocommerce-page .page-content,
  .woocommerce .page-content {
    padding-top: 60px;
  }
}

/* Headings and text */
.woocommerce-account .woocommerce h2,
.woocommerce h2 {
  font-family: var(--font-serif);
  color: var(--burgundy);
  font-size: 1.6rem;
  margin-bottom: 20px;
}

/* WooCommerce forms (login, register, checkout) */
.woocommerce form .form-row label,
.woocommerce-account .woocommerce label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy-dark);
  margin-bottom: 6px;
  display: block;
}
.woocommerce form .input-text,
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="password"],
.woocommerce input[type="tel"],
.woocommerce textarea,
.woocommerce select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--burgundy-dark);
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
}
.woocommerce form .input-text:focus,
.woocommerce input:focus,
.woocommerce textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: none;
}

/* WooCommerce buttons — in the Appaloosa style */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button {
  background: var(--burgundy);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .button:hover {
  background: var(--burgundy-dark);
}

/* login / register forms box */
.woocommerce-account .woocommerce {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.woocommerce-account .col2-set {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.woocommerce form.login,
.woocommerce form.register {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .woocommerce-account .col2-set {
    grid-template-columns: 1fr;
  }
}

/* WooCommerce notifications */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  font-family: var(--font-sans);
  font-size: 13px;
  border-top: 3px solid var(--burgundy);
  background: var(--parchment, #faf6ee);
  padding: 14px 20px;
  list-style: none;
}

/* Cart table */
.woocommerce table.shop_table {
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-sans);
}
.woocommerce table.shop_table th {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy-dark);
}

/* Item card in the slide-out cart */
.cart-item {
  display: flex;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.cart-item-img {
  width: 56px;
  height: 70px;
  background: var(--burgundy-dark);
  border-radius: 2px;
  flex-shrink: 0;
}
.cart-item-info {
  flex: 1;
}
.cart-item-name {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--burgundy);
}
.cart-item-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.cart-item-price {
  font-size: 12px;
  margin-top: 4px;
}
.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-muted);
}
.cart-item-remove:hover {
  color: var(--burgundy);
}
.cart-empty {
  font-family: var(--font-sans);
  color: var(--text-muted);
}

/* --- Journal: article meta with separator --- */
.single .article-hero-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 10px;
}
.single .article-hero-meta span + span::before {
  content: "·";
  margin-right: 8px;
}

/* =============================================================
   WOOCOMMERCE — product page (single-product)
   ============================================================= */
.product-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin: 24px 0 60px;
}
.product-single-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--burgundy-dark);
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}
.product-single-main--empty {
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
}
.product-single-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.product-single-thumb {
  width: 64px;
  height: 80px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  opacity: 0.6;
  transition:
    opacity 0.2s ease,
    border-color 0.2s ease;
}
.product-single-thumb.active,
.product-single-thumb:hover {
  opacity: 1;
  border-color: var(--burgundy);
}
.product-single-info {
  padding-top: 8px;
}
.product-single-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--burgundy);
  line-height: 1.15;
  margin: 8px 0 14px;
}
.product-single-price {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  color: var(--burgundy-dark);
  font-weight: 500;
}
.product-single-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 18px 0;
}
.product-single-fulldesc {
  max-width: 760px;
  margin: 40px auto;
  font-family: var(--font-sans);
  line-height: 1.8;
  color: var(--text-muted);
}

/* WooCommerce add-to-cart form on the product page */
.product-single-info .quantity input.qty {
  width: 70px;
  padding: 12px 8px;
  border: 1px solid var(--border);
  margin-right: 10px;
  text-align: center;
}
.product-single-info form.cart {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.product-single-info .single_add_to_cart_button {
  background: var(--burgundy);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.product-single-info .single_add_to_cart_button:hover {
  background: var(--burgundy-dark);
}
.product-single-info table.variations {
  margin-bottom: 16px;
}
.product-single-info table.variations td,
.product-single-info table.variations th {
  padding: 6px 8px 6px 0;
}

@media (max-width: 768px) {
  .product-single {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* =============================================================
   APPALOOSA — CONSOLIDATED FIXES (v4.3)
   All fixes in a single block, without duplicates.
   ============================================================= */

/* --- Logo in the header --- */
.header-logo-img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* --- Social media icons in the footer --- */
.footer-social-link svg {
  width: 18px;
  height: 18px;
}

/* ---- FIX #3: Shop dropdown z-index ---- */
.nav-dropdown {
  z-index: 300;
}
.dropdown-menu {
  z-index: 301 !important;
}

/* ---- FIX #4: Mobile drawer ---- */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background: var(--parchment);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-nav-drawer.open {
  transform: translateX(0);
}
.mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--burgundy-dark);
  font-size: 22px;
  z-index: 10;
}
.mobile-nav-close:hover {
  color: var(--burgundy);
}
/* FIX #4: padding-top 40px — content is not overlapped by the close icon */
.mobile-nav-links {
  padding-top: 40px !important;
  padding-bottom: 24px;
}

/* ---- FIX #8: Page spacing ---- */
/* Reduce padding on mobile */
@media (max-width: 768px) {
  .woocommerce-page .page-content,
  .woocommerce .page-content {
    padding-top: 90px !important;
  }
}
/* info-page: remove double padding if the parent already has spacing */
.page-content > .info-page:first-child {
  padding-top: 40px;
}
/* Product page — reduce top spacing */
.single-product .page-content,
.woocommerce.single-product .page-content {
  padding-top: 80px !important;
}
@media (max-width: 768px) {
  .single-product .page-content,
  .woocommerce.single-product .page-content {
    padding-top: 70px !important;
  }
}
/* My Account — remove the huge spacing */
.woocommerce-account .page-content {
  padding-top: 80px !important;
}
@media (max-width: 768px) {
  .woocommerce-account .page-content {
    padding-top: 70px !important;
  }
}
/* Journal article — bottom spacing (FIX #15B) */
.single .article-body,
.single .page-content,
.single-post .page-content {
  padding-bottom: 80px;
}

/* ---- FIX #2: About founder / newsletter — visually distinct ---- */
.about-founder-section {
  background: var(--burgundy) !important;
  padding: 100px 0 80px !important;
  margin-bottom: 0 !important;
}
/* Divider line between sections */
.about-founder-section + * {
  border-top: none;
}
.newsletter-section {
  background: var(--burgundy-dark) !important;
  border-top: 4px solid rgba(255, 255, 255, 0.1) !important;
  padding-top: 80px !important;
  margin-top: 0 !important;
}

/* ---- Search: overflow ---- */
.search-input {
  font-size: clamp(1.2rem, 3.5vw, 2.2rem);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  width: 100%;
}

/* ---- Horizontal overflow on mobile ---- */
html,
body {
  overflow-x: hidden;
}

/* ---- INFO PAGE typography ---- */
.info-page-content h2,
.info-page-content h3 {
  font-family: var(--font-serif);
  color: var(--burgundy);
}
.info-page-content p,
.info-page-content li {
  font-family: var(--font-sans);
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---- Search results in overlay ---- */
.search-results-group {
  margin-bottom: 24px;
}
.search-results-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}
.search-result-img {
  width: 48px;
  height: 64px;
  background: var(--cream-dark);
  flex-shrink: 0;
  object-fit: cover;
}
.search-result-name {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--burgundy-dark);
}
.search-result-price {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--warm-gray);
}
.search-spinner,
.search-no-results {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--warm-gray);
  padding: 16px 0;
  text-align: center;
}

/* =============================================================
   APPALOOSA v4.6 — FINAL FIXES
   ============================================================= */

/* ---- FIX #19: about-founder-section — remove red background ---- */
.about-founder-section {
  background: var(--parchment, #faf6ee) !important;
  border-top: 1px solid var(--border) !important;
  border-bottom: 1px solid var(--border) !important;
  padding: 80px 0 !important;
}
.about-founder-section .eyebrow {
  color: var(--warm-gray) !important;
}
.about-founder-quote {
  color: var(--burgundy-dark) !important;
}
.about-founder-note,
.about-founder-note p {
  color: var(--text-muted) !important;
}
.about-founder-cite {
  color: var(--warm-gray) !important;
}
/* newsletter after founder — stays dark, contrast is ensured */
.newsletter-section {
  background: var(--burgundy) !important;
  border-top: none !important;
}

/* ---- FIX #21: Custom select (sorting/filters only) ---- */
.custom-select-wrapper {
  position: relative;
  display: inline-block;
  min-width: 200px;
}
.custom-select-trigger {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid var(--border);
  padding: 12px 40px 12px 16px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy-dark);
  cursor: pointer;
  position: relative;
  border-radius: 0;
}
.custom-select-trigger::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--burgundy);
  border-bottom: 1px solid var(--burgundy);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}
.custom-select-wrapper.open .custom-select-trigger::after {
  transform: translateY(-35%) rotate(-135deg);
}
.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--parchment);
  border: 1px solid var(--border);
  border-top: none;
  max-height: 280px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 250;
  box-shadow: 0 8px 30px rgba(74, 16, 16, 0.1);
}
.custom-select-wrapper.open .custom-select-options {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.custom-select-option {
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.custom-select-option:hover {
  background: var(--cream);
  color: var(--burgundy);
}
.custom-select-option.selected {
  color: var(--burgundy);
  font-weight: 500;
}

/* ---- FIX #24: info-page-content fonts (Terms, etc.) ---- */
.info-page-content h1 {
  font-size: 1.4rem;
}
.info-page-content h2 {
  font-size: 1.1rem;
}
.info-page-content h3 {
  font-size: 1rem;
}
.info-page-content p,
.info-page-content li {
  font-size: 14px;
  line-height: 1.8;
}
.info-page-content ul,
.info-page-content ol {
  padding-left: 20px;
}

/* ---- FIX #7: Quantity ± buttons ---- */
.qty-wrapper {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--border);
}
.qty-wrapper input[type="number"],
.qty-wrapper input.qty {
  width: 48px !important;
  text-align: center !important;
  border: none !important;
  border-left: 1px solid var(--border) !important;
  border-right: 1px solid var(--border) !important;
  padding: 0 !important;
  -moz-appearance: textfield;
  font-family: var(--font-sans) !important;
  background: #fff !important;
}
.qty-wrapper input[type="number"]::-webkit-outer-spin-button,
.qty-wrapper input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-btn {
  width: 40px;
  background: var(--burgundy);
  color: var(--cream);
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.qty-btn:hover {
  background: var(--burgundy-dark);
}

/* ---- FIX #26: Responsive — no horizontal scroll ---- */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}
img,
video,
iframe,
table {
  max-width: 100%;
}
@media (max-width: 1024px) {
  .collections-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container,
  .container--wide {
    padding-left: 20px;
    padding-right: 20px;
  }
  .collections-grid {
    grid-template-columns: 1fr 1fr;
  }
  .collection-card--wide {
    grid-column: span 2;
  }
  .custom-select-wrapper {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .collections-grid {
    grid-template-columns: 1fr;
  }
  .collection-card--wide {
    grid-column: span 1;
  }
}

/* Hero galleria-slide empty (FIX #4 empty photo) */
.gallery-slide--empty {
  background: var(--cream-dark, #ece5d6);
}

/* FIX #28: empty gallery tiles without placeholders */
.gallery-item-inner--empty {
  background: var(--cream-dark, #ece5d6);
  cursor: default;
}
.gallery-item-inner--empty .gallery-item-overlay {
  display: none;
}

/* =============================================================
   APPALOOSA v4.7 — AUDIT FIXES
   Responsive · Cross-browser (Safari 14+ / Chrome 90+) · Performance · A11y
   Appended so the cascade refines the design above without rewriting it.
   Grouped by concern; later same-specificity rules intentionally win.
   ============================================================= */

/* -------------------------------------------------------------
   1. MOTION — respect prefers-reduced-motion
   Disables animations/transitions/smooth-scroll for users who ask.
   ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* -------------------------------------------------------------
   2. CROSS-BROWSER — aspect-ratio fallback for Safari < 15
   Safari 14.x has no aspect-ratio; give image boxes a min-height
   floor so they never collapse. Browsers that DO support
   aspect-ratio ignore this whole block.
   ------------------------------------------------------------- */
@supports not (aspect-ratio: 1 / 1) {
  .collection-card {
    min-height: 360px;
  }
  .product-card-media {
    min-height: 320px;
  }
  .about-img-main {
    min-height: 460px;
  }
  .about-img-accent {
    min-height: 150px;
  }
  .article-card-img {
    min-height: 230px;
  }
  .product-single-main {
    min-height: 420px;
  }
  .about-intro-image {
    min-height: 280px;
  }
}

/* -------------------------------------------------------------
   3. CROSS-BROWSER — consistent <select> rendering (Chrome/FF/Safari)
   Reset native chrome on all engines and supply one custom caret.
   ------------------------------------------------------------- */
.form-select,
select.orderby,
.woocommerce-ordering select,
.woocommerce select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%235c0000' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

/* -------------------------------------------------------------
   4. A11Y — visible keyboard focus in every browser
   Baseline :focus ring works in Safari < 15.4 (no :focus-visible);
   modern browsers hide it for mouse and keep it for keyboard.
   ------------------------------------------------------------- */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
[tabindex]:focus {
  outline: 2px solid var(--burgundy, #800000);
  outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
[tabindex]:focus:not(:focus-visible) {
  outline: none;
}

/* -------------------------------------------------------------
   5. TOUCH — minimum 44×44 tap targets on touch devices only
   Mouse/desktop pointers keep the compact design untouched.
   ------------------------------------------------------------- */
@media (pointer: coarse) {
  .header-icon-btn,
  .mobile-menu-btn,
  .mobile-nav-close,
  .search-close,
  .product-modal-close,
  .cart-drawer-close,
  .cart-item-remove,
  .qty-btn,
  .custom-select-trigger,
  .footer-social-link,
  .nav-dropdown > button,
  .shop-filter-tab,
  .modal-size-btn {
    min-width: 44px;
    min-height: 44px;
  }
  .header-icon-btn,
  .mobile-nav-close,
  .search-close,
  .product-modal-close,
  .cart-drawer-close,
  .cart-item-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* -------------------------------------------------------------
   6. RESPONSIVE — shop catalog & gallery single column on phones
   Design shipped 2-up at <=480; the spec wants one column on mobile.
   This block is last, so it overrides the earlier 480 rule.
   ------------------------------------------------------------- */
@media (max-width: 480px) {
  .products-grid,
  .shop-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------
   7. RESPONSIVE — readable type on mobile (no text < 13px)
   Only classes confirmed below 13px are raised, so nothing shrinks.
   Letter-spacing on the bumped uppercase micro-labels is eased so
   they don't wrap at 320px. Body copy lifts to 15px.
   ------------------------------------------------------------- */
@media (max-width: 768px) {
  .eyebrow,
  .page-hero-eyebrow,
  .collection-card-label,
  .collection-card-link,
  .product-card-price,
  .article-card-tag,
  .article-card-meta,
  .view-all-link,
  .footer-copy,
  .footer-legal a,
  .footer-social-link,
  .footer-tagline,
  .cart-item-meta,
  .cart-item-price,
  .cart-drawer-count,
  .cart-note,
  .search-result-name,
  .search-result-price,
  .search-results-label,
  .search-spinner,
  .search-no-results,
  .form-label,
  .form-submit,
  .contact-detail-label,
  .modal-option-label,
  .modal-detail-key,
  .modal-detail-val,
  .shop-filter-tab,
  .custom-select-trigger,
  .custom-select-option,
  .mobile-nav-links a {
    font-size: 13px;
  }
  .eyebrow,
  .page-hero-eyebrow,
  .collection-card-label,
  .article-card-tag,
  .shop-filter-tab,
  .form-submit {
    letter-spacing: 0.1em;
  }
  .article-card-excerpt {
    font-size: 14px;
  }
  .info-page-content p,
  .info-page-content li,
  .product-single-desc,
  .contact-body,
  .about-body {
    font-size: 15px;
  }
}

/* -------------------------------------------------------------
   8. RESPONSIVE — belt-and-suspenders against horizontal scroll
   and image/media overflow on every breakpoint.
   ------------------------------------------------------------- */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}
img,
video {
  max-width: 100%;
  height: auto;
}
.container,
.container--wide,
.header-inner {
  box-sizing: border-box;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
/* FIX: .page-content is a FULL-WIDTH page wrapper, never a 1440 cap.
   Capping it here clipped full-bleed colored sections nested inside it
   (page-hero, about-values, founder quote, newsletter/club) to 1440px,
   leaving gutters on wide screens. Backgrounds now span edge-to-edge; the
   inner .container / .container--wide keeps text + buttons at 1440px. */
.page-content {
  box-sizing: border-box;
  width: 100%;
}

/* =============================================================
   APPALOOSA v4.8 — UNIFIED INTERACTIVE ELEMENTS
   One standard for every button / input / textarea / label / form.
   Appended last so it is the authoritative source of truth.
   Brand button type is 11px (overrides the generic mobile 13px floor
   for buttons only — buttons are the design's signature element).
   ============================================================= */

/* ---- 1. BUTTON STANDARD (filled, light backgrounds) ---------------- */
.btn,
.form-submit,
.cart-checkout-btn,
.modal-add-to-cart,
.hero-btn,
.hero-btn--ghost,
.size-chart-tab.is-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--burgundy);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
  padding: 16px 40px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn:hover,
.form-submit:hover,
.cart-checkout-btn:hover,
.modal-add-to-cart:hover,
.hero-btn:hover,
.hero-btn--ghost:hover {
  background: var(--burgundy-dark);
  color: #fff;
  transform: none;
}
/* full-width action buttons keep the standard look, just span the row */
.cart-checkout-btn,
.modal-add-to-cart {
  width: 100%;
  box-sizing: border-box;
}
.modal-add-to-cart:disabled,
.btn:disabled {
  background: var(--border);
  color: var(--warm-gray);
  cursor: not-allowed;
}

/* ---- 2. BUTTON STANDARD (inverted, for burgundy/dark sections) -----
   Same type metrics as the standard; colours flipped for contrast.
   Used by the newsletter band and the email popup, which sit on a
   burgundy background where a burgundy button would be invisible. */
.newsletter-btn,
.email-popup-btn {
  background: var(--parchment);
  color: var(--burgundy);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
  padding: 16px 28px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.newsletter-btn:hover,
.email-popup-btn:hover {
  background: var(--cream);
  color: var(--burgundy);
}

/* ---- 3. INPUT / TEXTAREA STANDARD --------------------------------- */
.form-input,
.form-textarea,
input[type="text"].form-input,
input[type="email"].form-input,
input[type="tel"].form-input,
input[type="password"].form-input,
input[type="search"].form-input,
input[type="number"].form-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  background: transparent;
  color: var(--burgundy-dark);
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--warm-gray);
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--burgundy);
  outline: none;
  box-shadow: none;
}
.form-textarea {
  min-height: 120px;
  line-height: 1.7;
  resize: vertical;
}
.form-input--error {
  border-color: var(--burgundy);
  background: rgba(128, 0, 0, 0.04);
}

/* ---- 4. FORM LABELS + LAYOUT -------------------------------------- */
.form-label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
}
.contact-form,
.track-order-form {
  display: flex;
  flex-direction: column;
}
.form-field {
  margin-bottom: 18px;
}
.form-submit {
  align-self: flex-start;
  margin-top: 4px;
}

/* ---- 5. FORM SUBMIT STATUS (sending / success / error) ------------ */
.form-status {
  margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  min-height: 1em;
}
.form-status--sending {
  color: var(--text-muted);
}
.form-status--success {
  color: var(--burgundy);
}
.form-status--error {
  color: var(--burgundy-dark);
}

/* =============================================================
   APPALOOSA v4.8 — EDITORIAL REFINEMENT LAYER
   CSS-only elevation of the existing design. Same brand identity,
   tokens, button & input standards — refined typography scale,
   vertical rhythm, hover/transition polish and editorial spacing.
   Appended last so it elevates without rewriting the design above.
   ============================================================= */

/* ---- 1. TYPOGRAPHY SCALE — clearer hierarchy --------------------- */
.eyebrow,
.page-hero-eyebrow,
.newsletter-eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--warm-gray);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--burgundy);
}
.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.page-hero-sub {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  color: var(--text-muted);
}
.about-body,
.contact-body,
.modal-desc,
.product-single-desc {
  line-height: 1.85;
}

/* ---- 2. VERTICAL RHYTHM — more generous, consistent whitespace --- */
.collections-section,
.products-section,
.about-section,
.gallery-section,
.articles-section,
.contact-section {
  padding-top: clamp(72px, 8vw, 132px);
  padding-bottom: clamp(72px, 8vw, 132px);
}
.products-header,
.articles-header,
.collections-header,
.gallery-header {
  margin-bottom: clamp(36px, 5vw, 64px);
}
.page-hero {
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(40px, 5vw, 72px);
}

/* ---- 3. EDITORIAL DIVIDERS -------------------------------------- */
.deco-line {
  position: relative;
  height: 1px;
  background: var(--border);
  margin: 22px auto 0;
  max-width: 64px;
}
.deco-spot {
  width: 5px;
  height: 5px;
  background: var(--burgundy);
  border-radius: 50%;
}
.collections-header,
.gallery-header {
  text-align: center;
}

/* ---- 4. INTERACTIVE POLISH — buttons / links -------------------- */
.btn,
.form-submit,
.cart-checkout-btn,
.modal-add-to-cart,
.newsletter-btn,
.email-popup-btn,
.about-cta,
.view-all-link {
  transition: background 0.25s ease, color 0.25s ease,
    transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover,
.form-submit:hover,
.cart-checkout-btn:hover,
.modal-add-to-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -12px rgba(92, 0, 0, 0.55);
}
.view-all-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.view-all-link::after {
  content: "→";
  transition: transform 0.25s ease;
}
.view-all-link:hover::after,
.about-cta:hover {
  transform: translateX(0);
}
.view-all-link:hover::after {
  transform: translateX(4px);
}
.about-cta {
  position: relative;
  transition: color 0.25s ease;
}

/* ---- 5. HERO — more dramatic, refined placement ----------------- */
.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(40, 8, 8, 0.18) 0%,
    rgba(40, 8, 8, 0.05) 38%,
    rgba(40, 8, 8, 0.42) 100%
  );
}
.hero-content {
  z-index: 3;
}
.hero-logo-img {
  filter: drop-shadow(0 18px 40px rgba(20, 4, 4, 0.35));
}
.hero-scroll span {
  letter-spacing: 0.32em;
}
.hero-scroll-line {
  animation: heroScrollPulse 2.4s var(--ease-out) infinite;
}
@keyframes heroScrollPulse {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* ---- 6. COLLECTION CARDS — refined hover ------------------------ */
.collection-card {
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.collection-card-placeholder {
  transition: transform 0.7s var(--ease-out);
}
.collection-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px -28px rgba(40, 8, 8, 0.5);
}
.collection-card:hover .collection-card-placeholder {
  transform: scale(1.06);
}
.collection-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(40, 8, 8, 0) 30%,
    rgba(40, 8, 8, 0.62) 100%
  );
  transition: background 0.4s ease;
}
.collection-card:hover .collection-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(40, 8, 8, 0.05) 10%,
    rgba(40, 8, 8, 0.72) 100%
  );
}
.collection-card-link {
  position: relative;
  padding-bottom: 3px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.35s var(--ease-out);
}
.collection-card:hover .collection-card-link {
  background-size: 100% 1px;
}

/* ---- 7. PRODUCT CARDS — cleaner, refined hover ------------------ */
.product-card {
  transition: transform 0.35s var(--ease-out);
}
.product-card-media {
  overflow: hidden;
  background: var(--cream-dark);
}
.product-silhouette {
  transition: transform 0.7s var(--ease-out);
}
.product-card:hover .product-silhouette {
  transform: scale(1.05);
}
.product-card-name {
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--burgundy-dark);
  margin-top: 16px;
}
.product-card-price {
  margin-top: 4px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.product-card-quick-add {
  letter-spacing: 0.16em;
  transition: background 0.3s ease, color 0.3s ease, transform 0.35s var(--ease-out);
}
.product-badge {
  letter-spacing: 0.16em;
  backdrop-filter: blur(2px);
}

/* ---- 8. ABOUT — image / text balance --------------------------- */
.about-grid {
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}
.about-img-main {
  box-shadow: 0 30px 60px -40px rgba(40, 8, 8, 0.55);
}
.about-text .section-title {
  margin-bottom: 22px;
}

/* ---- 9. GALLERY — editorial grid ------------------------------- */
.gallery-item-inner {
  overflow: hidden;
}
.gallery-item-inner > [class*="silhouette"],
.gallery-item-inner {
  transition: transform 0.7s var(--ease-out);
}
.gallery-item:hover .gallery-item-inner:not(.gallery-item-inner--empty) {
  transform: scale(1.04);
}
.gallery-item-overlay {
  background: rgba(40, 8, 8, 0.28);
  transition: opacity 0.4s ease;
}
.gallery-plus {
  font-weight: 300;
}

/* ---- 10. JOURNAL — refined article cards ----------------------- */
.article-card {
  transition: transform 0.35s var(--ease-out);
}
.article-card-img {
  overflow: hidden;
  transition: transform 0.6s var(--ease-out);
}
.article-card:hover .article-card-img {
  transform: scale(1.03);
}
.article-card-title {
  transition: color 0.25s ease;
  line-height: 1.3;
}
.article-card:hover .article-card-title {
  color: var(--burgundy);
}
.article-card-tag {
  color: var(--warm-gray);
  letter-spacing: 0.18em;
}

/* ---- 11. NEWSLETTER — more elegant ----------------------------- */
.newsletter-inner {
  max-width: 560px;
}
.newsletter-title {
  margin-bottom: 36px;
  line-height: 1.3;
}
.newsletter-form {
  gap: 0;
  border: 1px solid rgba(245, 239, 224, 0.22);
}
.newsletter-input {
  border: none;
  background: transparent;
}
.newsletter-btn {
  transition: background 0.25s ease, color 0.25s ease;
}

/* ---- 12. CONTACT / TRACK FORMS — elegant spacing --------------- */
.contact-grid {
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.contact-form,
.track-order-form {
  gap: 0;
}
.form-field {
  margin-bottom: 22px;
}
.form-label {
  margin-bottom: 9px;
}
.form-input,
.form-textarea {
  transition: border-color 0.25s ease, background 0.25s ease;
}
.form-input:hover,
.form-textarea:hover {
  border-color: var(--warm-gray);
}
.contact-info .section-title {
  margin-bottom: 20px;
}

/* ---- 13. REDUCED MOTION — keep the new motion respectful -------- */
@media (prefers-reduced-motion: reduce) {
  .collection-card:hover,
  .product-card:hover .product-silhouette,
  .collection-card:hover .collection-card-placeholder,
  .article-card:hover .article-card-img,
  .gallery-item:hover .gallery-item-inner {
    transform: none !important;
  }
  .hero-scroll-line {
    animation: none !important;
  }
}
