/* ================================================================
   THUS ESSENTIALS — shop.css
   Ultra-Luxurious Fashion E-Commerce Experience
   Inherits tokens from index.css & layout.css
   ================================================================ */

/* ── Smooth Scrolling & Base Overrides ── */
html {
  scroll-behavior: smooth;
}

body.shop-page {
  background-color: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── Scroll Progress Indicator ── */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #8B7355, #C8A97A, #E5D5C5);
  z-index: 10000;
  transition: width 0.1s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 8px rgba(139, 115, 85, 0.4);
}

/* ── Glass Header Enhancement ── */
.site-header--glass {
  background: rgba(247, 245, 240, 0.85);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid rgba(139, 115, 85, 0.15);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header--glass.scrolled {
  background: rgba(247, 245, 240, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

/* ─────────────────────────────────────────────
   1. INFINITE LUXURY MARQUEE TICKER
   ───────────────────────────────────────────── */
.shop-marquee-wrap {
  margin-top: 76px; /* Offset fixed header */
  position: relative;
  z-index: 10;
  background: #191614;
  color: #FAF8F4;
  overflow: hidden;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(200, 169, 122, 0.2);
  white-space: nowrap;
  user-select: none;
}

.shop-marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: shopMarqueeScroll 28s linear infinite;
  will-change: transform;
}

.shop-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E2DDD5;
}

.shop-marquee-item span {
  color: #C8A97A;
  font-size: 0.75rem;
}

@keyframes shopMarqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   2. CINEMATIC SHOP HERO
   ───────────────────────────────────────────── */
.shop-hero {
  position: relative;
  min-height: 85vh;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0 clamp(4rem, 8vw, 6rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(200, 169, 122, 0.09) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(139, 115, 85, 0.06) 0%, transparent 50%),
              linear-gradient(180deg, #FAF8F4 0%, #F4F0E8 100%);
  border-bottom: 1px solid rgba(139, 115, 85, 0.12);
}

.shop-hero__ambient-glow {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 169, 122, 0.14) 0%, rgba(247, 245, 240, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.shop-hero__container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Left Column */
.shop-hero__badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.1rem;
  background: rgba(139, 115, 85, 0.08);
  border: 1px solid rgba(139, 115, 85, 0.22);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6E5A44;
  margin-bottom: 1.5rem;
}

.shop-hero__pulse-dot {
  width: 7px;
  height: 7px;
  background: #8B7355;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 0 rgba(139, 115, 85, 0.6);
  animation: heroPulse 2s infinite;
}

@keyframes heroPulse {
  0% { box-shadow: 0 0 0 0 rgba(139, 115, 85, 0.6); }
  70% { box-shadow: 0 0 0 7px rgba(139, 115, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(139, 115, 85, 0); }
}

.shop-hero__headline {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.6rem;
}

.shop-hero__headline em {
  font-style: italic;
  font-weight: 300;
  color: #8B7355;
  background: linear-gradient(135deg, #1C1917 0%, #8B7355 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shop-hero__sub {
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1.1vw, 0.98rem);
  font-weight: 300;
  line-height: 1.65;
  color: #5C554E;
  max-width: 48ch;
  margin-bottom: 2rem;
}

/* Quick Jump Pills */
.shop-hero__quickjump {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.shop-hero__quickjump-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8C8276;
}

.shop-hero__quickjump-pills {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.shop-jump-pill {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(139, 115, 85, 0.18);
  border-radius: 100px;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-jump-pill:hover,
.shop-jump-pill.is-active {
  background: var(--ink);
  color: #FAF8F4;
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(28, 25, 23, 0.12);
}

/* Metrics */
.shop-hero__metrics {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(139, 115, 85, 0.15);
}

.shop-metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.shop-metric__num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}

.shop-metric__label {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8C8276;
}

.shop-metric-sep {
  width: 1px;
  height: 32px;
  background: rgba(139, 115, 85, 0.2);
}

/* ─── Featured Look Card (Right Column) ─── */
.shop-spotlight-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 18px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(139, 115, 85, 0.18);
  box-shadow: 0 20px 50px -12px rgba(28, 25, 23, 0.12),
              0 0 0 1px rgba(17, 17, 17, 0.04);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.shop-spotlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 65px -15px rgba(28, 25, 23, 0.18),
              0 0 0 1px rgba(139, 115, 85, 0.25);
}

.shop-spotlight-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3/3.8;
  overflow: hidden;
  background: #EDE9E1;
}

.shop-spotlight-card__img,
.shop-spotlight-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.shop-spotlight-card:hover .shop-spotlight-card__img,
.shop-spotlight-card:hover .shop-spotlight-card__video {
  transform: scale(1.04);
}

.shop-spotlight-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(20,16,12,0.45) 100%);
  pointer-events: none;
}

