/* ============================================================
   DRIFT — Custom CSS (animations, effects, complex gradients)
   Tailwind handles layout/spacing; this file handles the rest.
   ============================================================ */

/* ---- Custom cursor ---- */
* { cursor: none !important; }

.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: #D94420; border: 1.5px solid #D94420;
  border-radius: 50%; pointer-events: none; z-index: 9999;
  translate: -50% -50%;
  transition: background 0.2s, border-color 0.2s, width 0.2s, height 0.2s;
}
.cursor-dot.hovered { background: transparent; }
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(217,68,32,0.35); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  translate: -50% -50%;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s, border-color 0.2s;
}
.cursor-ring.hovered { transform: scale(2.8); border-color: rgba(217,68,32,0.6); }
@keyframes cursor-ripple {
  from { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  to   { transform: translate(-50%, -50%) scale(3.5); opacity: 0; }
}

/* ---- Animations ---- */
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.65); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slide-up {
  from { transform: translateY(108%); }
  to   { transform: translateY(0); }
}
@keyframes rule-in {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes shimmer-in {
  from { transform: translateX(-130%); }
  to   { transform: translateX(130%); }
}

.animate-fade-up   { animation: fade-up 0.85s cubic-bezier(0.16,1,0.3,1) forwards; }
.animate-slide-up  { animation: slide-up 1.15s cubic-bezier(0.16,1,0.3,1) forwards; }
.animate-rule      { animation: rule-in 1.5s cubic-bezier(0.16,1,0.3,1) forwards; }

/* ---- Hero ---- */
.hero-section {
  position: relative; height: 100vh; min-height: 640px;
  background: #0C0905; overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(12,9,5,0.72) 0%, rgba(12,9,5,0.52) 50%, rgba(12,9,5,0.82) 100%);
  z-index: 1;
}
.hero-glow {
  position: absolute; bottom: -15%; left: 5%; right: 5%; height: 55%;
  background: radial-gradient(ellipse, rgba(26,77,204,0.18) 0%, transparent 68%);
  z-index: 2; pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 400px; z-index: 3; pointer-events: none; opacity: 0.5;
}
.hero-bg-word {
  position: absolute; top: 4%; right: -2%;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(7rem, 20vw, 24rem);
  text-transform: uppercase; color: rgba(248,245,238,0.06);
  letter-spacing: -0.02em; line-height: 1;
  user-select: none; pointer-events: none; white-space: nowrap; z-index: 4;
  opacity: 0; animation: fade-up 2.5s ease 0.2s forwards;
}
.hero-location {
  position: absolute; top: calc(68px + 2rem); left: 2.5rem; z-index: 5;
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(248,245,238,0.28);
  opacity: 0; animation: fade-up 1.2s ease 0.5s forwards;
}
.hero-location-dot {
  width: 5px; height: 5px; border-radius: 50%; background: #D94420;
  animation: dot-pulse 2.4s ease-in-out infinite;
}
.hero-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; z-index: 5;
}
.hero-headline-zone {
  flex: 0 0 60%; display: flex; align-items: flex-end;
  padding: 0 2.5rem; overflow: hidden;
}
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(4.5rem, 14vw, 17rem);
  line-height: 0.84; text-transform: uppercase; letter-spacing: -0.025em;
  color: #F8F5EE; transform: translateY(6px);
  animation: slide-up 1.15s cubic-bezier(0.16,1,0.3,1) 0.55s both;
}
.hero-rule {
  position: absolute; left: 0; right: 0; top: 60%;
  height: 1px; background: rgba(248,245,238,0.1);
  z-index: 3; transform-origin: left;
  animation: rule-in 1.5s cubic-bezier(0.16,1,0.3,1) 0.75s both;
}
.hero-sub-zone {
  flex: 1; display: flex; align-items: flex-start;
  justify-content: space-between; padding: 2.5rem; gap: 3rem;
}
.hero-sub-left { display: flex; flex-direction: column; gap: 2rem; }
.hero-descriptor {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  color: rgba(248,245,238,0.5); line-height: 1.3; max-width: 26ch;
  opacity: 0; animation: fade-up 0.8s ease 1.35s forwards;
}
.hero-cta-wrap {
  opacity: 0; animation: fade-up 0.7s ease 1.55s forwards;
}
.hero-section-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(6rem, 12vw, 14rem);
  line-height: 1; color: rgba(248,245,238,0.04);
  user-select: none; letter-spacing: -0.02em;
  opacity: 0; animation: fade-up 1s ease 1.7s forwards;
}

