/* ============================================================
   FONTS
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --black:      #171717;
  --white:      #ffffff;
  --gray:       #2b2b2b;
  --gray-lt:    #f0f0f0;
  --purple:     #4622de;
  --yellow:     #ecde04;
  --salmon:     #ff8352;
  --enoki:      #f4f5ea;
  --oyster:     #fbe6b0;
  --dew:        #d3edd9;
  --text:       #171717;
  --text-muted: #6b6b6b;
  --border:     #e0e0e0;
  --surface:    #f5f5f5;
  --green:      #2d7a3a;
  --radius:     32px;
  --radius-sm:  16px;
  --gutter:     clamp(16px, 3vw, 50px);
  --transition: 0.3s ease;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ============================================================
   ANNOUNCEMENT BAR (MARQUEE)
============================================================ */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  overflow: hidden;
  white-space: nowrap;
  height: 36px;
  display: flex;
  align-items: center;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 36s linear infinite;
  will-change: transform;
}
.marquee-track span {
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.marquee-track span::after {
  content: "✦";
  opacity: 0.5;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  height: 70px;
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.header-logo {
  display: flex;
  align-items: center;
  line-height: 0;
}
.site-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.header-nav {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
  transition: background var(--transition);
}
.header-nav a:hover,
.header-nav a.active { background: var(--gray-lt); }
.header-actions {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-self: end;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  font-size: 18px;
}
.icon-btn:hover { background: var(--gray-lt); }
.cart-btn {
  background: var(--black);
  color: var(--white);
  padding: 0 18px;
  height: 40px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: opacity var(--transition);
}
.cart-btn:hover { opacity: 0.8; }
.cart-count {
  background: var(--yellow);
  color: var(--black);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   HERO (HOME)
============================================================ */
.hero {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px var(--gutter) 32px clamp(24px, 5vw, 80px);
  color: var(--white);
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}
.hero-title {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.hero-title em { font-style: normal; color: var(--yellow); }
.hero-body {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 420px;
  margin-bottom: 14px;
  line-height: 1.6;
  text-align: center;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--white);
  color: var(--black);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  transition: opacity var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-secondary {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition: border-color var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.7); transform: translateY(-1px); }
.hero-visual { position: relative; overflow: hidden; }
.hero-visual-inner {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}
.hero-tile { border-radius: 0; overflow: hidden; }
.hero-tile-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.hero-tile:hover .hero-tile-img { transform: scale(1.05); }
.tile-1 { background: linear-gradient(135deg, #3a1a6e 0%, #6b35c7 100%); }
.tile-2 { background: linear-gradient(135deg, #1a3a2e 0%, #2d6e50 100%); }
.tile-3 { background: linear-gradient(135deg, #6e3a1a 0%, #c77035 100%); }
.tile-4 { background: linear-gradient(135deg, #2e3a1a 0%, #607040 100%); }
.tile-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
}

/* ============================================================
   PAGE HERO (sub-pages)
============================================================ */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: clamp(48px, 6vw, 80px) var(--gutter);
}
.page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
  min-height: 1.6em; /* reserve 1 line so empty eyebrow doesn't collapse */
}
.page-hero-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.page-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  min-height: 3.2em; /* reserve 2 lines (17px × 1.5 × 2 = 51px); 3.2em adds small buffer */
}

/* ============================================================
   BREADCRUMB
============================================================ */
.breadcrumb {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px var(--gutter) 0;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(0,0,0,0.4);
}
.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb-sep { opacity: 0.3; }
.breadcrumb-current { color: var(--black); font-weight: 500; }

/* ============================================================
   SECTION WRAPPER
============================================================ */
.section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) var(--gutter);
  box-sizing: border-box;
  flex: 1 0 auto;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.section-link {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.section-link:hover { opacity: 1; }

/* ============================================================
   FILTER CHIPS
============================================================ */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-chip {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid rgba(0,0,0,0.15);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-chip:hover { border-color: var(--black); }
.filter-chip.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ============================================================
   CATEGORY GRID
============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.category-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform var(--transition);
}
.category-card:hover { transform: translateY(-4px); }
.category-card:hover .category-card-img { transform: scale(1.06); }
.category-card-bg { position: absolute; inset: 0; }
.category-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 60%);
}
.category-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 16px;
  color: white;
}
.category-card-label strong { display: block; font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.category-card-label span { font-size: 12px; opacity: 0.7; margin-top: 2px; display: block; }
.cat-oyster    { background: linear-gradient(145deg, #8ecfb0, #4a9e7a); }
.cat-lions     { background: linear-gradient(145deg, #d4b483, #a08040); }
.cat-shiitake  { background: linear-gradient(145deg, #b08860, #7a5830); }
.cat-reishi    { background: linear-gradient(145deg, #c07070, #8a3040); }
.cat-enoki     { background: linear-gradient(145deg, #e8e4c0, #c0bc80); }
.cat-chestnut  { background: linear-gradient(145deg, #b09060, #705820); }
.cat-spawn     { background: linear-gradient(145deg, #c8d4e8, #6070a8); }
.cat-substrate { background: linear-gradient(145deg, #d8c8b0, #a08060); }
.cat-lab       { background: linear-gradient(145deg, #c8e0f0, #5090c0); }
.cat-books     { background: linear-gradient(145deg, #e8d8f0, #9060c0); }
.cat-wellness  { background: linear-gradient(145deg, var(--dew), #60a870); }
.cat-outdoor   { background: linear-gradient(145deg, #d0e8c0, #507840); }

/* ============================================================
   PRODUCT GRID
============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.product-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--enoki);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.product-card:hover .product-card-img { transform: scale(1.04); }
.product-card-media { aspect-ratio: 1; overflow: hidden; position: relative; }
.product-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.product-card-info { padding: 16px 16px 20px; }
.product-card-name { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.product-card-sub { font-size: 13px; opacity: 0.55; margin-bottom: 12px; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }
.product-card-price { font-size: 16px; font-weight: 700; }
.product-card-add {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.product-card-add:hover { background: var(--purple); transform: scale(1.1); }
.prod-1  { background: linear-gradient(145deg, var(--dew), #a0c8a8); }
.prod-2  { background: linear-gradient(145deg, var(--oyster), #d4b870); }
.prod-3  { background: linear-gradient(145deg, #c8d4e8, #8090b8); }
.prod-4  { background: linear-gradient(145deg, #e8c8b8, #c08060); }
.prod-5  { background: linear-gradient(145deg, #d8e8c8, #98c878); }
.prod-6  { background: linear-gradient(145deg, #e8d8c8, #b89870); }
.prod-7  { background: linear-gradient(145deg, #d0c8e8, #9080c8); }
.prod-8  { background: linear-gradient(145deg, #c8e8d8, #70b890); }
.prod-9  { background: linear-gradient(145deg, #e8e0c8, #c0b060); }
.prod-10 { background: linear-gradient(145deg, #d0e8e8, #60a8a8); }
.prod-11 { background: linear-gradient(145deg, #e8c8d8, #c06080); }
.prod-12 { background: linear-gradient(145deg, #c8d8e8, #607898); }
.prod-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

/* ============================================================
   PRODUCT DETAIL PAGE
============================================================ */
.product-detail {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: 90px;
}
.product-gallery-main {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 12px;
}
.product-gallery-main-img {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}
.product-gallery-thumbs {
  display: flex;
  gap: 8px;
}
.product-gallery-thumb {
  width: 72px; height: 72px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.product-gallery-thumb.active,
.product-gallery-thumb:hover { border-color: var(--black); }
.product-info { display: flex; flex-direction: column; gap: 20px; }
.product-info-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
}
.product-info-title {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.product-info-price {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.product-info-price .compare-price {
  font-size: 18px;
  opacity: 0.4;
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 8px;
}
.product-info-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.product-info-rating .stars { color: var(--yellow); letter-spacing: 1px; }
.product-info-rating .count { opacity: 0.5; }
.product-info-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0,0,0,0.7);
  border-top: 1px solid var(--gray-lt);
  padding-top: 20px;
}
.product-qty-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 100px;
  overflow: hidden;
}
.qty-btn {
  width: 40px; height: 44px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  color: var(--black);
}
.qty-btn:hover { background: var(--gray-lt); }
.qty-num {
  width: 40px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}
.btn-atc {
  flex: 1;
  background: var(--black);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition);
}
.btn-atc:hover { background: var(--purple); transform: translateY(-1px); }
.btn-atc.added { background: #2d7a4a; }
.product-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: var(--enoki);
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.product-meta-row {
  display: flex;
  gap: 12px;
}
.product-meta-label { font-weight: 600; min-width: 90px; }
.product-meta-val { color: rgba(0,0,0,0.65); }

/* ============================================================
   FEATURE BANNER
============================================================ */
.feature-banner {
  background: var(--black);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 var(--gutter);
  min-height: 480px;
}
.feature-banner-content {
  padding: clamp(40px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}
.feature-banner-tag {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
}
.feature-banner-title {
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.feature-banner-body {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 380px;
}
.feature-banner-visual {
  background: linear-gradient(135deg, #2a1855, #6b35c7, #9b6de0);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  opacity: 0.9;
}
.feature-banner-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.4) 100%);
}

/* ============================================================
   VALUE PROPS ROW
============================================================ */
.value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  background: var(--gray-lt);
  border-radius: var(--radius);
  overflow: hidden;
}
.value-prop {
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.value-prop-icon { font-size: 28px; line-height: 1; }
.value-prop-title { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.value-prop-body { font-size: 14px; color: rgba(0,0,0,0.55); line-height: 1.5; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.testimonial-card {
  background: var(--enoki);
  border-radius: var(--radius-sm);
  padding: 28px;
}
.testimonial-stars { color: var(--yellow); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-size: 15px; line-height: 1.6; margin-bottom: 20px; color: rgba(0,0,0,0.8); }
.testimonial-author { font-size: 13px; font-weight: 700; letter-spacing: 0.02em; }
.testimonial-location { font-size: 12px; opacity: 0.5; margin-top: 2px; }

/* ============================================================
   SKILL LEVEL SECTION
============================================================ */
.skill-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.skill-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  padding: 36px 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform var(--transition);
}
.skill-card:hover { transform: translateY(-4px); }
.skill-beginner  { background: linear-gradient(145deg, var(--dew), #70c890); }
.skill-inter     { background: linear-gradient(145deg, var(--oyster), #e0a840); }
.skill-advanced  { background: linear-gradient(145deg, #d0c0e8, var(--purple)); color: white; }
.skill-label { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; margin-bottom: 6px; }
.skill-title { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.skill-body { font-size: 14px; opacity: 0.7; line-height: 1.5; margin-bottom: 20px; }
.skill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.12);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
  transition: background var(--transition);
}
.skill-card:hover .skill-btn { background: rgba(0,0,0,0.22); }
.skill-advanced .skill-btn { background: rgba(255,255,255,0.18); color: white; }
.skill-emoji { position: absolute; top: 24px; right: 24px; font-size: 52px; opacity: 0.3; }

/* ============================================================
   CART PAGE
============================================================ */
.cart-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.cart-items { display: flex; flex-direction: column; gap: 0; }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-lt);
  align-items: center;
}
.cart-item-img {
  width: 80px; height: 80px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.cart-item-name { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.cart-item-sub { font-size: 13px; opacity: 0.5; margin-bottom: 12px; }
.cart-item-controls { display: flex; align-items: center; gap: 12px; }
.cart-item-remove {
  font-size: 12px;
  color: rgba(0,0,0,0.4);
  text-decoration: underline;
  cursor: pointer;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: var(--black); }
.cart-item-price { font-size: 16px; font-weight: 700; text-align: right; white-space: nowrap; }
.cart-empty {
  text-align: center;
  padding: 80px 32px;
  color: rgba(0,0,0,0.4);
}
.cart-empty-icon { font-size: 64px; margin-bottom: 20px; }
.cart-empty h2 { font-size: 22px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.cart-empty p { font-size: 15px; margin-bottom: 28px; }
.cart-summary {
  background: var(--enoki);
  border-radius: var(--radius-sm);
  padding: 28px;
  position: sticky;
  top: 90px;
}
.cart-summary-title { font-size: 18px; font-weight: 700; margin-bottom: 24px; }
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
}
.cart-summary-row.total {
  border-top: 1.5px solid rgba(0,0,0,0.12);
  margin-top: 8px;
  padding-top: 16px;
  font-size: 18px;
  font-weight: 700;
}
.btn-checkout {
  width: 100%;
  background: var(--black);
  color: var(--white);
  padding: 16px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition);
  cursor: pointer;
}
.btn-checkout:hover { background: var(--purple); }
.cart-summary-note { font-size: 12px; text-align: center; color: rgba(0,0,0,0.4); margin-top: 12px; }

/* ============================================================
   CHECKOUT SUCCESS
============================================================ */
.checkout-success {
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(64px, 10vw, 120px) var(--gutter);
  text-align: center;
}
.checkout-success-icon { font-size: 72px; margin-bottom: 24px; }
.checkout-success-title { font-size: clamp(28px, 3vw, 40px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.checkout-success-sub { font-size: 16px; color: rgba(0,0,0,0.55); line-height: 1.6; margin-bottom: 36px; }
.order-box {
  background: var(--enoki);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: left;
  margin-bottom: 32px;
}
.order-box-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.order-box-row:last-child { border-bottom: none; }
.order-box-label { opacity: 0.55; }
.order-box-val { font-weight: 600; }

/* ============================================================
   LEARN / BLOG
============================================================ */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.article-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--enoki);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.article-card-media {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}
.article-card-body { padding: 24px; }
.article-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}
.article-card-title { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; margin-bottom: 8px; }
.article-card-excerpt { font-size: 14px; color: rgba(0,0,0,0.6); line-height: 1.6; margin-bottom: 16px; }
.article-card-meta { font-size: 12px; color: rgba(0,0,0,0.4); display: flex; gap: 12px; }
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) var(--gutter);
}
.article-body h1 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px; }
.article-body .article-meta { font-size: 13px; color: rgba(0,0,0,0.4); margin-bottom: 32px; display: flex; gap: 16px; }
.article-body p { font-size: 17px; line-height: 1.75; color: rgba(0,0,0,0.75); margin-bottom: 24px; }
.article-body h2 { font-size: 24px; font-weight: 700; margin-bottom: 14px; margin-top: 40px; letter-spacing: -0.01em; }
.article-body h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; margin-top: 28px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 24px; }
.article-body li { font-size: 17px; line-height: 1.75; color: rgba(0,0,0,0.75); margin-bottom: 8px; }
.article-body blockquote {
  border-left: 3px solid var(--purple);
  padding: 16px 24px;
  background: var(--enoki);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-size: 18px;
  font-style: italic;
  color: rgba(0,0,0,0.7);
}

/* ============================================================
   CONTACT FORM
============================================================ */
.contact-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-label { font-size: 13px; font-weight: 600; }
.form-input, .form-textarea, .form-select {
  background: var(--enoki);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--black);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--purple); }
.form-textarea { min-height: 140px; resize: vertical; }
.btn-submit {
  background: var(--black);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-submit:hover { background: var(--purple); }

/* ============================================================
   FAQ ACCORDION
============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-lt); }
.faq-chevron { font-size: 12px; opacity: 0.5; transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 20px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0,0,0,0.65);
}

/* ============================================================
   POLICY PAGES (shipping, privacy, terms)
============================================================ */
.policy-body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) var(--gutter);
}
.policy-body h1 { font-size: clamp(28px, 3vw, 40px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.policy-body .policy-date { font-size: 13px; color: rgba(0,0,0,0.4); margin-bottom: 36px; }
.policy-body h2 { font-size: 20px; font-weight: 700; margin-top: 36px; margin-bottom: 12px; }
.policy-body p { font-size: 15px; line-height: 1.75; color: rgba(0,0,0,0.7); margin-bottom: 16px; }
.policy-body ul { padding-left: 24px; margin-bottom: 16px; }
.policy-body li { font-size: 15px; line-height: 1.75; color: rgba(0,0,0,0.7); margin-bottom: 6px; }
.shipping-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.shipping-table th { background: var(--black); color: white; padding: 12px 16px; text-align: left; font-weight: 600; }
.shipping-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-lt); }
.shipping-table tr:last-child td { border-bottom: none; }

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.about-card {
  background: var(--enoki);
  border-radius: var(--radius-sm);
  padding: 32px 28px;
}
.about-card-icon { font-size: 36px; margin-bottom: 14px; }
.about-card-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.about-card-body { font-size: 14px; color: rgba(0,0,0,0.6); line-height: 1.65; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.team-card { text-align: center; }
.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
}
.team-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 13px; color: rgba(0,0,0,0.5); }

/* ============================================================
   404 PAGE
============================================================ */
.not-found {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--gutter);
}
.not-found-code { font-size: 120px; font-weight: 700; letter-spacing: -0.05em; color: var(--gray-lt); line-height: 1; margin-bottom: 8px; }
.not-found-title { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.not-found-sub { font-size: 16px; color: rgba(0,0,0,0.5); margin-bottom: 32px; }

/* ============================================================
   NEWSLETTER
============================================================ */
.newsletter-section {
  background: var(--black);
  color: var(--white);
  padding: clamp(48px, 7vw, 96px) var(--gutter);
  text-align: center;
}
.newsletter-inner { max-width: 540px; margin: 0 auto; }
.newsletter-title { font-size: clamp(28px, 3vw, 44px); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 12px; }
.newsletter-sub { color: rgba(255,255,255,0.55); font-size: 16px; margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 8px; max-width: 420px; margin: 0 auto; }
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 14px 20px;
  font-size: 15px;
  color: white;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.5); }
.newsletter-btn {
  background: var(--yellow);
  color: var(--black);
  border-radius: 100px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  transition: opacity var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.newsletter-btn:hover { opacity: 0.85; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: clamp(48px, 6vw, 80px) var(--gutter) 32px;
  margin-top: auto;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top { display: flex; align-items: center; justify-content: center; gap: 32px; margin-bottom: 40px; flex-wrap: wrap; }
.footer-top > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand-name {
  margin-bottom: 12px;
  line-height: 1;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 280px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background var(--transition);
}
.footer-social-btn:hover { background: rgba(255,255,255,0.18); }
.footer-col-title { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px 24px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-links a:hover { color: white; }
.footer-nav-links { list-style: none; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 8px 32px; margin-bottom: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-nav-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color var(--transition); }
.footer-nav-links a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-legal { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-payments { display: flex; gap: 8px; }
.payment-badge {
  height: 22px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   TOAST NOTIFICATION
============================================================ */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--black);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 18px; }

/* ── Product skeleton loader ─────────────────────────────────────────────── */
@keyframes skeleton-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.product-skeleton {
  background: var(--enoki);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.product-skeleton-media {
  aspect-ratio: 1;
  background: linear-gradient(90deg, #e2e3d4 25%, #f4f5ea 50%, #e2e3d4 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}
.product-skeleton-info { padding: 16px 16px 20px; }
.product-skeleton-line {
  border-radius: 4px;
  background: linear-gradient(90deg, #e2e3d4 25%, #f4f5ea 50%, #e2e3d4 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  margin-bottom: 8px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 320px; position: relative; }
  .hero-visual-inner { position: relative; height: 320px; }
  .feature-banner { grid-template-columns: 1fr; }
  .feature-banner-visual { min-height: 240px; }
  .skill-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .product-detail { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .header-nav { display: none; }
  .header-inner { grid-template-columns: auto 1fr; }
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-nav-links { text-align: center; }
  .newsletter-form { flex-direction: column; }
  .product-qty-row { flex-wrap: wrap; }
}

/* ── Search bar ─────────────────────────────────────────────────────────── */
.header-actions { position: relative; }
.search-bar-wrap {
  display: none;
  align-items: center;
  position: absolute;
  right: calc(100% - 36px); /* sits to the left of the search icon */
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  z-index: 100;
  white-space: nowrap;
}
.search-bar-wrap.open { display: flex; }
.search-bar-input {
  border: none;
  background: transparent;
  padding: 6px 12px;
  font-size: 13px;
  width: 180px;
  outline: none;
  color: var(--text);
  border-radius: 100px;
}
.search-bar-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1;
}
.search-results {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 200;
  min-width: 300px;
  overflow: hidden;
}
.search-results.open { display: block; }
.search-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  gap: 12px;
  transition: background 0.15s;
}
.search-result-item:hover { background: var(--surface); }
.search-result-name { font-weight: 500; }
.search-result-cat { font-size: 12px; color: var(--text-muted); white-space: nowrap; }
.search-result-empty { padding: 12px 14px; font-size: 14px; color: var(--text-muted); }

/* ── Account menu ───────────────────────────────────────────────────────── */
.account-wrap { position: relative; }
.account-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 200;
  min-width: 180px;
  overflow: hidden;
}
.account-menu.open { display: block; }
.account-menu-item {
  display: block;
  padding: 11px 16px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  transition: background 0.15s;
}
.account-menu-item:hover { background: var(--surface); }

/* ── Hero slide animation ───────────────────────────────────────────────── */
@keyframes slideOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-40px); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.slide-out-left { animation: slideOutLeft 0.2s ease forwards; }
.slide-in-right { animation: slideInRight 0.3s ease forwards; }

/* ── Tinfoil mushroom hero image ────────────────────────────────────────── */
.hero-tinfoil {
  margin-bottom: 0;
}
.hero-tinfoil img {
  height: 360px;
  width: auto;
  display: block;
}

/* ── Header left (logo + hamburger wrapper) ─────────────────────────────── */
.header-left {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: start;
  align-self: center;
}

/* ── Hamburger button (hidden on desktop via min-width) ─────────────────── */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .hamburger-btn { display: none; }
}
.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ── Mobile drawer (hidden everywhere by default) ───────────────────────── */
.drawer-overlay { display: none; }
.drawer-overlay.open { display: block; }
.mobile-drawer { display: none; }
.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0 20px 16px;
  line-height: 1;
}
.drawer-nav {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.drawer-nav a {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s;
}
.drawer-nav a:hover { background: var(--surface); }
.drawer-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 24px;
}

/* ── Cart btn — icon only ───────────────────────────────────────────────── */
.cart-btn { gap: 6px; }
.cart-count {
  min-width: 18px;
  height: 18px;
  background: var(--green);
  color: #fff;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-left { justify-self: start; }
  .header-logo { justify-self: start; }
  .header-actions { justify-self: end; }
  .search-bar-wrap {
    position: fixed;
    right: 16px;
    top: 78px;
    left: 16px;
    width: auto;
    transform: none;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }
  .search-bar-input { width: 100%; }

  /* drawer only exists on mobile */
  .drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 300;
  }
  .mobile-drawer {
    display: flex;
    position: fixed;
    top: 0;
    left: -280px;
    bottom: 0;
    width: 280px;
    background: #fff;
    z-index: 400;
    transition: left 0.3s ease;
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
  }
  .mobile-drawer.open { left: 0; }
}

/* ============================================================
   SHOP LAYOUT — sidebar sub-filters + product grid
============================================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0 32px;
  align-items: start;
}
#sub-filter-bar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: 80px;
  min-height: 1px; /* reserve space even when empty */
}
#sub-filter-bar .filter-chip {
  text-align: left;
  border-radius: 8px;
  width: 100%;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  #sub-filter-bar {
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
    margin-bottom: 12px;
  }
  #sub-filter-bar .filter-chip {
    width: auto;
    border-radius: 100px;
  }
}

.product-card-compare {
  font-size: 12px;
  color: #aaa;
  text-decoration: line-through;
  margin-right: 5px;
}

/* ── Skeleton loading cards ── */
@keyframes skel-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}
.skel-box, .skel-line {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 800px 100%;
  animation: skel-shimmer 1.4s infinite linear;
  border-radius: 4px;
}
.product-card-skeleton { pointer-events: none; }
.product-card-skeleton .product-card-media.skel-box { width: 100%; aspect-ratio: 1; border-radius: 8px; }
.skel-name  { height: 14px; width: 80%; margin: 12px 0 6px; }
.skel-sub   { height: 11px; width: 55%; margin-bottom: 8px; }
.skel-price { height: 13px; width: 35%; }