.shop-spotlight-card__chip {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(26, 22, 19, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #C8A97A;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid rgba(200, 169, 122, 0.3);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.shop-spotlight-card__caption {
  padding: 1.25rem 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
}

.shop-spotlight-card__tagline {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 400;
  font-style: italic;
  color: #8C8276;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0;
}

/* Scroll Mouse Indicator */
.shop-hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: #8C8276;
  text-decoration: none;
  transition: opacity 0.3s;
  z-index: 2;
}

.shop-hero__scroll-indicator:hover {
  color: var(--ink);
}

.shop-hero__scroll-indicator span {
  font-family: var(--sans);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.shop-hero__scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(139, 115, 85, 0.4);
  border-radius: 12px;
  position: relative;
}

.shop-hero__scroll-wheel {
  width: 3px;
  height: 6px;
  background: #8B7355;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
  0%   { opacity: 0; transform: translateX(-50%) translateY(0); }
  40%  { opacity: 1; }
  80%  { opacity: 0; transform: translateX(-50%) translateY(12px); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ─────────────────────────────────────────────
   3. DOCKING GLASS FILTER & TOOLBAR
   ───────────────────────────────────────────── */
.shop-body {
  padding-top: 3.5rem;
  padding-bottom: 6rem;
  position: relative;
}

.shop-toolbar-glass {
  position: sticky;
  top: 68px; /* Sticks beneath header */
  z-index: 800;
  margin-bottom: 3.5rem;
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(139, 115, 85, 0.15);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(30, 24, 18, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-toolbar-glass.is-docked {
  box-shadow: 0 15px 40px rgba(30, 24, 18, 0.08);
  border-color: rgba(139, 115, 85, 0.25);
}

.shop-toolbar-inner {
  padding: 0.9rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Category Tabs with Animated Slider & Smooth Scroll */
.shop-cat-tabs {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  background: rgba(235, 230, 222, 0.55);
  padding: 5px 8px;
  border-radius: 100px;
  border: 1px solid rgba(139, 115, 85, 0.15);
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  max-width: 100%;
  scrollbar-width: thin;
  scrollbar-color: rgba(139, 115, 85, 0.3) transparent;
  -webkit-overflow-scrolling: touch;
}

.shop-cat-tabs::-webkit-scrollbar {
  height: 3px;
}

.shop-cat-tabs::-webkit-scrollbar-thumb {
  background: rgba(139, 115, 85, 0.3);
  border-radius: 3px;
}

.shop-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 7px 16px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: #5C554E;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
  z-index: 2;
  position: relative;
}

.shop-cat-btn:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
}

.shop-cat-btn.is-active {
  color: #FAF8F4;
  background: var(--ink);
  box-shadow: 0 2px 10px rgba(28, 25, 23, 0.15);
}

.shop-cat-count {
  font-size: 0.55rem;
  font-weight: 600;
  opacity: 0.7;
  padding: 2px 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
}

.shop-cat-btn:not(.is-active) .shop-cat-count {
  background: rgba(0, 0, 0, 0.06);
}

/* Controls Right */
.shop-toolbar-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Search mini */
.shop-filter-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 100px;
  padding: 6px 12px;
  transition: all 0.25s ease;
}

.shop-filter-search:focus-within {
  border-color: #8B7355;
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.shop-filter-search svg {
  width: 14px;
  height: 14px;
  color: #8C8276;
}

.shop-filter-search input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--ink);
  width: 110px;
  transition: width 0.3s ease;
}

.shop-filter-search input:focus {
  width: 150px;
}

.shop-filter-search-clear {
  border: none;
  background: none;
  color: #8C8276;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

/* Counter pill */
.shop-counter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6E5A44;
  white-space: nowrap;
}

.shop-counter-dot {
  width: 6px;
  height: 6px;
  background: #388E3C;
  border-radius: 50%;
}

/* Sorting select glass */
.shop-sort-glass {
  position: relative;
}

.shop-sort-select {
  appearance: none;
  -webkit-appearance: none;
  background: #FFFFFF;
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 100px;
  padding: 7px 30px 7px 14px;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  outline: none;
  transition: all 0.25s ease;
}

.shop-sort-select:hover,
.shop-sort-select:focus {
  border-color: #8B7355;
}

.shop-sort-icon {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  color: #8C8276;
  pointer-events: none;
}

/* Layout Switchers (2, 3, 4 cols & list) */
.shop-layout-switchers {
  display: flex;
  gap: 3px;
  background: rgba(235, 230, 222, 0.6);
  padding: 3px;
  border-radius: 8px;
  border: 1px solid rgba(139, 115, 85, 0.15);
}

.shop-layout-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #8C8276;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-layout-btn:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}

.shop-layout-btn.is-active {
  color: var(--ink);
  background: #FFFFFF;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.shop-layout-btn svg {
  width: 16px;
  height: 16px;
}

/* ─────────────────────────────────────────────
   4. PRODUCT GRID & MULTI-LAYOUTS
   ───────────────────────────────────────────── */
.shop-grid {
  display: grid;
  gap: clamp(1.8rem, 3.5vw, 3.5rem) clamp(1.2rem, 2.5vw, 2.5rem);
  transition: opacity 0.3s ease;
}

/* 3 Columns (Default Luxury) */
.shop-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* 2 Columns (Editorial Showcase) */
.shop-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
}