/* ---- Navbar ---- */
.nav-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px; display: flex; align-items: center; padding: 0 2.5rem;
  transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s;
}
.nav-bar.scrolled {
  background: rgba(12,9,5,0.9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.nav-bar.nav-solid {
  background: #F8F5EE;
  border-bottom: 1px solid #D0C8B8;
}
.nav-bar.nav-solid.scrolled {
  background: rgba(248,245,238,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.nav-bar.nav-solid .nav-logo { color: #0C0905; }
.nav-bar.nav-solid .nav-link { color: rgba(12,9,5,0.55); }
.nav-bar.nav-solid .nav-link:hover { color: #0C0905; }
.nav-bar.nav-solid .nav-icon { color: rgba(12,9,5,0.6); }
.nav-bar.nav-solid .nav-icon:hover { color: #0C0905; background: rgba(12,9,5,0.06); }
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-style: italic; font-size: 1.5rem;
  letter-spacing: 0.06em; color: #F8F5EE; text-transform: uppercase;
}
.nav-link {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(248,245,238,0.6);
  position: relative; transition: color 0.2s;
  background: none; border: none; padding: 0;
  font-family: 'Barlow', sans-serif;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: #D94420; transition: width 0.3s;
}
.nav-link:hover, .nav-link.active { color: #F8F5EE; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-icon {
  width: 40px; height: 40px; display: grid; place-items: center;
  color: rgba(248,245,238,0.6); border-radius: 50%;
  transition: color 0.2s, background 0.2s; position: relative;
}
.nav-icon:hover { color: #F8F5EE; background: rgba(248,245,238,0.07); }
.cart-pip {
  position: absolute; top: 7px; right: 7px;
  width: 6px; height: 6px; background: #D94420; border-radius: 50%;
}

/* ---- Cart Drawer ---- */
.cart-backdrop {
  position: fixed; inset: 0; background: rgba(12,9,5,0.58); z-index: 200;
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-backdrop.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px;
  max-width: 92vw; background: #0C0905; z-index: 201;
  display: flex; flex-direction: column;
  border-left: 1px solid rgba(248,245,238,0.07);
  transform: translateX(100%); transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
}
.cart-drawer.open { transform: translateX(0); }

/* ---- Search Panel ---- */
.search-backdrop {
  position: fixed; inset: 0; background: rgba(12,9,5,0.62); z-index: 150;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.search-backdrop.open { opacity: 1; pointer-events: all; }
.search-panel {
  position: fixed; top: 68px; left: 0; right: 0; z-index: 151;
  background: rgba(12,9,5,0.97);
  border-bottom: 1px solid rgba(248,245,238,0.07);
  transform: translateY(-12px); opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.35s;
  pointer-events: none;
}
.search-panel.open { transform: translateY(0); opacity: 1; pointer-events: all; }

.search-panel-inner { max-width: 900px; margin: 0 auto; padding: 2.25rem 2.5rem 2.5rem; }

.search-input-row { display: flex; align-items: center; gap: 0.875rem; }

.search-input-icon { color: #7A7268; flex-shrink: 0; }

.search-input {
  flex: 1; background: transparent; border: none;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-style: italic;
  font-size: clamp(1.375rem, 3vw, 2rem); letter-spacing: 0.02em;
  color: #F8F5EE; outline: none; min-width: 0; padding: 0.25rem 0;
}
.search-input::placeholder { color: rgba(248,245,238,0.18); }
.search-input::-webkit-search-cancel-button,
.search-input::-webkit-search-decoration { display: none; }

.search-clear {
  color: rgba(248,245,238,0.4); width: 28px; height: 28px;
  display: grid; place-items: center; border-radius: 50%; flex-shrink: 0;
  border: none; cursor: pointer; background: transparent;
  transition: color 0.2s, background 0.2s;
  opacity: 0; pointer-events: none; transition: color 0.2s, background 0.2s, opacity 0.18s;
}
.search-clear.visible { opacity: 1; pointer-events: all; }
.search-clear:hover { color: #F8F5EE; background: rgba(248,245,238,0.08); }
.search-clear:focus-visible { outline: 2px solid #D94420; outline-offset: 2px; }

.search-close-btn {
  display: flex; align-items: center; gap: 0.4rem;
  color: rgba(248,245,238,0.32);
  font-family: 'Barlow', sans-serif; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  flex-shrink: 0; padding: 0.4rem 0.7rem;
  border: 1px solid rgba(248,245,238,0.12); border-radius: 2px;
  background: transparent; cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.search-close-btn:hover { color: #F8F5EE; border-color: rgba(248,245,238,0.28); background: rgba(248,245,238,0.04); }
.search-close-btn:focus-visible { outline: 2px solid #D94420; outline-offset: 2px; }

.search-horizon {
  height: 1px; background: rgba(248,245,238,0.08);
  transform-origin: left; margin: 1.25rem 0 0;
  transform: scaleX(0);
}
.search-panel.open .search-horizon {
  animation: search-horizon-in 1.2s linear 0.05s both;
}
@keyframes search-horizon-in { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.search-content {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem; padding-top: 1.75rem;
}

.search-section-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: #7A7268; margin-bottom: 1rem;
  font-family: 'Barlow', sans-serif;
}
.search-panel.open .search-section-label {
  animation: search-label-in 0.3s ease 0.12s both;
}
@keyframes search-label-in { from { opacity: 0; } to { opacity: 1; } }

.search-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.search-tag {
  font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.06em; color: rgba(248,245,238,0.55);
  border: 1px solid rgba(248,245,238,0.12); border-radius: 1px;
  padding: 0.4rem 0.875rem; background: transparent; cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.search-tag:hover { color: #F8F5EE; border-color: #D94420; background: rgba(217,68,32,0.08); }
.search-tag:focus-visible { outline: 2px solid #D94420; outline-offset: 2px; }

/* Staggered tag entrance — matches React Framer Motion stagger */
.search-panel.open .search-tag { animation: search-tag-in 0.3s cubic-bezier(0.16,1,0.3,1) both; }
.search-panel.open .search-tag:nth-child(1) { animation-delay: 0.18s; }
.search-panel.open .search-tag:nth-child(2) { animation-delay: 0.22s; }
.search-panel.open .search-tag:nth-child(3) { animation-delay: 0.26s; }
.search-panel.open .search-tag:nth-child(4) { animation-delay: 0.30s; }
.search-panel.open .search-tag:nth-child(5) { animation-delay: 0.34s; }
.search-panel.open .search-tag:nth-child(6) { animation-delay: 0.38s; }
.search-panel.open .search-tag:nth-child(7) { animation-delay: 0.42s; }
@keyframes search-tag-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.search-products { display: flex; flex-direction: column; }

.search-product-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.875rem 0;
  border-bottom: 1px solid rgba(248,245,238,0.05);
  text-decoration: none;
  transition: background 0.15s;
}
.search-product-row:first-child { border-top: 1px solid rgba(248,245,238,0.05); }
.search-product-row:hover .search-product-name { color: #F8F5EE; }
.search-product-row:focus-visible { outline: 2px solid #D94420; outline-offset: 2px; }

/* Staggered product row entrance — matches React Framer Motion x slide */
.search-panel.open .search-product-row { animation: search-product-in 0.35s cubic-bezier(0.16,1,0.3,1) both; }
.search-panel.open .search-product-row:nth-child(1) { animation-delay: 0.22s; }
.search-panel.open .search-product-row:nth-child(2) { animation-delay: 0.29s; }
.search-panel.open .search-product-row:nth-child(3) { animation-delay: 0.36s; }
@keyframes search-product-in {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.search-product-info { display: flex; flex-direction: column; gap: 0.2rem; }

.search-product-brand {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: #D94420;
  font-family: 'Barlow', sans-serif;
}

.search-product-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-style: italic;
  font-size: 1rem; color: rgba(248,245,238,0.65); letter-spacing: 0.02em;
  transition: color 0.2s;
}

.search-product-price {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: 1.05rem; color: #F8F5EE; white-space: nowrap; flex-shrink: 0;
}

/* ---- Nav Strip ---- */
.nav-strip-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.375rem 2rem; border-right: 1px solid #D0C8B8;
  gap: 1rem; position: relative; overflow: hidden; text-decoration: none;
  transition: background 0.3s;
}
.nav-strip-link:last-child { border-right: none; }
.nav-strip-link:hover { background: #EDE8DC; }
.nav-strip-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-style: italic; font-size: 0.68rem;
  letter-spacing: 0.06em; color: #7A7268;
  transition: color 0.2s;
}
.nav-strip-link:hover .nav-strip-num { color: #D94420; }
.nav-strip-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  text-transform: uppercase; letter-spacing: 0.04em; color: #0C0905;
  transition: transform 0.2s;
}
.nav-strip-link:hover .nav-strip-name { transform: translateY(-3px); }
.nav-strip-arrow { color: #C4B8A2; transition: color 0.2s, transform 0.2s; }
.nav-strip-link:hover .nav-strip-arrow { color: #1A4DCC; transform: translate(6px, -4px); }

/* ---- Featured Product ---- */
.product-featured {
  position: relative; overflow: hidden; margin-bottom: 1px; cursor: pointer;
}
.product-featured-img {
  width: 100%; aspect-ratio: 21 / 8; object-fit: cover; display: block;
  transition: transform 1s cubic-bezier(0.16,1,0.3,1);
}
.product-featured:hover .product-featured-img { transform: scale(1.03); }
.product-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(12,9,5,0.7) 0%, rgba(12,9,5,0.1) 55%);
  pointer-events: none;
}
.product-featured-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(248,245,238,0.07) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.85s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none; z-index: 2;
}
.product-featured:hover .product-featured-shimmer { transform: translateX(130%); }
.product-featured-info {
  position: absolute; left: 2.5rem; bottom: 2.5rem; color: #F8F5EE;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.product-featured:hover .product-featured-info { transform: translateY(-8px); }

/* ---- Product Cell ---- */
.product-cell {
  position: relative; overflow: hidden; background: #F8F5EE; cursor: pointer;
  transition: none;
}
.product-cell-line {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: #1A4DCC; z-index: 2; transform: scaleX(0); transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
}
.product-cell:hover .product-cell-line { transform: scaleX(1); }
.product-cell-img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block;
  transition: transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.product-cell:hover .product-cell-img { transform: scale(1.07); }
.product-cell-wishlist {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  background: rgba(248,245,238,0.88); backdrop-filter: blur(8px);
  border: none; z-index: 3; color: #7A7268;
  opacity: 0; transition: opacity 0.22s, color 0.2s;
}
.product-cell:hover .product-cell-wishlist { opacity: 1; }
.product-cell-wishlist.active { opacity: 1 !important; color: #D94420; }
.product-cell-info {
  padding: 1.125rem 1.375rem 1.5rem;
  transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
}
.product-cell:hover .product-cell-info { transform: translateY(-6px); }
.product-cell-add {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.9rem 1.25rem; background: #0C0905; color: #F8F5EE;
  font-family: 'Barlow', sans-serif; font-size: 0.75rem;
  font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  transform: translateY(100%); transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
}
.product-cell:hover .product-cell-add { transform: translateY(0); }
.product-cell-price { transition: color 0.3s; }
.product-cell:hover .product-cell-price { color: #D94420 !important; }

/* ---- Manifesto ---- */
.manifesto-section {
  background: #181410; padding: 8rem 2.5rem; position: relative;
}
.manifesto-section::before, .manifesto-section::after {
  content: ''; position: absolute; left: 0; right: 0;
  height: 1px; background: rgba(248,245,238,0.07);
}
.manifesto-section::before { top: 0; }
.manifesto-section::after  { bottom: 0; }

/* ---- Instagram Feed ---- */
.ig-carousel-track {
  display: flex; gap: 1rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  padding-left: clamp(1.5rem, 5vw, 5rem);
  padding-right: clamp(1.5rem, 5vw, 5rem);
  scroll-behavior: smooth;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}
.ig-carousel-track::-webkit-scrollbar { display: none; }
.ig-story-card {
  flex: 0 0 200px; width: 200px; aspect-ratio: 3/4;
  position: relative; overflow: hidden; cursor: pointer;
  scroll-snap-align: start;
}
.ig-story-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.ig-story-card:hover img { transform: scale(1.05); }
.ig-story-overlay-top {
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, rgba(12,9,5,0.55) 0%, transparent 100%);
  z-index: 1; pointer-events: none;
}
.ig-story-overlay-bot {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(12,9,5,0.72) 0%, transparent 100%);
  z-index: 1; pointer-events: none;
}
.ig-story-ring {
  position: absolute; inset: 0; border: 2px solid #D94420;
  pointer-events: none; z-index: 3; opacity: 0; transition: opacity 0.22s;
}
.ig-story-card:hover .ig-story-ring { opacity: 1; }
.ig-nav-btn {
  width: 38px; height: 38px; border: 1.5px solid #0C0905;
  background: transparent; color: #0C0905;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, color 0.2s;
}
.ig-nav-btn:hover:not(:disabled) { background: #0C0905; color: #F8F5EE; }
.ig-nav-btn:disabled { opacity: 0.25; cursor: default; }

/* ---- Categories ---- */
.cat-panel { position: relative; overflow: hidden; display: block; cursor: pointer; }
.cat-panel img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 1s ease;
}
.cat-panel:hover img { transform: scale(1.05); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(12,9,5,0.18) 0%, rgba(12,9,5,0.35) 45%, rgba(12,9,5,0.88) 100%);
  transition: background 0.4s;
}
.cat-panel:hover .cat-overlay {
  background: linear-gradient(to bottom, rgba(12,9,5,0.25) 0%, rgba(12,9,5,0.45) 45%, rgba(12,9,5,0.95) 100%);
}
.cat-panel:first-child::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 1px;
  background: rgba(248,245,238,0.12); z-index: 2;
}
.cat-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: #F8F5EE;
  opacity: 0; transform: translateY(8px); transition: opacity 0.28s, transform 0.28s;
}
.cat-panel:hover .cat-cta { opacity: 1; transform: translateY(0); }

/* ---- Newsletter ---- */
.newsletter-input {
  width: 100%; padding: 1rem 1.25rem; background: #F8F5EE;
  border: 1px solid #D0C8B8; font-family: 'Barlow', sans-serif;
  font-size: 0.9rem; color: #0C0905; outline: none; border-radius: 1px;
  transition: border-color 0.2s;
}
.newsletter-input:focus { border-color: #1A4DCC; }
.newsletter-input::placeholder { color: #7A7268; }

/* ---- Footer social ---- */
.footer-social {
  width: 36px; height: 36px; border: 1px solid rgba(248,245,238,0.1);
  border-radius: 50%; display: grid; place-items: center;
  color: rgba(248,245,238,0.4); transition: border-color 0.2s, color 0.2s;
}
.footer-social:hover { border-color: #D94420; color: #D94420; }

/* ---- Buttons ---- */
.btn-ocean {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Barlow', sans-serif; font-weight: 500;
  font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.875rem 2.25rem; border-radius: 1px; cursor: pointer;
  background: #1A4DCC; color: white; border: 1px solid #1A4DCC;
  transition: background 0.25s, border-color 0.25s; white-space: nowrap;
}
.btn-ocean:hover { background: #1237A0; border-color: #1237A0; }
.btn-outline-ink {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Barlow', sans-serif; font-weight: 500;
  font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.875rem 2.25rem; border-radius: 1px; cursor: pointer;
  background: transparent; color: #0C0905; border: 1px solid #0C0905;
  transition: background 0.25s, color 0.25s; white-space: nowrap;
}
.btn-outline-ink:hover { background: #0C0905; color: #F8F5EE; }

/* ---- Collection card hover ---- */
.col-card {
  position: relative; overflow: hidden; background: #F8F5EE;
  cursor: pointer; transition: none;
}
.col-card-rule {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: #1A4DCC; transform: scaleX(0); transform-origin: left;
  transition: transform 0.36s cubic-bezier(0.16,1,0.3,1);
}
.col-card:hover .col-card-rule { transform: scaleX(1); }
.col-card img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.col-card:hover img { transform: scale(1.06); }
.col-card-quick-add {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem; background: #0C0905; color: #F8F5EE;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transform: translateY(110%); transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
}
.col-card:hover .col-card-quick-add { transform: translateY(0); }
.col-card-wishlist {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  background: rgba(248,245,238,0.88); backdrop-filter: blur(8px);
  border: none; z-index: 3; color: #7A7268;
  opacity: 0; transition: opacity 0.22s, color 0.2s; cursor: pointer;
}
.col-card:hover .col-card-wishlist { opacity: 1; }
.col-card-wishlist.active { opacity: 1 !important; color: #D94420; }
.col-card-info {
  padding: 1rem 1.25rem 1.375rem;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.col-card:hover .col-card-info { transform: translateY(-5px); }
.col-card-price { transition: color 0.28s; }
.col-card:hover .col-card-price { color: #D94420 !important; }
.col-card-brand { transition: letter-spacing 0.3s, opacity 0.3s; }
.col-card:hover .col-card-brand { letter-spacing: 0.22em !important; opacity: 1 !important; }

/* ---- Sort dropdown ---- */
.sort-menu {
  position: absolute; right: 0; top: calc(100% + 6px);
  background: #F8F5EE; border: 1px solid #D0C8B8;
  min-width: 180px; z-index: 50; transform-origin: top;
  box-shadow: 0 8px 24px rgba(12,9,5,0.12);
  opacity: 0; transform: scaleY(0.92) translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.sort-menu.open { opacity: 1; transform: scaleY(1) translateY(0); pointer-events: all; }
.sort-item {
  display: block; width: 100%; padding: 0.75rem 1rem; text-align: left;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
  color: #7A7268; transition: color 0.15s, background 0.15s;
  background: none; border: none; font-family: 'Barlow', sans-serif; cursor: pointer;
}
.sort-item:hover { background: #EDE8DC; color: #0C0905; }
.sort-item.active { color: #0C0905; font-weight: 600; }

/* ---- Scrollbar ---- */
.cart-body { scrollbar-width: thin; scrollbar-color: rgba(248,245,238,0.1) transparent; }

/* ---- Bottom Nav (mobile) ---- */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(12,9,5,0.96); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(248,245,238,0.07);
  display: none; align-items: center; justify-content: space-around;
  padding: 0.75rem 0.5rem calc(0.75rem + env(safe-area-inset-bottom));
}


/* ---- Collection hero ---- */
.col-hero {
  position: relative; background: #0C0905;
  padding: 7rem 2.5rem 4.5rem; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; min-height: 320px;
}
.col-hero-ghost {
  position: absolute; top: -0.15em; right: 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(8rem, 20vw, 22rem);
  color: rgba(248,245,238,0.035); line-height: 1;
  pointer-events: none; user-select: none;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.65)} }
.col-hero-dot { animation: pulse 2s ease-in-out infinite; }
.col-hero-rule {
  height: 1px; background: rgba(248,245,238,0.12);
  margin-top: 2.5rem; transform-origin: left;
  animation: rule-in 1.4s linear 0.3s both;
}

/* ---- Filter bar ---- */
.filter-tab {
  position: relative; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #7A7268; background: none; border: none;
  padding: 0.5rem 0; cursor: pointer; transition: color 0.2s;
  font-family: 'Barlow', sans-serif;
}
.filter-tab.active { color: #0C0905; }
.filter-indicator {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: #0C0905; border-radius: 1px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .search-panel { top: 0; bottom: 0; overflow-y: auto; }
  .search-panel-inner { padding: calc(56px + 1.25rem) 1.25rem 2rem; }
  .search-content { grid-template-columns: 1fr; gap: 2rem; }
  .bottom-nav { display: flex; }
  .pdp-layout { grid-template-columns: 1fr; }
  .pdp-gallery-wrap { position: relative; top: 0; height: 70vw; }
  .hero-headline { font-size: clamp(3.5rem, 18vw, 6rem); }
  .manifesto-section { padding: 4rem 1.25rem; }
  .manifesto-body-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .newsletter-grid-cols { grid-template-columns: 1fr !important; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
  .cat-panel:first-child::after { display: none; }
  .cat-panel { height: 65vw; }
  .ig-story-card { flex: 0 0 160px; width: 160px; }
  .nav-strip-inner-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .product-grid-cols { grid-template-columns: repeat(2, 1fr) !important; }
  .col-grid-inner { grid-template-columns: repeat(2, 1fr) !important; }
  .col-hero { padding: 5rem 1.25rem 3rem; }
  .pdp-info { padding: 0; }
  .col-filter-bar { padding: 0 1.25rem; flex-wrap: wrap; gap: 0.75rem; }
  .col-filter-tabs { overflow-x: auto; }
  .col-grid { grid-template-columns: repeat(2, 1fr); }
  .col-card--featured { grid-column: span 1; }
  .col-card--featured .col-card-img-wrap { aspect-ratio: 3/4; }
  .col-grid-section { padding: 2rem 1.25rem 3rem; }
  .col-load-more { padding: 0 1.25rem 4rem; }
  .pdp-gallery { border-right: none; border-bottom: 1px solid #D0C8B8; }
  .pdp-thumbs { flex-direction: row; }
  .pdp-info-sticky { position: relative; top: 0; max-height: none; padding: 2rem 1.25rem; }
  .pdp-related { padding: 3rem 1.25rem; }
  .pdp-related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   COLLECTION PAGE — new React-matched CSS
   ================================================================ */

/* ── Collection hero inner ───────────────────────────────────── */
.col-hero-inner { position: relative; z-index: 1; }

.col-hero-eyebrow {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: #7A7268; margin-bottom: 1rem;
}

.col-hero-title { display: flex; flex-direction: column; line-height: 0.88; }

.col-hero-line-thin {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 300; font-style: italic;
  font-size: clamp(3rem, 8vw, 8rem);
  color: rgba(248,245,238,0.45); letter-spacing: 0.02em; text-transform: uppercase;
}

.col-hero-line-bold {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(4rem, 11vw, 12rem);
  color: #F8F5EE; letter-spacing: -0.01em; text-transform: uppercase;
}

.col-hero-meta {
  position: absolute; bottom: 3rem; right: 2.5rem;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.3rem; z-index: 1;
}

.col-hero-count {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-style: italic;
  font-size: 1.5rem; color: #F8F5EE;
}

.col-hero-season {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: #7A7268;
}

/* ── Filter bar ──────────────────────────────────────────────── */
.col-filter-bar {
  position: sticky; top: 68px; z-index: 90;
  background: #F8F5EE; border-bottom: 1px solid #D0C8B8;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; gap: 1.5rem;
}

.col-filter-tabs { display: flex; align-items: center; gap: 0; }

.col-filter-tab {
  position: relative; padding: 1.1rem 1.375rem;
  font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: #7A7268;
  transition: color 0.2s; white-space: nowrap; background: none; border: none; cursor: pointer;
}
.col-filter-tab:hover { color: #0C0905; }
.col-filter-tab.active { color: #0C0905; }
.col-filter-tab:focus-visible { outline: 2px solid #D94420; outline-offset: -2px; }

.col-filter-indicator {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: #0C0905; border-radius: 1px;
}

.col-filter-right { display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0; }

.col-filter-count {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: #7A7268;
}

/* ── Sort dropdown ───────────────────────────────────────────── */
.col-sort { position: relative; }

.col-sort-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #0C0905; border: 1px solid #D0C8B8; border-radius: 1px;
  background: transparent;
  transition: background 0.2s, border-color 0.2s; cursor: pointer;
}
.col-sort-btn:hover { background: #EDE8DC; border-color: #0C0905; }
.col-sort-btn:focus-visible { outline: 2px solid #D94420; outline-offset: 2px; }

.col-sort-menu {
  position: absolute; top: calc(100% + 6px); right: 0;
  min-width: 180px; background: #F8F5EE; border: 1px solid #D0C8B8;
  border-radius: 2px; overflow: hidden; z-index: 200;
  box-shadow: 0 8px 32px rgba(12,9,5,0.12); transform-origin: top;
  opacity: 0; transform: scaleY(0.92) translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.col-sort-menu.open { opacity: 1; transform: scaleY(1) translateY(0); pointer-events: all; }

.col-sort-item {
  display: flex; align-items: center; gap: 0.625rem;
  width: 100%; padding: 0.75rem 1rem;
  font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: #7A7268;
  text-align: left; background: none; border: none; cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.col-sort-item:hover { background: #EDE8DC; color: #0C0905; }
.col-sort-item.active { color: #0C0905; }
.col-sort-item:focus-visible { outline: 2px solid #D94420; outline-offset: -2px; }

.col-sort-tick { width: 5px; height: 5px; background: #D94420; border-radius: 50%; flex-shrink: 0; }

/* ── Product grid ────────────────────────────────────────────── */
.col-grid-section { padding: 3rem 2.5rem 4rem; }

.col-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: #D0C8B8;
}

/* ── Product card (React-matched) ────────────────────────────── */
.col-card {
  cursor: pointer; position: relative;
  background: #F8F5EE; overflow: hidden;
  display: flex; flex-direction: column;
}
.col-card:focus-visible { outline: 2px solid #1A4DCC; outline-offset: -2px; }

.col-card--featured { grid-column: span 2; }
.col-card--featured .col-card-img-wrap { aspect-ratio: 16/9; }

.col-card-rule {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: #1A4DCC; display: block; z-index: 2;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.36s cubic-bezier(0.16,1,0.3,1);
}
.col-card:hover .col-card-rule { transform: scaleX(1); }

.col-card-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; background: #EDE8DC;
}

.col-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.75s cubic-bezier(0.16,1,0.3,1), opacity 0.45s;
}
.col-card:hover .col-card-img { transform: scale(1.06); }
.col-card:hover .col-card-img:not(.col-card-img--hover) { opacity: 0; }

.col-card-tag {
  position: absolute; top: 1rem; left: 1rem;
  font-family: 'Barlow', sans-serif; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.28rem 0.625rem; border-radius: 1px; z-index: 2;
}
.col-card-tag--new         { background: #1A4DCC; color: white; }
.col-card-tag--sale        { background: #D94420; color: white; }
.col-card-tag--eco         { background: #2d6a4f; color: white; }
.col-card-tag--best-seller { background: #0C0905; color: #F8F5EE; }

.col-card-quick-add {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem; background: #0C0905; color: #F8F5EE;
  font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; z-index: 3;
  border: none; cursor: pointer;
  transform: translateY(110%); transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
}
.col-card:hover .col-card-quick-add { transform: translateY(0); }
.col-card-quick-add:focus-visible { outline: 2px solid #D94420; outline-offset: -2px; }

.col-card-wishlist {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  background: rgba(248,245,238,0.88); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: none; cursor: pointer; z-index: 3; color: #7A7268;
  opacity: 0; transition: opacity 0.22s, color 0.2s, background 0.2s;
}
.col-card:hover .col-card-wishlist { opacity: 1; }
.col-card-wishlist.active,
.col-card-wishlist--active { opacity: 1 !important; color: #D94420; }
.col-card-wishlist:hover { color: #D94420; background: rgba(248,245,238,0.98); }
.col-card-wishlist:focus-visible { opacity: 1; outline: 2px solid #1A4DCC; outline-offset: 2px; }

.col-card-info {
  padding: 1.125rem 1.375rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.25rem;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.col-card:hover .col-card-info { transform: translateY(-5px); }

.col-card-brand {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: #7A7268;
  transition: letter-spacing 0.3s, opacity 0.3s; opacity: 0.65;
}
.col-card:hover .col-card-brand { letter-spacing: 0.22em; opacity: 1; }

.col-card-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-style: italic;
  font-size: clamp(0.95rem, 1.5vw, 1.2rem); letter-spacing: 0.02em;
  color: #0C0905; line-height: 1.2;
}

.col-card-price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-top: 0.25rem; }

.col-card-price {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: 1.05rem; color: #1A4DCC;
  transition: color 0.28s;
}
.col-card:hover .col-card-price { color: #D94420; }

.col-card-was { font-size: 0.75rem; color: #7A7268; text-decoration: line-through; }

/* ── Load more ───────────────────────────────────────────────── */
.col-load-more { display: flex; justify-content: center; padding: 0 2.5rem 6rem; }

.col-load-btn {
  display: inline-flex; align-items: center; gap: 0.625rem;
  padding: 1rem 3rem; font-family: 'Barlow', sans-serif;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: #0C0905; border: 1px solid #0C0905; border-radius: 1px; background: transparent;
  transition: background 0.25s, color 0.25s; cursor: pointer;
}
.col-load-btn:hover { background: #0C0905; color: #F8F5EE; }
.col-load-btn:focus-visible { outline: 2px solid #D94420; outline-offset: 3px; }

/* ================================================================
   PRODUCT DETAIL PAGE — new React-matched CSS
   ================================================================ */

.pdp-page { min-height: 100vh; background: #F8F5EE; padding-top: 68px; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.pdp-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 1.25rem clamp(1.5rem, 5vw, 5rem);
  border-bottom: 1px solid #D0C8B8; flex-wrap: wrap;
}

.pdp-back-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: #7A7268;
  cursor: pointer; background: none; border: none; padding: 0;
  transition: color 0.2s;
}
.pdp-back-btn:hover { color: #0C0905; }

.pdp-breadcrumb-sep { font-size: 0.65rem; color: #C4B8A2; }

.pdp-breadcrumb-cat {
  font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: #7A7268;
  cursor: pointer; background: none; border: none; padding: 0; transition: color 0.2s;
}
.pdp-breadcrumb-cat:hover { color: #0C0905; }

.pdp-breadcrumb-current {
  font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.04em; color: #0C0905;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 220px;
}

/* ── Layout ─────────────────────────────────────────────────── */
.pdp-layout {
  display: grid; grid-template-columns: 58% 42%;
  max-width: 1440px; margin: 0 auto; align-items: start; min-height: 0; gap: 0;
}

/* ── Gallery ────────────────────────────────────────────────── */
.pdp-gallery {
  position: relative; border-right: 1px solid #D0C8B8;
  display: flex; flex-direction: column; gap: 0;
}

.pdp-gallery-main {
  position: relative; overflow: hidden;
  flex: 1; aspect-ratio: 4/5; background: #EDE8DC; min-height: 300px;
}

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

.pdp-tag-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  font-family: 'Barlow', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; z-index: 2;
}

.pdp-thumbs { display: flex; gap: 0; border-top: 1px solid #D0C8B8; }

.pdp-thumb {
  flex: 1; aspect-ratio: 1; overflow: hidden; cursor: pointer;
  position: relative; background: #EDE8DC; border: none;
  border-right: 1px solid #D0C8B8; padding: 0;
  opacity: 0.5; transition: opacity 0.22s;
}
.pdp-thumb:last-child { border-right: none; }
.pdp-thumb:hover { opacity: 0.8; }
.pdp-thumb--active { opacity: 1; }
.pdp-thumb--active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: #D94420;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-thumb:focus-visible { outline: 2px solid #1A4DCC; outline-offset: -2px; }

/* ── Info panel ─────────────────────────────────────────────── */
.pdp-info { position: relative; }

.pdp-info-sticky {
  position: sticky; top: 68px;
  padding: 2.5rem clamp(1.75rem, 3.5vw, 3.5rem);
  display: flex; flex-direction: column; gap: 1.25rem;
  max-height: calc(100vh - 68px); overflow-y: auto; scrollbar-width: none;
}
.pdp-info-sticky::-webkit-scrollbar { display: none; }

.pdp-info-header { display: flex; flex-direction: column; gap: 0.5rem; }

.pdp-brand {
  font-family: 'Barlow', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: #7A7268; margin: 0;
}

.pdp-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; font-style: italic; line-height: 1;
  letter-spacing: -0.01em; text-transform: uppercase; color: #0C0905; margin: 0;
}

.pdp-price-row { display: flex; align-items: baseline; gap: 0.75rem; margin-top: 0.25rem; }

.pdp-price {
  font-family: 'Barlow', sans-serif; font-size: 1.5rem; font-weight: 600;
  color: #1A4DCC; letter-spacing: -0.01em;
}

.pdp-was { font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 400; color: #7A7268; text-decoration: line-through; }

.pdp-saving {
  font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: white; background: #D94420; padding: 0.2rem 0.5rem;
}

.pdp-divider { height: 1px; background: #D0C8B8; }

/* ── Sizes ──────────────────────────────────────────────────── */
.pdp-sizes { display: flex; flex-direction: column; gap: 0.75rem; }

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

.pdp-sizes-label {
  font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #0C0905;
}

.pdp-size-guide {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-family: 'Barlow', sans-serif; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: #7A7268;
  cursor: pointer; background: none; border: none; padding: 0;
  text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s;
}
.pdp-size-guide:hover { color: #1A4DCC; }

.pdp-size-error {
  font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 600;
  color: #D94420; letter-spacing: 0.02em; margin: 0;
}

.pdp-size-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.pdp-size-grid--error .pdp-size-btn { border-color: rgba(217,68,32,0.4); }

.pdp-size-btn {
  min-width: 52px; padding: 0.55rem 0.75rem;
  font-family: 'Barlow', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.04em; color: #0C0905; background: transparent;
  border: 1.5px solid #D0C8B8; cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.pdp-size-btn:hover { border-color: #0C0905; }
.pdp-size-btn.active,
.pdp-size-btn--active { background: #0C0905; color: #F8F5EE; border-color: #0C0905; }
.pdp-size-btn:focus-visible { outline: 2px solid #1A4DCC; outline-offset: 2px; }

/* ── Actions ────────────────────────────────────────────────── */
.pdp-actions { display: flex; gap: 0.75rem; align-items: flex-start; }

.pdp-actions-col { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; min-width: 0; }

.pdp-qty {
  display: flex; align-items: center;
  border: 1.5px solid #D0C8B8; flex-shrink: 0; height: 52px;
}

.pdp-qty-btn {
  width: 44px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; color: #0C0905; transition: background 0.18s;
}
.pdp-qty-btn:hover { background: #EDE8DC; }
.pdp-qty-btn:focus-visible { outline: 2px solid #1A4DCC; outline-offset: -2px; }

.pdp-qty-num {
  font-family: 'Barlow', sans-serif; font-size: 0.9rem; font-weight: 600;
  color: #0C0905; width: 36px; text-align: center; line-height: 52px;
  user-select: none; flex-shrink: 0;
}

.pdp-add-btn {
  width: 100%; display: flex; align-items: center; justify-content: center;
  background: #1A4DCC; color: white; border: none;
  padding: 0 1.5rem; height: 52px; cursor: pointer;
  font-family: 'Barlow', sans-serif; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.22s; overflow: hidden; position: relative;
}
.pdp-add-btn:hover { background: #1237A0; }
.pdp-add-btn--added { background: #2d6a4f !important; }
.pdp-add-btn:focus-visible { outline: 2px solid #1A4DCC; outline-offset: 3px; }

.pdp-add-btn-inner { display: flex; align-items: center; gap: 0.5rem; }

/* ── Trust signals ──────────────────────────────────────────── */
.pdp-trust {
  list-style: none; display: flex; flex-direction: column; gap: 0.6rem;
  padding: 1.25rem; margin: 0;
  background: #EDE8DC; border-left: 3px solid #D94420;
}

.pdp-trust-item {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: 'Barlow', sans-serif; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.02em; color: #0C0905;
}
.pdp-trust-item svg { color: #D94420; flex-shrink: 0; }

/* ── Accordion (new) ────────────────────────────────────────── */
.pdp-accordion { display: flex; flex-direction: column; }

.pdp-accordion-item { border-top: 1px solid #D0C8B8; }
.pdp-accordion-item:last-child { border-bottom: 1px solid #D0C8B8; }

.pdp-accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0; background: none; border: none; cursor: pointer;
  font-family: 'Barlow', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #0C0905; text-align: left;
  transition: color 0.2s;
}
.pdp-accordion-btn:hover { color: #1A4DCC; }
.pdp-accordion-btn:focus-visible { outline: 2px solid #1A4DCC; outline-offset: -2px; }

.pdp-accordion-btn svg { transition: transform 0.25s cubic-bezier(0.16,1,0.3,1); flex-shrink: 0; }
.pdp-accordion-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.pdp-accordion-body {
  overflow: hidden; max-height: 0;
  transition: max-height 0.38s cubic-bezier(0.16,1,0.3,1);
}
.pdp-accordion-body.open { max-height: 400px; }

.pdp-accordion-text {
  font-family: 'Barlow', sans-serif; font-size: 0.83rem; line-height: 1.75;
  color: #7A7268; padding-bottom: 1.25rem; margin: 0;
}

/* ── Related products ───────────────────────────────────────── */
.pdp-related {
  border-top: 1px solid #D0C8B8; padding: 5rem clamp(1.5rem, 5vw, 5rem);
  background: #F8F5EE;
}

.pdp-related-header { margin-bottom: 3rem; }

.pdp-related-eyebrow {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: 'Barlow', sans-serif; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: #7A7268; margin: 0 0 0.5rem;
}

.pdp-related-dot { width: 6px; height: 6px; border-radius: 50%; background: #D94420; flex-shrink: 0; }

.pdp-related-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 900; font-style: italic; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase; color: #0C0905; margin: 0;
}

.pdp-related-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: #D0C8B8; border: 1px solid #D0C8B8;
}

.pdp-related-card {
  background: #F8F5EE; cursor: pointer; overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.pdp-related-card:hover { transform: translateY(-4px); }
.pdp-related-card:focus-visible { outline: 2px solid #1A4DCC; outline-offset: -2px; }

.pdp-related-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; background: #EDE8DC; }

.pdp-related-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.pdp-related-card:hover .pdp-related-img { transform: scale(1.05); }

.pdp-related-tag {
  position: absolute; top: 0.75rem; left: 0.75rem;
  font-family: 'Barlow', sans-serif; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.5rem;
}

.pdp-related-info { padding: 1rem 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.2rem; }

.pdp-related-brand {
  font-family: 'Barlow', sans-serif; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: #7A7268; margin: 0;
}

.pdp-related-name { font-family: 'Barlow', sans-serif; font-size: 0.82rem; font-weight: 500; color: #0C0905; margin: 0; line-height: 1.35; }

.pdp-related-price {
  font-family: 'Barlow', sans-serif; font-size: 0.88rem; font-weight: 600;
  color: #1A4DCC; margin-top: 0.15rem; display: block; transition: color 0.25s;
}
.pdp-related-card:hover .pdp-related-price { color: #D94420; }

/* ============================================================
   MOTION SYSTEM — Scroll reveals · Parallax · Micro-interactions
   Mirrors Framer Motion initial/animate/whileInView patterns
   ============================================================ */

/* ── Scroll reveal base ──────────────────────────────────────── */
[data-motion] {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-motion].in-view { opacity: 1 !important; transform: none !important; }

/* Initial transform variants */
[data-motion],
[data-motion="up"]    { transform: translateY(42px); }
[data-motion="down"]  { transform: translateY(-24px); }
[data-motion="left"]  { transform: translateX(-42px); }
[data-motion="right"] { transform: translateX(42px); }
[data-motion="scale"] { transform: scale(0.88); transition-duration: 0.85s; }
[data-motion="scale-subtle"] { transform: scale(0.96); }

/* Stagger delays — data-delay="1" through "8" */
[data-delay="1"] { transition-delay: 0.07s; }
[data-delay="2"] { transition-delay: 0.14s; }
[data-delay="3"] { transition-delay: 0.21s; }
[data-delay="4"] { transition-delay: 0.28s; }
[data-delay="5"] { transition-delay: 0.35s; }
[data-delay="6"] { transition-delay: 0.42s; }
[data-delay="7"] { transition-delay: 0.50s; }
[data-delay="8"] { transition-delay: 0.58s; }

/* ── Hero bg parallax ────────────────────────────────────────── */
.hero-bg-img { will-change: transform; }

/* ── Button spring ───────────────────────────────────────────── */
.btn-ocean {
  transition: background 0.22s, border-color 0.22s,
              transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-ocean:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px -6px rgba(26, 77, 204, 0.5);
}
.btn-ocean:active { transform: translateY(0); box-shadow: none; transition-duration: 0.1s; }

/* ── Product cell — shadow lift override ─────────────────────── */
.product-cell { transition: box-shadow 0.38s cubic-bezier(0.16, 1, 0.3, 1); }
.product-cell:hover { box-shadow: 0 20px 64px -14px rgba(12, 9, 5, 0.22); position: relative; z-index: 2; }

/* ── Collection card — shadow lift ──────────────────────────── */
.col-card { transition: box-shadow 0.38s cubic-bezier(0.16, 1, 0.3, 1); }
.col-card:hover { box-shadow: 0 22px 68px -16px rgba(12, 9, 5, 0.24); position: relative; z-index: 2; }

/* ── IG story card — spring lift ────────────────────────────── */
.ig-story-card {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.ig-story-card:hover { transform: translateY(-12px) scale(1.03); box-shadow: 0 32px 72px -16px rgba(12, 9, 5, 0.5); }

/* ── Category panel image scale ─────────────────────────────── */
.cat-panel { overflow: hidden; position: relative; }
.cat-panel img { transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.cat-panel:hover img { transform: scale(1.07); }
.cat-panel .cat-cta {
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.22s, color 0.22s;
}
.cat-panel:hover .cat-cta { transform: translateX(6px); }

/* ── Nav strip number lift ───────────────────────────────────── */
.nav-strip-num { transition: color 0.22s, transform 0.32s cubic-bezier(0.16, 1, 0.3, 1); }
.nav-strip-link:hover .nav-strip-num { transform: translateY(-5px) scale(1.1); }

/* ── PDP gallery crossfade ──────────────────────────────────── */
.pdp-gallery-img {
  transition: opacity 0.28s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.pdp-gallery-img.is-fading { opacity: 0; transform: scale(1.05); }

/* ── PDP related card — enhanced lift ───────────────────────── */
.pdp-related-card {
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}
.pdp-related-card:hover { transform: translateY(-8px); box-shadow: 0 18px 52px -10px rgba(12, 9, 5, 0.2); }

/* ── Manifesto divider line ──────────────────────────────────── */
.manifesto-rule[data-motion="scale-x"] { transform-origin: left; transform: scaleX(0); }
.manifesto-rule[data-motion="scale-x"].in-view { transform: scaleX(1); }

/* ================================================================
   ABOUT PAGE
   ================================================================ */

/* ── Hero overrides ──────────────────────────────────────────── */
.about-hero .hero-img-overlay {
  background: linear-gradient(175deg, rgba(12,9,5,0.45) 0%, rgba(12,9,5,0.35) 50%, rgba(12,9,5,0.88) 100%);
}

.about-hero-word {
  position: absolute; top: 5%; left: -1%;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(7rem, 20vw, 24rem);
  text-transform: uppercase; color: rgba(248,245,238,0.04);
  letter-spacing: -0.02em; line-height: 1;
  user-select: none; pointer-events: none; white-space: nowrap; z-index: 4;
  opacity: 0; animation: fade-up 2.5s ease 0.2s forwards;
}

.about-headline-zone {
  flex: 0 0 62%; display: flex; align-items: flex-end;
  padding: 0 2.5rem; overflow: hidden;
}

.about-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(3.25rem, 10vw, 12rem);
  line-height: 0.86; text-transform: uppercase; letter-spacing: -0.025em;
  color: #F8F5EE;
  animation: slide-up 1.15s cubic-bezier(0.16,1,0.3,1) 0.45s both;
}

.about-descriptor {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(1rem, 1.7vw, 1.5rem);
  color: rgba(248,245,238,0.38); line-height: 1.45; max-width: 40ch;
  opacity: 0; animation: fade-up 0.8s ease 1.2s forwards;
}

/* ── Origin ──────────────────────────────────────────────────── */
.about-origin-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(5.5rem, 13vw, 15rem);
  line-height: 1; text-transform: uppercase; letter-spacing: -0.03em;
  color: #EDE8DC; display: block;
}

.about-origin-loc-stack {
  border-top: 1px solid #D0C8B8; padding-top: 1.5rem; margin-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0;
}

.about-origin-loc-line {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.75rem);
  text-transform: uppercase; letter-spacing: 0.06em; color: #C4B8A2; line-height: 1.35;
}

/* ── Pillars ─────────────────────────────────────────────────── */
.about-pillars { background: #181410; }

.about-pillar-num {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 1; letter-spacing: -0.03em;
  color: rgba(248,245,238,0.05); display: block; margin-bottom: -0.5rem;
}

.about-pillar-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 0.9; text-transform: uppercase; letter-spacing: -0.02em; color: #F8F5EE;
}

.about-pillar-text {
  font-size: 0.9375rem; color: rgba(248,245,238,0.42); line-height: 1.75;
}

.about-pillar-rule {
  height: 1px; background: rgba(248,245,238,0.08);
}

/* ── Stats strip ─────────────────────────────────────────────── */
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #D0C8B8; border-bottom: 1px solid #D0C8B8;
}

.about-stat {
  padding: 2.75rem 2rem; border-right: 1px solid #D0C8B8;
  display: flex; flex-direction: column; gap: 0.375rem;
}
.about-stat:last-child { border-right: none; }

.about-stat-value {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem); line-height: 1;
  letter-spacing: -0.03em; color: #0C0905;
}

.about-stat-label {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: #7A7268;
}

/* ── Quote section ───────────────────────────────────────────── */
.about-quote-section { min-height: 55vh; display: flex; align-items: center; }

/* ── Team ────────────────────────────────────────────────────── */
.about-team-card { display: flex; flex-direction: column; }

.about-team-img-wrap {
  overflow: hidden; background: #EDE8DC; margin-bottom: 1.125rem;
}

.about-team-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1); display: block;
}
.about-team-card:hover .about-team-img { transform: scale(1.06); }

.about-team-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-style: italic;
  font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.02em;
  color: #0C0905; display: block; margin-bottom: 0.2rem;
}

.about-team-role {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: #7A7268;
}

/* ── About mobile ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .about-headline { font-size: clamp(3rem, 15vw, 5.5rem); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-stat:nth-child(2) { border-right: none; }
  .about-stat:nth-child(3) { border-top: 1px solid #D0C8B8; }
  .about-pillar { border-bottom: 1px solid rgba(248,245,238,0.08); }
}

/* ================================================================
   STORES PAGE
   ================================================================ */

.store-panel {
  display: grid; grid-template-columns: 58% 42%;
  min-height: 82vh; border-bottom: 1px solid #D0C8B8;
}

.store-panel--reversed { grid-template-columns: 42% 58%; }

.store-panel-img-wrap {
  position: relative; overflow: hidden;
}

.store-panel-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); display: block;
}
.store-panel:hover .store-panel-img { transform: scale(1.04); }

.store-panel-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(248,245,238,0.12) 0%, transparent 40%);
}
.store-panel-img-overlay--left {
  background: linear-gradient(to right, rgba(237,232,220,0.15) 0%, transparent 40%);
}

.store-panel-num {
  position: absolute; bottom: 1.5rem; right: 1.75rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(5rem, 12vw, 14rem); line-height: 1;
  color: rgba(248,245,238,0.12); letter-spacing: -0.03em;
  pointer-events: none; user-select: none;
}

.store-panel-info {
  padding: 4rem clamp(2rem, 4vw, 4.5rem);
  display: flex; flex-direction: column; justify-content: center;
  background: #F8F5EE;
}

.store-panel-info--dk { background: #EDE8DC; }

.store-tag {
  display: inline-flex; align-items: center;
  font-family: 'Barlow', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 1px; width: fit-content;
}
.store-tag--main { background: #0C0905; color: #F8F5EE; }
.store-tag--new { background: #D94420; color: #F8F5EE; }

.store-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(3rem, 6vw, 6rem); line-height: 0.9;
  text-transform: uppercase; letter-spacing: -0.02em; color: #0C0905;
}

.store-sub {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: #7A7268;
}

.store-details { display: flex; flex-direction: column; gap: 0.875rem; }

.store-detail-row {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; color: #0C0905; line-height: 1.4;
}
.store-detail-row svg { flex-shrink: 0; margin-top: 0.15rem; color: #1A4DCC; }
.store-detail-row a { text-decoration: none; transition: color 0.2s; }
.store-detail-row a:hover { color: #1A4DCC; }

.store-hours-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: #7A7268; margin-bottom: 0.75rem;
}

.store-hours-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.375rem 2rem;
}
.store-hours-day {
  font-size: 0.8rem; color: #7A7268; font-family: 'Barlow', sans-serif;
}
.store-hours-time {
  font-size: 0.8rem; color: #0C0905; font-weight: 500; font-family: 'Barlow', sans-serif;
}

.store-directions-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Barlow', sans-serif; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #0C0905; text-decoration: none;
  border-bottom: 1px solid #0C0905; padding-bottom: 0.125rem;
  transition: color 0.22s, border-color 0.22s;
}
.store-directions-btn:hover { color: #1A4DCC; border-color: #1A4DCC; }

@media (max-width: 768px) {
  .store-panel { grid-template-columns: 1fr; min-height: auto; }
  .store-panel--reversed { grid-template-columns: 1fr; }
  .store-panel--reversed .store-panel-info { order: -1; }
  .store-panel-img-wrap { height: 55vw; }
  .store-panel-info { padding: 2.5rem 1.5rem; }
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */

.contact-header {
  padding: calc(68px + 3.5rem) 0 3.5rem;
}

.contact-form { width: 100%; }

.contact-field { display: flex; flex-direction: column; }

.contact-label {
  font-family: 'Barlow', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #7A7268;
  margin-bottom: 0.5rem; display: block;
}

.contact-label-optional {
  font-weight: 400; letter-spacing: 0.06em; text-transform: none; color: #C4B8A2;
}

.contact-input {
  width: 100%; padding: 1rem 1.25rem;
  background: #EDE8DC; border: 1px solid #D0C8B8;
  font-family: 'Barlow', sans-serif; font-size: 0.9rem; color: #0C0905;
  outline: none; border-radius: 1px;
  transition: border-color 0.2s, background 0.2s;
  appearance: none; -webkit-appearance: none;
}
.contact-input:focus { border-color: #1A4DCC; background: #F8F5EE; }
.contact-input::placeholder { color: #C4B8A2; }

.contact-textarea { resize: vertical; min-height: 160px; }

.contact-select-wrap { position: relative; }
.contact-select { padding-right: 2.5rem; }
.contact-select-arrow {
  position: absolute; right: 1rem; top: 50%; translate: 0 -50%;
  color: #7A7268; pointer-events: none;
}

.contact-success {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9rem; font-weight: 500; color: #0C0905;
  padding: 1.25rem 1.5rem; background: #EDE8DC; border: 1px solid #D0C8B8;
  border-left: 3px solid #1A4DCC;
}

/* ── Contact info panel ──────────────────────────────────────── */
.contact-info-block { padding: 0 0 1.75rem; }

.contact-divider {
  height: 1px; background: #D0C8B8; margin-bottom: 1.75rem;
}

.contact-info-num {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-style: italic;
  font-size: 0.9rem; letter-spacing: 0.08em; color: #C4B8A2;
}

.contact-info-store {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2rem); text-transform: uppercase;
  letter-spacing: 0.01em; color: #0C0905;
}

.contact-info-tag {
  font-family: 'Barlow', sans-serif; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; background: #0C0905; color: #F8F5EE; border-radius: 1px;
}
.contact-info-tag--ember { background: #D94420; }

.contact-info-rows { display: flex; flex-direction: column; gap: 0.75rem; }

.contact-info-row {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; color: #0C0905; line-height: 1.4;
}
.contact-info-row svg { flex-shrink: 0; margin-top: 0.15rem; color: #1A4DCC; }
.contact-info-row a { text-decoration: none; transition: color 0.2s; }
.contact-info-row a:hover { color: #1A4DCC; }

.contact-info-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: #7A7268;
}

.contact-hours-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem 2rem;
}
.contact-hours-day {
  font-size: 0.8rem; color: #7A7268;
}
.contact-hours-time {
  font-size: 0.8rem; color: #0C0905; font-weight: 500;
}

/* ── Support cards ───────────────────────────────────────────── */
.contact-support { border-top: 1px solid rgba(248,245,238,0.06); }

.support-card {
  padding: 2.75rem 2.5rem; display: flex; flex-direction: column; gap: 0.875rem;
  text-decoration: none; transition: background 0.25s;
}
.support-card:hover { background: rgba(248,245,238,0.03); }

.support-card-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(248,245,238,0.1); border-radius: 1px;
  color: rgba(248,245,238,0.5); margin-bottom: 0.25rem;
  transition: border-color 0.22s, color 0.22s;
}
.support-card:hover .support-card-icon { border-color: #D94420; color: #D94420; }

.support-card-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-style: italic;
  font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.02em; color: #F8F5EE;
}

.support-card-body {
  font-size: 0.85rem; color: rgba(248,245,238,0.42); line-height: 1.65; flex: 1;
}

.support-card-link {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(248,245,238,0.35); transition: color 0.2s;
}
.support-card:hover .support-card-link { color: #F8F5EE; }

@media (max-width: 768px) {
  .contact-header { padding: calc(56px + 2.5rem) 0 2.5rem; }
  .support-card { padding: 2rem 1.25rem; }
}

/* ================================================================
   BLOG LISTING PAGE
   ================================================================ */

/* ── Filter bar ──────────────────────────────────────────────── */
.blog-filter-bar {
  background: #F8F5EE; border-bottom: 1px solid #D0C8B8;
  padding: 0 2.5rem; overflow-x: auto; scrollbar-width: none;
}
.blog-filter-bar::-webkit-scrollbar { display: none; }

.blog-filter-tabs { display: flex; align-items: center; gap: 0; }

.blog-filter-tab {
  font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: #7A7268;
  background: none; border: none; padding: 1.125rem 1.25rem;
  cursor: pointer; white-space: nowrap; position: relative; transition: color 0.2s;
}
.blog-filter-tab::after {
  content: ''; position: absolute; bottom: 0; left: 1.25rem; right: 1.25rem;
  height: 2px; background: #0C0905; transform: scaleX(0); transition: transform 0.25s;
}
.blog-filter-tab.active { color: #0C0905; }
.blog-filter-tab.active::after { transform: scaleX(1); }
.blog-filter-tab:hover { color: #0C0905; }

/* ── Featured post ───────────────────────────────────────────── */
.blog-featured {
  display: block; position: relative; overflow: hidden;
  height: clamp(380px, 52vh, 620px); text-decoration: none;
}

.blog-featured-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-featured:hover .blog-featured-img { transform: scale(1.04); }

.blog-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,9,5,0.88) 0%, rgba(12,9,5,0.38) 55%, rgba(12,9,5,0.15) 100%);
}

.blog-featured-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem clamp(1.5rem, 4vw, 4rem);
  max-width: 860px;
}

.blog-featured-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(1.75rem, 4vw, 3.5rem); line-height: 0.92;
  text-transform: uppercase; letter-spacing: -0.02em; color: #F8F5EE;
  margin-bottom: 1rem;
}

.blog-featured-excerpt {
  font-size: 0.9375rem; color: rgba(248,245,238,0.55);
  line-height: 1.65; max-width: 58ch; margin-bottom: 1.5rem;
}

.blog-read-more {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Barlow', sans-serif; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(248,245,238,0.7); border-bottom: 1px solid rgba(248,245,238,0.25);
  padding-bottom: 0.125rem; transition: color 0.2s, border-color 0.2s;
}
.blog-featured:hover .blog-read-more { color: #F8F5EE; border-color: rgba(248,245,238,0.6); }

/* ── Category tags ───────────────────────────────────────────── */
.blog-cat {
  display: inline-flex; font-family: 'Barlow', sans-serif;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.25rem 0.625rem; border-radius: 1px;
}
.blog-cat--gear     { background: rgba(26,77,204,0.12);  color: #1A4DCC; }
.blog-cat--spot     { background: rgba(12,9,5,0.08);     color: #0C0905; }
.blog-cat--howto    { background: rgba(217,68,32,0.1);   color: #D94420; }
.blog-cat--brand    { background: rgba(122,114,104,0.12);color: #7A7268; }
.blog-cat--conditions { background: rgba(26,77,204,0.08); color: #1237A0; }

.blog-meta-text {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(248,245,238,0.35);
}
.blog-card .blog-meta-text { color: #C4B8A2; }

/* ── Blog grid ───────────────────────────────────────────────── */
.blog-grid-section { padding: 0; }

.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-top: 1px solid #D0C8B8;
}

.blog-card {
  border-right: 1px solid #D0C8B8; border-bottom: 1px solid #D0C8B8;
  background: #F8F5EE; display: flex; flex-direction: column;
  transition: background 0.22s;
}
.blog-card:nth-child(3n) { border-right: none; }
.blog-card:hover { background: #EDE8DC; }

.blog-card--light {
  border: none; background: transparent;
}
.blog-card--light:hover { background: rgba(12,9,5,0.03); }

.blog-card-img-wrap {
  display: block; overflow: hidden;
}

.blog-card-img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  display: block; transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover .blog-card-img { transform: scale(1.06); }

.blog-card-body { padding: 1.5rem 1.75rem 1.75rem; flex: 1; display: flex; flex-direction: column; }

.blog-card-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(1.125rem, 1.8vw, 1.5rem); line-height: 1.05;
  text-transform: uppercase; letter-spacing: -0.01em; color: #0C0905;
  margin-bottom: 0.625rem; flex: 1;
}
.blog-card-title a { text-decoration: none; color: inherit; transition: color 0.2s; }
.blog-card-title a:hover { color: #1A4DCC; }

.blog-card-excerpt {
  font-size: 0.8375rem; color: #7A7268; line-height: 1.65; margin-bottom: 1.25rem;
}

.blog-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid #D0C8B8; margin-top: auto;
}

.blog-card-date {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: #C4B8A2;
}

.blog-card-arrow {
  font-size: 1rem; color: #C4B8A2; text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.blog-card:hover .blog-card-arrow { color: #1A4DCC; transform: translateX(4px); }

/* ── Load More ───────────────────────────────────────────────── */
.blog-load-more {
  padding: 3rem 2.5rem; border-top: 1px solid #D0C8B8;
  display: flex; justify-content: center;
}

/* ── Blog mobile ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .blog-filter-bar { padding: 0 1rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { border-right: none; }
  .blog-featured { height: clamp(300px, 70vw, 440px); }
}

/* ================================================================
   BLOG SINGLE POST
   ================================================================ */

/* ── Article header ──────────────────────────────────────────── */
.article-header {
  padding: calc(68px + 3rem) 0 0; border-bottom: 1px solid #D0C8B8;
}

.article-header-inner {
  max-width: 820px; margin: 0 auto; padding: 0 2.5rem 3rem;
}

.article-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: #C4B8A2; margin-bottom: 2rem;
}
.article-breadcrumb a { text-decoration: none; color: inherit; transition: color 0.2s; }
.article-breadcrumb a:hover { color: #1A4DCC; }

.article-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(2.25rem, 5vw, 4.5rem); line-height: 0.92;
  text-transform: uppercase; letter-spacing: -0.025em; color: #0C0905;
  margin-bottom: 2rem;
}

.article-meta {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid #D0C8B8;
}

.article-author-chip { display: flex; align-items: center; gap: 0.75rem; }

.article-author-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: #0C0905;
  color: #F8F5EE; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-style: italic; font-size: 0.75rem; letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.article-author-name {
  display: block; font-size: 0.8rem; font-weight: 600; color: #0C0905;
}

.article-author-role {
  display: block; font-size: 0.68rem; color: #7A7268; letter-spacing: 0.04em;
}

.article-meta-right {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.7rem; color: #C4B8A2; letter-spacing: 0.08em; text-transform: uppercase;
}

.article-meta-dot {
  width: 3px; height: 3px; border-radius: 50%; background: #C4B8A2;
}

/* ── Hero image ──────────────────────────────────────────────── */
.article-hero-wrap { position: relative; }

.article-hero-img {
  width: 100%; height: clamp(300px, 45vh, 560px);
  object-fit: cover; object-position: center 40%; display: block;
}

.article-hero-caption {
  text-align: center; font-size: 0.72rem; color: #C4B8A2;
  letter-spacing: 0.06em; padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #D0C8B8; background: #F8F5EE;
}

/* ── Body content ────────────────────────────────────────────── */
.article-body {
  max-width: 740px; margin: 0 auto; padding: 4rem 2.5rem 5rem;
}

.article-lead {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.5rem); line-height: 1.55;
  color: #0C0905; margin-bottom: 3rem;
}

.article-h2 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem); text-transform: uppercase;
  letter-spacing: -0.01em; color: #0C0905; margin-top: 3rem; margin-bottom: 1.25rem;
}

.article-p {
  font-size: 1rem; line-height: 1.8; color: rgba(12,9,5,0.8);
  margin-bottom: 1.25rem;
}
.article-p strong { color: #0C0905; font-weight: 600; }

.article-callout {
  background: #EDE8DC; border-left: 3px solid #1A4DCC;
  padding: 1.75rem 2rem; margin: 2rem 0;
}
.article-callout-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: #1A4DCC; margin-bottom: 1rem;
}
.article-callout-list { display: flex; flex-direction: column; gap: 0.75rem; padding: 0; margin: 0; list-style: none; }
.article-callout-list li { font-size: 0.9rem; color: rgba(12,9,5,0.8); line-height: 1.65; }
.article-callout-list li strong { color: #0C0905; }

.article-pullquote {
  margin: 3rem 0; padding: 0; border: none;
  text-align: center;
}
.article-pullquote p {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(1.375rem, 2.5vw, 2.25rem); line-height: 1.35;
  color: #0C0905; position: relative; display: inline;
}
.article-pullquote p::before {
  content: ''; display: block; width: 3rem; height: 2px;
  background: #D94420; margin: 0 auto 1.5rem;
}

.article-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; padding-top: 2.5rem; margin-top: 2.5rem; border-top: 1px solid #D0C8B8; }

.article-tag {
  font-family: 'Barlow', sans-serif; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.875rem; border: 1px solid #D0C8B8; color: #7A7268;
  transition: border-color 0.2s, color 0.2s;
}
.article-tag:hover { border-color: #0C0905; color: #0C0905; }

/* ── Author bio ──────────────────────────────────────────────── */
.article-author-bio {
  max-width: 740px; margin: 0 auto; padding: 2.5rem;
  display: flex; gap: 1.5rem; align-items: flex-start;
  border-top: 1px solid #D0C8B8; border-bottom: 1px solid #D0C8B8;
}

.article-author-bio-avatar {
  width: 56px; height: 56px; border-radius: 50%; background: #0C0905;
  color: #F8F5EE; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-style: italic; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.article-author-bio-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-style: italic;
  font-size: 1.125rem; text-transform: uppercase; color: #0C0905; margin-bottom: 0.2rem;
}
.article-author-bio-role {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: #7A7268; margin-bottom: 0.75rem;
}
.article-author-bio-text { font-size: 0.875rem; color: #7A7268; line-height: 1.65; }

/* ── Featured product CTA ────────────────────────────────────── */
.article-product-cta { padding: 4rem 2.5rem; }

.article-product-cta-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 3rem;
}

.article-product-cta-img {
  width: 180px; height: 220px; object-fit: cover; flex-shrink: 0;
  opacity: 0.7;
}

/* ================================================================
   PDP CONVERSION ENHANCEMENTS
   ================================================================ */

/* ── Star ratings ────────────────────────────────────────────── */
.pdp-rating-row {
  display: flex; align-items: center; gap: 0.5rem; margin-top: 0.35rem;
}
.pdp-stars { display: flex; align-items: center; gap: 0.05rem; line-height: 1; }
.pdp-star {
  font-size: 0.9rem;
}
.pdp-star--full { color: #D94420; }
.pdp-star--empty { color: #D0C8B8; }
.pdp-rating-score {
  font-family: 'Barlow', sans-serif; font-size: 0.78rem; font-weight: 700;
  color: #0C0905; letter-spacing: 0.01em;
}
.pdp-rating-count {
  font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 500;
  color: #7A7268; background: none; border: none; cursor: pointer; padding: 0;
  text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s;
}
.pdp-rating-count:hover { color: #1A4DCC; }
.pdp-rating-count:focus-visible { outline: 2px solid #1A4DCC; outline-offset: 2px; }

/* ── Afterpay / BNPL line ────────────────────────────────────── */
.pdp-afterpay {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.35rem;
  font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 400;
  color: #7A7268; margin: 0;
}
.pdp-afterpay strong { color: #0C0905; font-weight: 700; }
.pdp-afterpay-badge {
  display: inline-flex; align-items: center;
  background: #0C0905; color: #F8F5EE;
  padding: 0.15rem 0.5rem; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; flex-shrink: 0;
}
.pdp-afterpay-info {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid #C4B8A2; background: none; cursor: pointer;
  font-size: 0.6rem; font-style: italic; font-weight: 700;
  color: #7A7268; display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s; flex-shrink: 0;
}
.pdp-afterpay-info:hover { border-color: #0C0905; color: #0C0905; }

/* ── Stock / urgency indicator ───────────────────────────────── */
.pdp-stock {
  display: flex; align-items: center; gap: 0.45rem;
  font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.03em; margin: 0;
}
.pdp-stock-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.pdp-stock--good { color: #2d6a4f; }
.pdp-stock--good .pdp-stock-dot { background: #2d6a4f; box-shadow: 0 0 0 3px rgba(45,106,79,0.15); }
.pdp-stock--low { color: #D94420; }
.pdp-stock--low .pdp-stock-dot { background: #D94420; box-shadow: 0 0 0 3px rgba(217,68,32,0.15); }

/* ── Buy Now button ──────────────────────────────────────────── */
.pdp-buy-now-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #0C0905; color: #F8F5EE; border: none;
  height: 52px; cursor: pointer;
  font-family: 'Barlow', sans-serif; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.22s, transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pdp-buy-now-btn:hover {
  background: #181410;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(12,9,5,0.4);
}
.pdp-buy-now-btn:active { transform: translateY(0); box-shadow: none; }
.pdp-buy-now-btn:focus-visible { outline: 2px solid #1A4DCC; outline-offset: 3px; }

/* ── Feature chips ───────────────────────────────────────────── */
.pdp-feature-chips {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  padding: 0.25rem 0;
}
.pdp-chip {
  display: inline-flex; align-items: center;
  font-family: 'Barlow', sans-serif; font-size: 0.63rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #7A7268;
  border: 1px solid #D0C8B8; padding: 0.28rem 0.6rem;
  background: transparent; transition: border-color 0.2s, color 0.2s;
}
.pdp-chip:hover { border-color: #0C0905; color: #0C0905; }

/* ── Sticky mobile ATC bar ───────────────────────────────────── */
.pdp-sticky-bar {
  display: none; /* mobile only — enabled below */
}
@media (max-width: 767px) {
  .pdp-sticky-bar {
    display: flex; align-items: center; gap: 1rem;
    position: fixed; bottom: 64px; left: 0; right: 0; z-index: 88;
    background: rgba(12,9,5,0.97); backdrop-filter: blur(12px);
    border-top: 1px solid rgba(248,245,238,0.08);
    padding: 0.85rem 1.25rem;
    transform: translateY(calc(100% + 64px));
    transition: transform 0.42s cubic-bezier(0.16,1,0.3,1);
  }
  .pdp-sticky-bar.visible {
    transform: translateY(0);
  }
}
.pdp-sticky-bar-info { flex: 1; min-width: 0; }
.pdp-sticky-bar-name {
  font-family: 'Barlow', sans-serif; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.04em; color: rgba(248,245,238,0.5);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0;
}
.pdp-sticky-bar-price {
  font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 700;
  color: #F8F5EE; margin: 0; letter-spacing: -0.01em;
}
.pdp-sticky-bar-btn {
  display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0;
  background: #1A4DCC; color: white; border: none;
  padding: 0.75rem 1.35rem; cursor: pointer;
  font-family: 'Barlow', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.22s;
}
.pdp-sticky-bar-btn:hover { background: #1237A0; }
.pdp-sticky-bar-btn:focus-visible { outline: 2px solid #F8F5EE; outline-offset: 2px; }

/* ── Gallery — desktop vertical thumbs ──────────────────────── */
@media (min-width: 768px) {
  .pdp-gallery {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-rows: 700px;
  }
  .pdp-thumbs {
    grid-column: 1; grid-row: 1;
    flex-direction: column;
    border-top: none;
    border-right: 1px solid #D0C8B8;
    overflow-y: auto; scrollbar-width: none;
    align-self: stretch; height: 700px;
  }
  .pdp-thumbs::-webkit-scrollbar { display: none; }
  .pdp-thumb {
    flex: none; aspect-ratio: 3/4; border-right: none;
    border-bottom: 1px solid #D0C8B8; height: auto; width: 100%;
  }
  .pdp-thumb:last-child { border-bottom: none; }
  .pdp-thumb--active::after {
    width: 3px; height: 100%; top: 0; bottom: auto; right: 0; left: auto;
  }
  .pdp-gallery-main {
    grid-column: 2; grid-row: 1;
    aspect-ratio: unset; flex: none;
    height: 700px; width: 100%;
  }
  .pdp-dots { display: none; }
}

/* ── Gallery main — zoom cursor & hover scale ────────────────── */
.pdp-gallery-main { cursor: zoom-in; }
.pdp-gallery-main:hover .pdp-gallery-img { transform: scale(1.04); }

/* ── Image counter ───────────────────────────────────────────── */
.pdp-img-counter {
  position: absolute; bottom: 0.75rem; right: 0.75rem; z-index: 3;
  font-family: 'Barlow', sans-serif; font-size: 0.63rem; font-weight: 700;
  letter-spacing: 0.1em; color: rgba(248,245,238,0.65);
  background: rgba(12,9,5,0.38); backdrop-filter: blur(6px);
  padding: 0.2rem 0.55rem; pointer-events: none;
}
@media (max-width: 767px) { .pdp-img-counter { display: none; } }

/* ── Zoom hint label ─────────────────────────────────────────── */
.pdp-zoom-hint {
  position: absolute; bottom: 0.75rem; left: 0.75rem; z-index: 3;
  display: flex; align-items: center; gap: 0.3rem;
  font-family: 'Barlow', sans-serif; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(248,245,238,0.75);
  background: rgba(12,9,5,0.38); backdrop-filter: blur(6px);
  padding: 0.2rem 0.6rem 0.2rem 0.45rem;
  opacity: 0; transition: opacity 0.25s; pointer-events: none;
}
.pdp-gallery-main:hover .pdp-zoom-hint { opacity: 1; }
@media (max-width: 767px) { .pdp-zoom-hint { display: none; } }

/* ── Mobile prev/next arrows ─────────────────────────────────── */
.pdp-gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  display: none; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(248,245,238,0.92); backdrop-filter: blur(8px);
  border: none; cursor: pointer; color: #0C0905;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(12,9,5,0.18);
  transition: background 0.2s, transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.pdp-gallery-arrow--prev { left: 0.75rem; }
.pdp-gallery-arrow--next { right: 0.75rem; }
.pdp-gallery-arrow--prev:hover { transform: translateY(-50%) translateX(-2px); background: #F8F5EE; }
.pdp-gallery-arrow--next:hover { transform: translateY(-50%) translateX(2px); background: #F8F5EE; }
.pdp-gallery-arrow:active { transform: translateY(-50%) scale(0.9) !important; }
.pdp-gallery-arrow:focus-visible { outline: 2px solid #1A4DCC; outline-offset: 2px; }
@media (max-width: 767px) { .pdp-gallery-arrow { display: flex; } }

/* ── Mobile thumbs — hide, show dots instead ─────────────────── */
@media (max-width: 767px) { .pdp-thumbs { display: none; } }

/* ── Dot indicators ──────────────────────────────────────────── */
.pdp-dots {
  display: none;
  align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.85rem; background: #F8F5EE; border-top: 1px solid #D0C8B8;
}
.pdp-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #D0C8B8; border: none; cursor: pointer; padding: 0;
  transition: background 0.22s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.pdp-dot--active { background: #D94420; transform: scale(1.6); }
.pdp-dot:focus-visible { outline: 2px solid #1A4DCC; outline-offset: 3px; }
@media (max-width: 767px) { .pdp-dots { display: flex; } }

/* ── Lightbox ────────────────────────────────────────────────── */
.pdp-lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16,1,0.3,1);
}
.pdp-lightbox.open { opacity: 1; pointer-events: all; }
.pdp-lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(12,9,5,0.96); backdrop-filter: blur(8px);
}
.pdp-lightbox-stage {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  max-width: min(90vw, 700px); max-height: 90vh;
}
.pdp-lightbox-img {
  max-width: 100%; max-height: 90vh; object-fit: contain; display: block;
  transform: scale(0.88);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.pdp-lightbox.open .pdp-lightbox-img { transform: scale(1); }
.pdp-lightbox-close {
  position: absolute; top: 1.25rem; right: 1.25rem; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(248,245,238,0.08); border: 1px solid rgba(248,245,238,0.14);
  color: #F8F5EE; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.pdp-lightbox-close:hover { background: rgba(248,245,238,0.18); transform: rotate(90deg); }
.pdp-lightbox-close:focus-visible { outline: 2px solid rgba(248,245,238,0.5); }
.pdp-lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(248,245,238,0.07); border: 1px solid rgba(248,245,238,0.12);
  color: #F8F5EE; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.32s cubic-bezier(0.34,1.56,0.64,1);
}
.pdp-lightbox-arrow--prev { left: 1.5rem; }
.pdp-lightbox-arrow--next { right: 1.5rem; }
.pdp-lightbox-arrow--prev:hover { background: rgba(248,245,238,0.16); transform: translateY(-50%) translateX(-4px); }
.pdp-lightbox-arrow--next:hover { background: rgba(248,245,238,0.16); transform: translateY(-50%) translateX(4px); }
.pdp-lightbox-arrow:focus-visible { outline: 2px solid rgba(248,245,238,0.5); }
.pdp-lightbox-counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 2;
  font-family: 'Barlow', sans-serif; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; color: rgba(248,245,238,0.35); white-space: nowrap; margin: 0;
}
@media (max-width: 767px) {
  .pdp-lightbox-arrow { width: 40px; height: 40px; }
  .pdp-lightbox-arrow--prev { left: 0.75rem; }
  .pdp-lightbox-arrow--next { right: 0.75rem; }
}

/* ── Article mobile ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .article-header-inner { padding: 0 1.25rem 2.5rem; }
  .article-body { padding: 2.5rem 1.25rem 4rem; }
  .article-author-bio { padding: 2rem 1.25rem; flex-direction: column; }
  .article-product-cta { padding: 3rem 1.25rem; }
  .article-product-cta-inner { flex-direction: column; gap: 2rem; }
  .article-product-cta-img { width: 100%; height: 200px; }
  .article-pullquote p { font-size: clamp(1.2rem, 5vw, 1.75rem); }
}

/* ================================================================
   PDP UX ENHANCEMENTS — 2026 conversion improvements
   ================================================================ */

/* ── Header row (brand + wishlist) ──────────────────────────── */
.pdp-header-top {
  display: flex; align-items: center; justify-content: space-between;
}

.pdp-wishlist-btn {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1.5px solid #D0C8B8; color: #7A7268;
  cursor: pointer; flex-shrink: 0;
  transition: border-color 0.22s, color 0.22s, background 0.22s,
              transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pdp-wishlist-btn:hover { border-color: #D94420; color: #D94420; }
.pdp-wishlist-btn.active { border-color: #D94420; color: #D94420; background: rgba(217,68,32,0.06); }
.pdp-wishlist-btn.active svg { fill: currentColor; }
.pdp-wishlist-btn:hover { transform: scale(1.1); }
.pdp-wishlist-btn:focus-visible { outline: 2px solid #1A4DCC; outline-offset: 3px; }

/* ── Payment icons ──────────────────────────────────────────── */
.pdp-payment-icons {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.4rem;
  margin-top: 0.5rem;
}

.pdp-pay-badge {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #D0C8B8; background: #F8F5EE;
  padding: 0.25rem 0.55rem; height: 26px;
  border-radius: 2px;
}

/* ── OOS size buttons ───────────────────────────────────────── */
.pdp-size-btn--oos {
  position: relative; opacity: 0.4; cursor: not-allowed !important;
  border-style: dashed !important;
}
.pdp-size-btn--oos::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    transparent 43%,
    rgba(12,9,5,0.25) 43%,
    rgba(12,9,5,0.25) 57%,
    transparent 57%
  );
  pointer-events: none;
}
.pdp-size-btn--oos:hover { border-color: #D0C8B8 !important; }

/* ── Scarcity message ───────────────────────────────────────── */
.pdp-scarcity {
  font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.03em; margin: 0; min-height: 1.2em;
  transition: opacity 0.25s;
}
.pdp-scarcity--low { color: #D94420; }
.pdp-scarcity--ok  { color: #2d6a4f; }

/* ── Dispatch countdown ─────────────────────────────────────── */
.pdp-dispatch-row {
  display: flex; align-items: center; gap: 0.45rem;
  font-family: 'Barlow', sans-serif; font-size: 0.72rem; font-weight: 500;
  color: #7A7268; letter-spacing: 0.02em;
}
.pdp-dispatch-row svg { color: #1A4DCC; flex-shrink: 0; }
.pdp-dispatch-row strong { color: #0C0905; font-variant-numeric: tabular-nums; }

/* ── Pinned review ──────────────────────────────────────────── */
.pdp-pinned-review {
  background: #EDE8DC; border-left: 3px solid #D94420;
  padding: 1.125rem 1.25rem; display: flex; flex-direction: column; gap: 0.5rem;
}

.pdp-pinned-review-header {
  display: flex; align-items: center; gap: 0.75rem;
}

.pdp-pinned-review-verified {
  font-family: 'Barlow', sans-serif; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #2d6a4f;
  background: rgba(45,106,79,0.1); padding: 0.15rem 0.5rem;
}

.pdp-pinned-review-text {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 0.875rem; line-height: 1.6; color: #0C0905;
  margin: 0; padding: 0; border: none;
}

.pdp-pinned-review-author {
  font-family: 'Barlow', sans-serif; font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.08em; color: #7A7268; margin: 0; font-style: normal;
}

/* ── Desktop sticky ATC bar ─────────────────────────────────── */
@media (min-width: 768px) {
  .pdp-sticky-bar {
    display: flex;
    position: fixed; top: 68px; left: 0; right: 0; bottom: auto; z-index: 88;
    background: rgba(248,245,238,0.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid #D0C8B8; border-top: none;
    padding: 0.75rem clamp(1.5rem, 5vw, 5rem);
    transform: translateY(-110%);
    transition: transform 0.42s cubic-bezier(0.16,1,0.3,1);
  }
  .pdp-sticky-bar.visible { transform: translateY(0); }
  .pdp-sticky-bar-name { color: rgba(12,9,5,0.55); }
  .pdp-sticky-bar-price { color: #1A4DCC; }
}

.pdp-sticky-bar-actions {
  display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0;
}

.pdp-sticky-bar-buy {
  display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0;
  background: #0C0905; color: #F8F5EE; border: none;
  padding: 0.75rem 1.35rem; cursor: pointer;
  font-family: 'Barlow', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.22s;
}
.pdp-sticky-bar-buy:hover { background: #181410; }

/* ================================================================
   PRODUCT CARD UX — 2026 ENHANCEMENTS
   Hover image swap · Color swatches · Star rating
   ================================================================ */

/* Hover image — sits absolutely over the primary, fades in on card hover */
.product-cell-img--hover {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; z-index: 1;
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.product-cell:hover .product-cell-img--hover { opacity: 1; }

/* Primary fades slightly as hover image takes over */
.product-cell-img:not(.product-cell-img--hover) {
  transition: transform 0.75s cubic-bezier(0.16,1,0.3,1), opacity 0.45s;
}
.product-cell:hover .product-cell-img:not(.product-cell-img--hover) { opacity: 0; }

/* Keep wishlist + quick-add above hover image */
.product-cell-wishlist { z-index: 4; }
.product-cell-add { z-index: 4; }

/* Star rating row */
.product-cell-rating {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.product-cell-rating-stars {
  color: #D4900A; font-size: 0.75rem; letter-spacing: 0.04em; line-height: 1;
}
.product-cell-rating-label {
  font-family: 'Barlow', sans-serif; font-size: 0.72rem;
  font-weight: 500; color: #7A7268; line-height: 1;
}

/* Color swatches */
.product-cell-swatches {
  display: flex; align-items: center; gap: 0.4rem;
  margin-top: 0.875rem;
}
.product-cell-swatch {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid transparent;
  outline: none; cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
  flex-shrink: 0;
}
.product-cell-swatch:hover { transform: scale(1.18); }
.product-cell-swatch.active {
  box-shadow: 0 0 0 1.5px #F8F5EE, 0 0 0 3px #0C0905;
}
.product-cell-swatch:focus-visible {
  box-shadow: 0 0 0 1.5px #F8F5EE, 0 0 0 3px #1A4DCC;
}
.product-cell-swatch-overflow {
  font-family: 'Barlow', sans-serif; font-size: 0.68rem;
  font-weight: 600; color: #7A7268; letter-spacing: 0.04em; line-height: 1;
  margin-left: 0.1rem;
}

/* ---- Collection page card enhancements ---- */
.col-card-img--hover {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: 0; z-index: 1;
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.col-card:hover .col-card-img--hover { opacity: 1; }

/* Keep interactive elements above hover image */
.col-card-tag        { z-index: 4; }
.col-card-wishlist   { z-index: 4; }
.col-card-quick-add  { z-index: 4; }

.col-card-rating {
  display: flex; align-items: center; gap: 0.45rem;
  margin-bottom: 0.375rem;
}
.col-card-rating-stars {
  color: #D4900A; font-size: 0.72rem; letter-spacing: 0.04em; line-height: 1;
}
.col-card-rating-label {
  font-family: 'Barlow', sans-serif; font-size: 0.68rem;
  font-weight: 500; color: #7A7268; line-height: 1;
}

.col-card-swatches {
  display: flex; align-items: center; gap: 0.4rem;
  margin-top: 0.75rem;
}
.col-card-swatch {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1.5px solid transparent;
  outline: none; cursor: pointer; flex-shrink: 0;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
}
.col-card-swatch:hover { transform: scale(1.2); }
.col-card-swatch.active {
  box-shadow: 0 0 0 1.5px #F8F5EE, 0 0 0 3px #0C0905;
}
.col-card-swatch:focus-visible {
  box-shadow: 0 0 0 1.5px #F8F5EE, 0 0 0 3px #1A4DCC;
}
.pdp-sticky-bar-buy:focus-visible { outline: 2px solid #1A4DCC; outline-offset: 2px; }

/* ============================================================
   COLLECTION PAGE UX — 2026 ENHANCEMENTS
   Quick View · ATC Feedback · Scarcity · Filter Chips
   List View · Viewing Counter · Wishlist · Mobile Swipe
   ============================================================ */

/* ---- Quick View trigger (injected into img wrap) ---- */
.col-card-qv-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -40%);
  opacity: 0; z-index: 3;
  background: rgba(248,245,238,0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(208,200,184,0.6);
  color: #0C0905; font-family: 'Barlow', sans-serif;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.55rem 1.1rem; cursor: pointer; white-space: nowrap;
  transition: opacity 0.28s, transform 0.38s cubic-bezier(0.16,1,0.3,1), background 0.18s;
}
.col-card:hover .col-card-qv-btn {
  opacity: 1; transform: translate(-50%, -50%);
}
.col-card-qv-btn:hover { background: rgba(248,245,238,1); }
.col-card-qv-btn:focus-visible { opacity: 1; outline: 2px solid #1A4DCC; outline-offset: 2px; }

/* ---- ATC Quick Add — feedback state ---- */
.col-card-quick-add.added {
  background: #1A4DCC;
  letter-spacing: 0.18em;
}

/* ---- Stock scarcity badge (injected) ---- */
.col-card-stock {
  position: absolute; bottom: 3.25rem; left: 0; right: 0;
  text-align: center; z-index: 3;
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.28s, transform 0.28s;
}
.col-card:hover .col-card-stock { opacity: 1; transform: translateY(0); }
.col-card-stock-inner {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(217,68,32,0.92); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: #fff; font-family: 'Barlow', sans-serif;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.75rem;
}

/* ---- Viewing counter in card info ---- */
.col-card-viewers {
  display: flex; align-items: center; gap: 0.35rem;
  font-family: 'Barlow', sans-serif; font-size: 0.62rem; font-weight: 500;
  color: #7A7268; margin-top: 0.625rem; letter-spacing: 0.04em;
  opacity: 0; transform: translateY(3px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
}
.col-card:hover .col-card-viewers { opacity: 1; transform: translateY(0); }
.col-card-viewers-dot {
  width: 5px; height: 5px; border-radius: 50%; background: #2d6a4f;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

/* ---- Filter chip bar ---- */
.col-chip-bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 2.5rem;
  border-bottom: 1px solid #D0C8B8;
  min-height: 0; overflow: hidden;
  max-height: 0; opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.28s, padding 0.3s;
}
.col-chip-bar.visible {
  max-height: 56px; opacity: 1;
  padding: 0.625rem 2.5rem;
}
.col-chip-bar-label {
  font-family: 'Barlow', sans-serif; font-size: 0.68rem; font-weight: 500;
  color: #7A7268; letter-spacing: 0.08em; text-transform: uppercase; flex-shrink: 0;
}
.col-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #0C0905; color: #F8F5EE;
  font-family: 'Barlow', sans-serif; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.625rem 0.3rem 0.75rem;
  border: none; cursor: pointer;
  transition: background 0.18s;
}
.col-chip:hover { background: #D94420; }
.col-chip:focus-visible { outline: 2px solid #1A4DCC; outline-offset: 2px; }
.col-chip-x {
  font-size: 0.8rem; line-height: 1; opacity: 0.7;
  display: flex; align-items: center;
}

/* ---- View toggle (grid / list) ---- */
.col-view-toggle {
  display: flex; align-items: center; gap: 0.25rem;
  margin-left: 0.5rem;
}
.col-view-btn {
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  border: 1px solid #D0C8B8; background: transparent; cursor: pointer; color: #7A7268;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.col-view-btn.active { border-color: #0C0905; background: #0C0905; color: #F8F5EE; }
.col-view-btn:hover:not(.active) { border-color: #7A7268; color: #0C0905; }
.col-view-btn:focus-visible { outline: 2px solid #1A4DCC; outline-offset: 2px; }

/* ---- List view layout ---- */
.col-grid.list-view {
  grid-template-columns: 1fr;
  gap: 1px;
}
.col-grid.list-view .col-card {
  flex-direction: row; min-height: 180px;
}
.col-grid.list-view .col-card--featured {
  grid-column: span 1;
}
.col-grid.list-view .col-card-img-wrap {
  width: 180px; flex-shrink: 0; aspect-ratio: unset;
}
.col-grid.list-view .col-card--featured .col-card-img-wrap {
  width: 240px; aspect-ratio: unset;
}
.col-grid.list-view .col-card-info {
  flex: 1; padding: 1.25rem 1.5rem;
  justify-content: center; gap: 0.35rem; transform: none !important;
}
.col-grid.list-view .col-card-qv-btn {
  display: none;
}
.col-grid.list-view .col-card-quick-add {
  transform: translateY(0);
  font-size: 0.62rem;
}
.col-grid.list-view .col-card:hover .col-card-info { transform: none; }

/* ---- Quick View modal ---- */
.qv-backdrop {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(12,9,5,0.62); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.32s;
}
.qv-backdrop.open { opacity: 1; pointer-events: all; }

.qv-modal {
  position: fixed; z-index: 9001;
  top: 50%; left: 50%; transform: translate(-50%, -46%) scale(0.96);
  width: min(920px, 94vw); max-height: 90vh; overflow-y: auto;
  background: #F8F5EE; display: flex;
  opacity: 0; pointer-events: none;
  transition: opacity 0.34s cubic-bezier(0.16,1,0.3,1), transform 0.4s cubic-bezier(0.16,1,0.3,1);
  scrollbar-width: thin; scrollbar-color: #D0C8B8 transparent;
}
.qv-modal.open {
  opacity: 1; pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

/* mobile: bottom sheet */
@media (max-width: 640px) {
  .qv-modal {
    top: auto; bottom: 0; left: 0; right: 0; width: 100%;
    max-width: 100%; max-height: 92dvh; border-radius: 0;
    transform: translateY(32px) scale(1);
    flex-direction: column;
  }
  .qv-modal.open { transform: translateY(0) scale(1); }
}

.qv-img-col {
  width: 340px; flex-shrink: 0; position: relative; background: #EDE8DC;
}
@media (max-width: 640px) {
  .qv-img-col { width: 100%; height: 52vw; }
}
.qv-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.qv-info-col {
  flex: 1; padding: 2rem 2rem 2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  overflow-y: auto;
}
@media (max-width: 640px) {
  .qv-info-col { padding: 1.375rem 1.375rem 2rem; }
}

.qv-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  background: rgba(248,245,238,0.9); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: none; cursor: pointer; color: #0C0905;
  transition: background 0.18s, color 0.18s;
}
.qv-close:hover { background: #0C0905; color: #F8F5EE; }
.qv-close:focus-visible { outline: 2px solid #1A4DCC; outline-offset: 2px; }

.qv-tag {
  display: inline-block; align-self: flex-start;
  font-family: 'Barlow', sans-serif; font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.22rem 0.55rem; background: #1A4DCC; color: white;
  margin-bottom: 0.25rem;
}
.qv-tag--sale { background: #D94420; }
.qv-tag--eco { background: #2d6a4f; }
.qv-tag--best-seller { background: #0C0905; }

.qv-rating {
  display: flex; align-items: center; gap: 0.45rem;
}
.qv-rating-stars { color: #D4900A; font-size: 0.72rem; letter-spacing: 0.04em; }
.qv-rating-label { font-family: 'Barlow', sans-serif; font-size: 0.7rem; font-weight: 500; color: #7A7268; }

.qv-brand {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: #7A7268;
}
.qv-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem); letter-spacing: 0.01em;
  color: #0C0905; line-height: 1.1; margin-bottom: 0.25rem;
}
.qv-price-row { display: flex; align-items: baseline; gap: 0.625rem; }
.qv-price {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: 1.4rem; color: #1A4DCC;
}
.qv-was {
  font-family: 'Barlow', sans-serif; font-size: 0.85rem;
  color: #7A7268; text-decoration: line-through;
}

.qv-divider { height: 1px; background: #D0C8B8; margin: 0.5rem 0; }

.qv-label {
  font-family: 'Barlow', sans-serif; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: #7A7268;
  margin-bottom: 0.5rem;
}
.qv-swatches { display: flex; align-items: center; gap: 0.5rem; }
.qv-swatch {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid transparent; outline: none; cursor: pointer; flex-shrink: 0;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
}
.qv-swatch:hover { transform: scale(1.18); }
.qv-swatch.active { box-shadow: 0 0 0 2px #F8F5EE, 0 0 0 3.5px #0C0905; }
.qv-swatch:focus-visible { box-shadow: 0 0 0 2px #F8F5EE, 0 0 0 3.5px #1A4DCC; }

.qv-sizes { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.qv-size-btn {
  min-width: 48px; padding: 0.45rem 0.75rem;
  border: 1.5px solid #D0C8B8; background: transparent;
  font-family: 'Barlow', sans-serif; font-size: 0.75rem; font-weight: 500;
  color: #0C0905; cursor: pointer; letter-spacing: 0.04em;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  text-align: center;
}
.qv-size-btn:hover { border-color: #0C0905; }
.qv-size-btn.active { border-color: #0C0905; background: #0C0905; color: #F8F5EE; }
.qv-size-btn[disabled] { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }
.qv-size-btn:focus-visible { outline: 2px solid #1A4DCC; outline-offset: 2px; }

.qv-atc {
  display: flex; align-items: center; justify-content: center; gap: 0.625rem;
  width: 100%; padding: 1rem; background: #0C0905; color: #F8F5EE;
  border: none; cursor: pointer; margin-top: 0.75rem;
  font-family: 'Barlow', sans-serif; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  transition: background 0.22s, letter-spacing 0.22s;
}
.qv-atc:hover { background: #1A4DCC; letter-spacing: 0.2em; }
.qv-atc.added { background: #1A4DCC; }
.qv-atc:focus-visible { outline: 2px solid #D94420; outline-offset: 2px; }

.qv-view-full {
  display: block; text-align: center; margin-top: 0.75rem;
  font-family: 'Barlow', sans-serif; font-size: 0.68rem; font-weight: 500;
  color: #7A7268; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-bottom: 1px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.qv-view-full:hover { color: #0C0905; border-color: #0C0905; }

.qv-stock-note {
  font-family: 'Barlow', sans-serif; font-size: 0.65rem; font-weight: 600;
  color: #D94420; letter-spacing: 0.06em; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.35rem;
}

@media (max-width: 640px) {
  .col-chip-bar { padding: 0.625rem 1.25rem; }
  .col-chip-bar.visible { padding: 0.5rem 1.25rem; }
  .col-view-toggle { display: none; }
}