.shop-grid--2 .shop-card__title {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.shop-grid--2 .shop-card__img-box {
  aspect-ratio: 4/5;
}

/* 4 Columns (Catalog Scanning) */
.shop-grid--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.4rem;
}

.shop-grid--4 .shop-card__title {
  font-size: 1.15rem;
}

/* List Mode (Editorial Horizontal) */
.shop-grid--list {
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.shop-grid--list .shop-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.5rem;
  align-items: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(139, 115, 85, 0.15);
}

.shop-grid--list .shop-card__tilt-wrapper {
  margin-bottom: 0;
}

.shop-grid--list .shop-card__title {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.shop-card.is-hidden {
  display: none !important;
}

/* ─────────────────────────────────────────────
   5. INTERACTIVE 3D PRODUCT CARD
   ───────────────────────────────────────────── */
.shop-card {
  position: relative;
  perspective: 1200px;
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
}

.shop-card__tilt-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #EFECE6;
  border: 1px solid rgba(139, 115, 85, 0.14);
  box-shadow: 0 10px 30px rgba(35, 28, 22, 0.04);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
  transform-style: preserve-3d;
}

.shop-card:hover .shop-card__tilt-wrapper {
  border-color: rgba(139, 115, 85, 0.35);
  box-shadow: 0 20px 50px rgba(35, 28, 22, 0.12),
              0 2px 10px rgba(139, 115, 85, 0.1);
}

.shop-card__media-link {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.shop-card__img-box {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #EAE6DE;
}

.shop-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-card__img--secondary {
  opacity: 0;
  transform: scale(1.06);
}

.shop-card:hover .shop-card__img--primary {
  opacity: 0;
  transform: scale(1.06);
}

.shop-card:hover .shop-card__img--secondary {
  opacity: 1;
  transform: scale(1);
}

.shop-card__ambient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(20,16,12,0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.shop-card:hover .shop-card__ambient-overlay {
  opacity: 1;
}

/* Badges */
.shop-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 100px;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(8px);
  color: var(--ink);
  border: 1px solid rgba(139, 115, 85, 0.2);
  z-index: 3;
}

.shop-card__badge--hot {
  background: #1C1917;
  color: #FAF8F4;
  border-color: #1C1917;
}

.shop-card__badge--limited {
  background: #8B7355;
  color: #FFFFFF;
  border-color: #8B7355;
}

.shop-card__badge--sig {
  background: #191614;
  color: #C8A97A;
  border-color: rgba(200, 169, 122, 0.4);
}

.shop-card__badge--new {
  background: #2E7D32;
  color: #FFFFFF;
  border-color: #2E7D32;
}

/* Wishlist Heart Button */
.shop-card__wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(139, 115, 85, 0.2);
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  z-index: 4;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-card__wishlist-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-card__wishlist-btn:hover {
  background: #1C1917;
  color: #FAF8F4;
  border-color: #1C1917;
  transform: scale(1.12);
}

.shop-card__wishlist-btn.is-saved {
  background: #1C1917;
  color: #E57373;
  border-color: #1C1917;
}

.shop-card__wishlist-btn.is-saved svg {
  fill: #E57373;
  color: #E57373;
  transform: scale(1.15);
}

/* Quick View Center Trigger */
.shop-card__quickview-trigger {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%) scale(0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 9px 20px;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid rgba(139, 115, 85, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
  z-index: 5;
  cursor: pointer;
}

.shop-card:hover .shop-card__quickview-trigger {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -40%) scale(1);
}

.shop-card__quickview-trigger:hover {
  background: #1C1917;
  color: #FAF8F4;
  border-color: #1C1917;
}

/* Quick Add Size Bar (Glides Up from Bottom of Image) */
.shop-card__quick-sizes {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.8rem 1rem;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(139, 115, 85, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
}

.shop-card:hover .shop-card__quick-sizes {
  transform: translateY(0);
}

.shop-card__quick-label {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6E5A44;
}

.shop-card__size-chips {
  display: flex;
  gap: 5px;
}

.shop-chip {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid rgba(139, 115, 85, 0.25);
  background: #FFFFFF;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-chip:hover {
  background: var(--ink);
  color: #FAF8F4;
  border-color: var(--ink);
  transform: scale(1.12);
}

.shop-chip.is-added {
  background: #388E3C !important;
  color: #FFFFFF !important;
  border-color: #388E3C !important;
  transform: scale(0.95);
}

/* Card Details Bottom */
.shop-card__details {
  padding-top: 1.2rem;
}

.shop-card__tag-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.shop-card__cat-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8C8276;
}

.shop-card__swatches {
  display: flex;
  gap: 5px;
}

.shop-swatch {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-swatch:hover,
.shop-swatch.is-active {
  transform: scale(1.25);
  box-shadow: 0 0 0 1.5px #1C1917;
}

.shop-card__title {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.6vw, 1.45rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

.shop-card__title a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.25s ease;
}

.shop-card__title a:hover {
  color: #8B7355;
}

.shop-card__price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-card__price {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.shop-card__shipping-note,
.shop-card__stock-tag {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8B7355;
}

.shop-card__stock-tag {
  color: #D32F2F;
}

/* ─────────────────────────────────────────────
   6. IN-GRID EDITORIAL STORYTELLING PANELS
   ───────────────────────────────────────────── */
.shop-grid-editorial {
  grid-column: span 3;
  position: relative;
  min-height: 380px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 3rem clamp(2rem, 5vw, 5rem);
  margin: 1.5rem 0;
  border: 1px solid rgba(139, 115, 85, 0.2);
  box-shadow: 0 20px 50px rgba(35, 28, 22, 0.08);
}

.shop-grid--2 .shop-grid-editorial {
  grid-column: span 2;
}

.shop-grid--4 .shop-grid-editorial {
  grid-column: span 4;
}

.shop-grid-editorial__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.shop-grid-editorial__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-grid-editorial:hover .shop-grid-editorial__bg img {
  transform: scale(1.08);
}

.shop-grid-editorial__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 16, 13, 0.88) 0%, rgba(20, 16, 13, 0.55) 60%, rgba(20, 16, 13, 0.2) 100%);
}

.shop-grid-editorial__content {
  position: relative;
  z-index: 2;
  max-width: 48ch;
  color: #FAF8F4;
}

.shop-grid-editorial__kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #C8A97A;
  margin-bottom: 0.8rem;
}

.shop-grid-editorial__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 300;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.shop-grid-editorial__title em {
  font-style: italic;
  color: #E5D5C5;
}

.shop-grid-editorial__copy {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  color: #D2CBBF;
  margin-bottom: 1.8rem;
}

.shop-grid-editorial__btn,
.shop-grid-editorial__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 11px 24px;
  background: #FAF8F4;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid #FAF8F4;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-grid-editorial__btn:hover,
.shop-grid-editorial__link:hover {
  background: #C8A97A;
  color: #1C1917;
  border-color: #C8A97A;
  transform: translateX(4px);
}

.shop-grid-editorial__btn svg,
.shop-grid-editorial__link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}

.shop-grid-editorial__btn:hover svg,
.shop-grid-editorial__link:hover svg {
  transform: translateX(3px);
}

/* Empty Filter State */
.shop-empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 6rem 2rem;
  background: #FFFFFF;
  border: 1px dashed rgba(139, 115, 85, 0.3);
  border-radius: 18px;
  margin: 2rem 0;
}

.shop-empty-state__icon svg {
  width: 48px;
  height: 48px;
  color: #8B7355;
  margin-bottom: 1.2rem;
}

.shop-empty-state h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.shop-empty-state p {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: #8C8276;
  margin-bottom: 1.5rem;
}

.shop-empty-state__reset-btn {
  padding: 10px 26px;
  background: var(--ink);
  color: #FAF8F4;
  border: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.shop-empty-state__reset-btn:hover {
  background: #8B7355;
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────
   7. FABRIC & CRAFTSMANSHIP SPOTLIGHT
   ───────────────────────────────────────────── */
.shop-materials {
  background: #FAF8F4;
  border-top: 1px solid rgba(139, 115, 85, 0.12);
  border-bottom: 1px solid rgba(139, 115, 85, 0.12);
  padding: 5.5rem 0;
}

.shop-materials__header {
  text-align: center;
  max-width: 55ch;
  margin: 0 auto 4rem;
}

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

.material-card {
  background: #FFFFFF;
  border: 1px solid rgba(139, 115, 85, 0.16);
  border-radius: 16px;
  padding: 2.2rem;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.material-card:hover {
  transform: translateY(-6px);
  border-color: #8B7355;
  box-shadow: 0 15px 40px rgba(35, 28, 22, 0.08);
}

.material-card__num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: #C8A97A;
  margin-bottom: 1rem;
}

.material-card__title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.material-card__text {
  font-family: var(--sans);
  font-size: 0.8rem;
  line-height: 1.6;
  color: #5C554E;
  margin-bottom: 1.4rem;
}

.material-card__tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8B7355;
  padding: 4px 10px;
  background: rgba(139, 115, 85, 0.08);
  border-radius: 100px;
}

/* ─────────────────────────────────────────────
   8. ATELIER GUARANTEE BANNER
   ───────────────────────────────────────────── */
.shop-guarantee {
  padding: 4rem 0;
  background: #191614;
  color: #FAF8F4;
}

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

.guarantee-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.guarantee-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: rgba(200, 169, 122, 0.12);
  border: 1px solid rgba(200, 169, 122, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8A97A;
}

.guarantee-icon svg {
  width: 22px;
  height: 22px;
}

.guarantee-item h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 0.45rem;
}

.guarantee-item p {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: #A89F91;
  line-height: 1.5;
}

/* ─────────────────────────────────────────────
   9. QUICK VIEW MODAL
   ───────────────────────────────────────────── */
.shop-qv-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-qv-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.shop-qv-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 10, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.shop-qv-container {
  position: relative;
  z-index: 2;
  width: min(920px, 94vw);
  max-height: 90vh;
  overflow-y: auto;
  background: #FAF8F4;
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3),
              0 2px 10px rgba(139, 115, 85, 0.2);
  border: 1px solid rgba(139, 115, 85, 0.2);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-qv-modal.is-open .shop-qv-container {
  transform: scale(1) translateY(0);
}

.shop-qv-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(139, 115, 85, 0.2);
  background: rgba(250, 248, 244, 0.9);
  backdrop-filter: blur(8px);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
}

.shop-qv-close:hover {
  background: #1C1917;
  color: #FAF8F4;
  transform: rotate(90deg);
}

.shop-qv-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.shop-qv-gallery {
  background: #EFECE6;
  position: relative;
  display: flex;
  flex-direction: column;
}

.shop-qv-img-main {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.shop-qv-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shop-qv-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 5px 12px;
  background: rgba(28, 25, 23, 0.85);
  color: #C8A97A;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 100px;
}

.shop-qv-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px 18px;
  background: #E5E0D6;
  overflow-x: auto;
}

.shop-qv-thumb {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.shop-qv-thumb.is-active {
  border-color: #1C1917;
  transform: scale(1.05);
}

.shop-qv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-qv-details {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shop-qv-tag {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8B7355;
  display: block;
  margin-bottom: 0.3rem;
}

.shop-qv-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.shop-qv-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.shop-qv-price {
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}

.shop-qv-stock-badge {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2E7D32;
  padding: 3px 8px;
  background: rgba(46, 125, 50, 0.08);
  border-radius: 4px;
}

.shop-qv-desc {
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.6;
  color: #5C554E;
  margin-bottom: 1.6rem;
}

/* Sizing in QV */
.shop-qv-size-section {
  margin-bottom: 1.6rem;
}

.shop-qv-size-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.shop-qv-size-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.shop-qv-guide-btn {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 0.62rem;
  color: #8B7355;
  text-decoration: underline;
  cursor: pointer;
}

.shop-qv-sizes {
  display: flex;
  gap: 8px;
}

.shop-qv-size-btn {
  flex: 1;
  padding: 9px 0;
  border-radius: 8px;
  border: 1px solid rgba(139, 115, 85, 0.25);
  background: #FFFFFF;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
}

.shop-qv-size-btn:hover {
  border-color: var(--ink);
}

.shop-qv-size-btn.is-active {
  background: var(--ink);
  color: #FAF8F4;
  border-color: var(--ink);
}

/* Accordions */
.shop-qv-accordions {
  border-top: 1px solid rgba(139, 115, 85, 0.15);
  margin-bottom: 1.8rem;
}

.shop-qv-accordion {
  border-bottom: 1px solid rgba(139, 115, 85, 0.15);
  padding: 0.8rem 0;
}

.shop-qv-accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.shop-qv-accordion summary::-webkit-details-marker {
  display: none;
}

.shop-qv-accordion summary svg {
  width: 14px;
  height: 14px;
  color: #8B7355;
  transition: transform 0.3s ease;
}

.shop-qv-accordion[open] summary svg {
  transform: rotate(180deg);
}

.shop-qv-accordion p {
  margin-top: 0.6rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  line-height: 1.5;
  color: #6E5A44;
}

/* Actions in QV */
.shop-qv-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.shop-qv-add-btn {
  width: 100%;
  padding: 14px 20px;
  background: var(--ink);
  color: #FAF8F4;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 25px rgba(28, 25, 23, 0.15);
}

.shop-qv-add-btn:hover {
  background: #8B7355;
  border-color: #8B7355;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(139, 115, 85, 0.25);
}

.shop-qv-buynow-btn {
  width: 100%;
  padding: 13px 20px;
  background: #e8e2d8;
  color: #111111;
  border: 1px solid #8b7355;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.shop-qv-buynow-btn:hover {
  background: #8b7355;
  color: #FFFFFF;
  border-color: #8b7355;
}

.shop-qv-buynow-btn svg {
  width: 16px;
  height: 16px;
}

/* ─────────────────────────────────────────────
   10. SLIDE-OUT BAG DRAWER & SHIPPING TRACKER
   ───────────────────────────────────────────── */
.bag-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bag-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.bag-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 10, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.bag-drawer__panel {
  position: relative;
  z-index: 2;
  width: min(440px, 88vw);
  height: 100%;
  background: #FAF8F4;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid rgba(139, 115, 85, 0.18);
}

.bag-drawer.is-open .bag-drawer__panel {
  transform: translateX(0);
}

.bag-drawer__header {
  padding: 1.5rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(139, 115, 85, 0.14);
}

.bag-drawer__title-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.bag-drawer__title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0;
}

.bag-drawer__badge {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: rgba(139, 115, 85, 0.12);
  border-radius: 100px;
  color: #6E5A44;
}

.bag-drawer__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(139, 115, 85, 0.2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.25s ease;
}

.bag-drawer__close:hover {
  background: var(--ink);
  color: #FAF8F4;
  transform: rotate(90deg);
}

/* Dynamic Free Shipping Meter */
.bag-shipping-meter {
  padding: 0.9rem 1.8rem;
  background: rgba(139, 115, 85, 0.07);
  border-bottom: 1px solid rgba(139, 115, 85, 0.12);
}

.bag-shipping-text {
  font-family: var(--sans);
  font-size: 0.68rem;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.bag-shipping-text strong {
  color: #8B7355;
  font-weight: 600;
}

.bag-shipping-bar {
  height: 5px;
  background: rgba(139, 115, 85, 0.18);
  border-radius: 10px;
  overflow: hidden;
}

.bag-shipping-fill {
  height: 100%;
  background: linear-gradient(90deg, #8B7355, #2E7D32);
  border-radius: 10px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Bag Body & Item Cards */
.bag-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.8rem;
}

.bag-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 2rem 0;
}

.bag-empty-icon svg {
  width: 48px;
  height: 48px;
  color: #8B7355;
  margin-bottom: 1rem;
}

.bag-empty h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.bag-empty p {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: #8C8276;
  max-width: 28ch;
  margin-bottom: 1.5rem;
}

.bag-empty-cta {
  padding: 9px 20px;
  background: var(--ink);
  color: #FAF8F4;
  border: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.bag-empty-cta:hover {
  background: #8B7355;
}

/* Items List */
.bag-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 0;
  margin: 0;
}

.bag-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(139, 115, 85, 0.12);
  animation: bagItemSlide 0.3s ease;
}

@keyframes bagItemSlide {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.bag-item__img {
  width: 70px;
  height: 85px;
  border-radius: 8px;
  overflow: hidden;
  background: #EFECE6;
}

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

.bag-item__name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.bag-item__meta {
  font-family: var(--sans);
  font-size: 0.62rem;
  color: #8C8276;
  margin-bottom: 0.4rem;
}

.bag-item__price {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}

.bag-item__qty-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #FFFFFF;
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 6px;
  padding: 2px 6px;
}

.bag-item__qty-btn {
  border: none;
  background: none;
  font-size: 0.85rem;
  color: var(--ink);
  cursor: pointer;
  padding: 0 4px;
}

.bag-item__qty-val {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  min-width: 14px;
  text-align: center;
}

.bag-item__remove {
  border: none;
  background: none;
  color: #A89F91;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.bag-item__remove:hover {
  color: #D32F2F;
}

/* Bag Footer */
.bag-drawer__footer {
  padding: 1.4rem 1.8rem 1.8rem;
  border-top: 1px solid rgba(139, 115, 85, 0.15);
  background: #FAF8F4;
}

.bag-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.bag-subtotal-val {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}

.bag-shipping-note {
  font-family: var(--sans);
  font-size: 0.65rem;
  color: #8C8276;
  margin-bottom: 1.2rem;
}

.bag-checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bag-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 14px 22px;
  background: #111111;
  color: #f7f3ec !important;
  border: 1px solid #8b7355;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.bag-checkout-btn:hover {
  background: #8b7355;
  border-color: #8b7355;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 115, 85, 0.3);
  color: #FFFFFF !important;
}

.bag-checkout-btn svg {
  width: 16px;
  height: 16px;
}

.bag-continue-btn {
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(139, 115, 85, 0.25);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6E5A44;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bag-continue-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* ─────────────────────────────────────────────
   11. FLOATING TOAST NOTIFICATION
   ───────────────────────────────────────────── */
.shop-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 12px 20px;
  background: #1C1917;
  color: #FAF8F4;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25),
              0 0 0 1px rgba(200, 169, 122, 0.3);
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-toast.is-active,
.shop-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.shop-toast__icon-box {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.shop-toast__content {
  display: flex;
  flex-direction: column;
}

.shop-toast__title {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C8A97A;
}

.shop-toast__text {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: #FAF8F4;
}

/* ─────────────────────────────────────────────
   12. RESPONSIVENESS & MOBILE OPTIMIZATIONS
   ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .shop-hero__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .shop-spotlight-card {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .shop-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .shop-grid-editorial {
    grid-column: span 2;
  }
  
  .shop-guarantee__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .shop-toolbar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .shop-cat-tabs {
    overflow-x: auto;
    width: 100%;
    scrollbar-width: none;
  }
  .shop-cat-tabs::-webkit-scrollbar {
    display: none;
  }
  
  .shop-toolbar-controls {
    justify-content: space-between;
  }
  
  .shop-grid--3,
  .shop-grid--2,
  .shop-grid--4 {
    grid-template-columns: 1fr;
  }
  
  .shop-grid-editorial {
    grid-column: span 1;
    min-height: 320px;
    padding: 2rem 1.5rem;
  }
  
  .shop-materials__grid {
    grid-template-columns: 1fr;
  }
  
  .shop-guarantee__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .shop-qv-content {
    grid-template-columns: 1fr;
  }
  
  .shop-qv-img-main {
    aspect-ratio: 1/1;
  }
  
  .shop-grid--list .shop-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) { .shop-materials { display: none; } }

/* ─────────────────────────────────────────────
   13. SHOP PRODUCT CARD + QUICK VIEW POLISH
   ───────────────────────────────────────────── */
.shop-card__swatches,
.shop-swatch {
  display: none !important;
}

.shop-card__details {
  padding-top: 0.95rem;
}

.shop-card__price-line {
  gap: 0.75rem;
  align-items: flex-start;
}

.shop-card__actions {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.5rem;
  margin-top: 0.95rem;
}

.shop-card__add-btn,
.shop-card__save-action,
.shop-card__share-btn,
.shop-qv-share-btn {
  min-height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(28, 25, 23, 0.16);
  background: #ffffff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.shop-card__add-btn {
  background: var(--ink);
  border-color: var(--ink);
  color: #faf8f4;
}

.shop-card__add-btn:hover,
.shop-card__save-action:hover,
.shop-card__save-action.is-saved,
.shop-card__share-btn:hover,
.shop-qv-share-btn:hover {
  background: #8b7355;
  border-color: #8b7355;
  color: #ffffff;
  transform: translateY(-1px);
}

.shop-card__save-action,
.shop-card__share-btn {
  padding: 0 0.9rem;
}

.shop-card__quick-sizes {
  display: none;
}

.shop-card__quickview-trigger {
  opacity: 1;
  pointer-events: auto;
  top: auto;
  bottom: 14px;
  transform: translateX(-50%);
}

.shop-card:hover .shop-card__quickview-trigger {
  transform: translateX(-50%);
}

.shop-grid--horizontal {
  display: flex;
  gap: 1.35rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1.25rem;
}

.shop-grid--horizontal .shop-card {
  flex: 0 0 min(360px, 82vw);
  scroll-snap-align: start;
}

.shop-grid--horizontal .shop-grid-editorial {
  flex: 0 0 min(560px, 88vw);
  min-height: 360px;
}

.shop-qv-modal {
  padding: 18px;
}

.shop-qv-dialog {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  background: #faf8f4;
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-qv-modal.is-open .shop-qv-dialog {
  transform: translateY(0) scale(1);
}

.shop-qv-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
}

.shop-qv-main-img-box {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eae6de;
}

.shop-qv-main-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-qv-info {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.shop-qv-category,
.shop-qv-section-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b7355;
}

.shop-qv-label-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.shop-qv-section {
  margin: 1.25rem 0;
}

.shop-qv-actions {
  margin-top: auto;
}

.shop-qv-view-full {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px) {
  .shop-toolbar-inner,
  .shop-toolbar-controls {
    align-items: stretch;
  }

  .shop-cat-tabs,
  .shop-toolbar-controls {
    width: 100%;
    overflow-x: auto;
  }

  .shop-qv-modal {
    align-items: flex-end;
    padding: 0;
  }

  .shop-qv-dialog {
    width: 100%;
    max-height: 92vh;
    border-radius: 12px 12px 0 0;
  }

  .shop-qv-grid {
    grid-template-columns: 1fr;
  }

  .shop-qv-gallery {
    min-height: 0;
  }

  .shop-qv-main-img-box {
    aspect-ratio: 16 / 13;
  }
}

@media (max-width: 620px) {
  .shop-card__actions {
    grid-template-columns: 1fr 1fr;
  }

  .shop-card__add-btn {
    grid-column: 1 / -1;
  }

  .shop-card__save-action,
  .shop-card__share-btn {
    padding: 0 0.55rem;
  }

  .shop-qv-close {
    top: 10px;
    right: 10px;
  }
}
