/* AJEN Scientific Handicraft — site styles */
:root {
  --color-bg: #f7f2ea;
  --color-surface: #ffffff;
  --color-text: #1a1a18;
  --color-accent: #c19552;
  --color-accent-2: #3f6144;
  --color-divider: rgba(26, 26, 24, 0.13);
  --color-neutral-100: #fbf8f3;
  --color-neutral-200: #efe8dd;
  --color-neutral-300: #e2d9cb;
  --color-neutral-400: #c5bbaa;
  --color-neutral-500: #a39887;
  --color-neutral-600: #7f7666;
  --color-neutral-700: #5f574a;
  --color-neutral-800: #3a352c;
  --color-neutral-900: #22201b;
  --color-accent-100: #fbf4e8;
  --color-accent-200: #f4e7cf;
  --color-accent-400: #d8b878;
  --color-accent-600: #a87f3f;
  --color-accent-700: #85622c;
  --color-accent-800: #5f461f;
  --color-accent-2-200: #dde7de;
  --color-accent-2-700: #3b5741;
  --color-accent-2-800: #2a3d2e;
  --color-accent-2-900: #1e2b21;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", sans-serif;
  --shadow-sm: 0 1px 2px rgba(34, 32, 27, 0.1);
  --shadow-md: 0 4px 14px rgba(34, 32, 27, 0.12);
  --shadow-lg: 0 14px 38px rgba(34, 32, 27, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --header-h: 72px;
  --ann-h: 36px;
  --max: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  letter-spacing: 0.005em;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--color-accent-700); text-decoration: none; }
a:hover { color: var(--color-accent-600); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}
p { margin: 0; }
button, input, select, textarea { font-family: var(--font-body); }
button { appearance: none; }
.wrap {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}
@media (max-width: 640px) {
  .wrap { width: min(100% - 32px, var(--max)); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 14.5px;
  padding: 14px 26px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { background: var(--color-accent-600); color: #fff; }
.btn-dark { background: var(--color-accent-2-900); color: #f5ead8; }
.btn-dark:hover { background: var(--color-accent-2-800); color: #f5ead8; }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--color-divider);
  color: var(--color-text);
  font-family: var(--font-body);
}
.btn-ghost:hover { border-color: var(--color-accent); color: var(--color-accent-700); }
.btn-block { width: 100%; }

/* Announcement marquee */
.announcement {
  background: var(--color-accent-2-900);
  color: #e6e2d4;
  height: var(--ann-h);
  overflow: hidden;
  position: relative;
  z-index: 70;
}
.announcement-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.announcement:hover .announcement-track { animation-play-state: paused; }
.announcement-group {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  padding: 9px 0;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.announcement-group span {
  padding: 0 28px;
  position: relative;
}
.announcement-group span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 10px;
  background: rgba(230, 226, 212, 0.35);
  transform: translateY(-50%);
}
.announcement-social {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 12px;
  background: linear-gradient(90deg, transparent, var(--color-accent-2-900) 18%);
  padding-left: 28px;
  z-index: 2;
}
.announcement-social a {
  color: #e6e2d4;
  display: grid;
  place-items: center;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.announcement-social a:hover { opacity: 1; color: #e6e2d4; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 700px) {
  .announcement-social { display: none; }
}

/* Header */
#site-header {
  position: sticky;
  top: 0;
  z-index: 60;
}
.site-header {
  position: relative;
  background: color-mix(in srgb, var(--color-neutral-100) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  min-height: var(--header-h);
}
.logo {
  text-decoration: none;
  color: var(--color-text);
  flex: 0 0 auto;
  text-align: center;
}
.logo:hover { color: var(--color-text); }
.logo-mark { display: flex; justify-content: center; margin-bottom: 2px; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 21px;
  letter-spacing: 0.3em;
  line-height: 1;
}
.logo-sub {
  font-size: 8px;
  letter-spacing: 0.24em;
  margin-top: 4px;
  color: var(--color-neutral-700);
}
.nav-desktop {
  display: flex;
  gap: 28px;
  margin: 0 auto;
}
.nav-desktop a {
  position: relative;
  text-decoration: none;
  color: var(--color-text);
  font-size: 14.5px;
  padding-bottom: 2px;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--color-accent);
  transition: right 0.25s ease;
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { right: 0; }
.nav-desktop a:hover { color: var(--color-text); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.ico-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  color: var(--color-text);
  text-decoration: none;
  transition: background 0.2s;
}
.ico-btn:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); color: var(--color-text); }
.ico-badge {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-size: 10px;
  display: grid;
  place-items: center;
  padding: 0 4px;
}
.ico-badge.wish { background: var(--color-accent-2-600, #4f7156); }
.menu-toggle { display: none; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--color-divider);
  background: var(--color-neutral-100);
  padding: 6px 0 12px;
}
.mobile-nav.is-open { display: grid; }
.mobile-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-divider);
}
.search-bar {
  display: none;
  border-top: 1px solid var(--color-divider);
  background: var(--color-neutral-200);
  padding: 14px 0;
}
.search-bar.is-open { display: block; }
.search-row { display: flex; gap: 10px; }
.search-row input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--color-divider);
  background: var(--color-neutral-100);
  padding: 12px 18px;
  font-size: 14px;
  outline: none;
}
.search-row input:focus { outline: 2px solid var(--color-accent); outline-offset: 2px; }

.panel {
  display: none;
  position: absolute;
  right: 0;
  left: 0;
  top: 100%;
}
.panel.is-open { display: block; }
.panel-card {
  width: min(380px, calc(100% - 32px));
  margin: 8px 16px 0 auto;
  background: var(--color-neutral-100);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  animation: panelIn 0.3s ease;
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.panel-head h3 { font-size: 17px; }
.panel-list { display: grid; gap: 14px; max-height: 320px; overflow: auto; }
.panel-item { display: flex; gap: 12px; align-items: center; }
.panel-item img {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--color-neutral-200);
  flex: 0 0 auto;
}
.panel-empty { font-size: 13.5px; color: var(--color-neutral-700); }
.panel-total {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  border-top: 1px solid var(--color-divider);
  margin-top: 16px;
  padding-top: 14px;
}

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: grid; }
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(480px, 58vw, 620px);
  overflow: hidden;
  background: var(--color-neutral-200);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 50%;
  transform: scale(1.04);
  transition: transform 7s ease;
}
.hero-slide.is-active img { transform: scale(1); }
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, #f5ead8 0%, #f5ead8 26%, color-mix(in srgb, #f5ead8 78%, transparent) 40%, transparent 64%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy { max-width: 520px; animation: fadeUp 0.7s ease both; }
.hero-kicker {
  font-size: 11.5px;
  letter-spacing: 0.26em;
  color: var(--color-neutral-700);
  margin-bottom: 18px;
}
.hero-copy h1 {
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.04;
  margin: 0 0 20px;
  max-width: 460px;
}
.hero-copy p {
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 380px;
  color: var(--color-neutral-800);
  margin-bottom: 16px;
}
.hero-dots {
  display: flex;
  gap: 18px;
  margin-top: 44px;
  z-index: 2;
}
.hero-dots button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 0 0 7px;
  color: var(--color-neutral-600);
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.hero-dots button.is-active {
  color: var(--color-text);
  border-bottom-color: var(--color-accent);
}
.hero-tags {
  position: absolute;
  right: 30px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  gap: 14px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
@media (max-width: 760px) {
  .hero {
    min-height: auto;
    display: grid;
    grid-template-rows: 260px auto;
  }
  .hero-slide {
    grid-row: 1;
    grid-column: 1;
    position: relative;
    height: 260px;
    opacity: 0;
  }
  .hero-slide.is-active { opacity: 1; z-index: 1; }
  .hero-veil {
    grid-row: 1;
    grid-column: 1;
    z-index: 2;
    background: linear-gradient(to top, #f5ead8, transparent 90px);
  }
  .hero-content {
    grid-row: 2;
    grid-column: 1;
    min-height: auto;
    padding: 8px 22px 34px;
    background: #f5ead8;
    z-index: 3;
  }
  .hero-copy h1 { font-size: 32px; }
  .hero-dots { margin-top: 26px; }
  .hero-tags { display: none; }
}

/* Sections */
.section { padding: 54px 0 60px; }
.section-muted { background: var(--color-neutral-100); }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(26px, 2.6vw, 34px); }
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--color-accent-700);
  white-space: nowrap;
}

/* Categories */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 22px;
}
.cat-card {
  text-decoration: none;
  color: var(--color-text);
  display: grid;
  justify-items: center;
  gap: 14px;
}
.cat-card:hover { color: var(--color-text); }
.cat-img {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--color-neutral-200);
  overflow: hidden;
}
.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.cat-card:hover img { transform: scale(1.08); }
.cat-label {
  font-size: 14px;
  text-align: center;
  transition: color 0.25s;
}
.cat-card:hover .cat-label { color: var(--color-accent-700); }

/* Product cards */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.tab {
  cursor: pointer;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--color-divider);
  background: transparent;
  color: var(--color-text);
  transition: all 0.2s;
}
.tab.is-active {
  background: var(--color-accent-2-900);
  border-color: var(--color-accent-2-900);
  color: #f5ead8;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(206px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--color-neutral-100);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.product-media {
  position: relative;
  aspect-ratio: 4 / 3.35;
  overflow: hidden;
  background: var(--color-neutral-200);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-media img { transform: scale(1.06); }
.wish-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: color-mix(in srgb, #f9f4ed 88%, transparent);
  display: grid;
  place-items: center;
  color: var(--color-neutral-700);
}
.wish-btn.is-on { color: var(--color-accent); }
.product-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.product-body a {
  font-size: 14px;
  text-decoration: none;
  color: var(--color-text);
  line-height: 1.35;
}
.product-price { font-family: var(--font-heading); font-size: 15px; }
.product-rating {
  font-size: 12px;
  letter-spacing: 0.06em;
  display: flex;
  gap: 2px;
  align-items: center;
}
.stars-full { color: var(--color-accent); }
.stars-empty { color: var(--color-neutral-400); }
.rating-n { color: var(--color-neutral-600); margin-left: 5px; font-size: 11.5px; letter-spacing: 0; }
.atc {
  margin-top: auto;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--color-divider);
  background: transparent;
  color: var(--color-text);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.atc:hover, .atc.is-added {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* Story */
.story {
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(0, 62%);
  background: var(--color-neutral-100);
}
.story-visual {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: var(--color-accent-2-900);
}
.story-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.62) contrast(1.05);
}
.story-visual-inner {
  position: relative;
  height: 100%;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  color: #f5ead8;
}
.story-visual-inner .tagline {
  font-family: var(--font-heading);
  font-size: 17px;
  letter-spacing: 0.14em;
  line-height: 1.7;
}
.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #f5ead8;
  font-size: 14px;
  padding: 0;
  width: fit-content;
}
.play-btn span {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: color-mix(in srgb, #f5ead8 92%, transparent);
  color: var(--color-accent-2-900);
  display: grid;
  place-items: center;
  transition: transform 0.25s;
}
.play-btn:hover span { transform: scale(1.06); }
.story-copy {
  padding: clamp(34px, 4vw, 62px) clamp(24px, 3vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: start;
}
.eyebrow {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--color-accent-700);
  margin-bottom: 14px;
}
.story-copy h2 {
  font-size: clamp(26px, 2.8vw, 36px);
  margin: 0 0 18px;
  max-width: 460px;
}
.story-copy p {
  font-size: 15px;
  line-height: 1.75;
  max-width: 520px;
  color: var(--color-neutral-800);
  margin-bottom: 18px;
}
.pillars {
  border-left: 1px solid var(--color-divider);
  padding-left: 28px;
  display: grid;
  gap: 18px;
}
.pillars div {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  color: var(--color-neutral-700);
}
@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; }
  .story-copy { grid-template-columns: 1fr; }
  .pillars {
    border-left: 0;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
  }
}

/* Trust strip */
.trust {
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  background: var(--color-bg);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  padding: 26px 0;
}
.trust-item {
  display: flex;
  gap: 14px;
  align-items: center;
}
.trust-item svg { color: var(--color-accent-700); flex: 0 0 auto; }
.trust-item strong { display: block; font-size: 14px; font-weight: 600; }
.trust-item span { font-size: 12.5px; color: var(--color-neutral-700); }

/* Testimonials marquee */
.testimonials-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.testimonials-head h2 { font-size: clamp(26px, 2.6vw, 34px); }
.t-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.t-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: marquee 48s linear infinite;
  will-change: transform;
}
.t-marquee:hover .t-track { animation-play-state: paused; }
.t-card {
  flex: 0 0 min(340px, 78vw);
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  padding: 24px;
}
.t-person {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.t-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 18px;
  flex: 0 0 auto;
}
.t-person strong { display: block; font-size: 14px; }
.t-person span { font-size: 12.5px; color: var(--color-neutral-700); }
.t-stars { color: var(--color-accent); font-size: 12px; margin-top: 3px; }
.t-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-neutral-800);
}

/* Page hero banner */
.page-hero {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--color-neutral-200);
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, #f5ead8 0%, color-mix(in srgb, #f5ead8 82%, transparent) 38%, transparent 70%);
}
.page-hero-copy {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.crumb {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  color: var(--color-neutral-700);
  margin-bottom: 12px;
}
.crumb a { color: var(--color-neutral-700); text-decoration: none; }
.page-hero-copy h1 { font-size: clamp(30px, 3.4vw, 46px); margin: 0 0 8px; }
.page-hero-copy p {
  font-size: 14.5px;
  color: var(--color-neutral-800);
  max-width: 420px;
  margin: 0;
}
@media (max-width: 640px) {
  .page-hero { height: 200px; }
}

/* Shop layout */
.shop-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  padding: 40px 0 64px;
}
.shop-aside { position: sticky; top: 110px; display: grid; gap: 30px; }
.filter-title {
  font-family: var(--font-heading);
  font-size: 16px;
  margin-bottom: 12px;
}
.filter-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 8px 0;
  font-size: 14px;
  text-align: left;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-divider);
  transition: color 0.2s;
}
.filter-row:hover, .filter-row.is-active { color: var(--color-accent-700); }
.filter-row.is-active { font-weight: 600; }
.filter-row span:last-child { font-size: 12px; color: var(--color-neutral-600); }
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.shop-toolbar select {
  border-radius: 999px;
  border: 1px solid var(--color-divider);
  background: var(--color-neutral-100);
  padding: 10px 16px;
  font-size: 13.5px;
}
@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-aside {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
  }
  .filter-title { width: 100%; margin-bottom: 0; }
  .filter-row {
    border: 1px solid var(--color-divider);
    border-radius: 999px;
    padding: 8px 14px;
    width: auto;
  }
  .filter-row span:last-child { display: none; }
}

/* Product detail */
.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 0 40px;
  align-items: start;
}
.pdp-gallery { display: grid; gap: 12px; }
.pdp-main {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-neutral-200);
}
.pdp-main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.pdp-thumbs button {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-neutral-200);
}
.pdp-thumbs button.is-active { border-color: var(--color-accent); }
.pdp-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pdp-meta {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--color-neutral-700);
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.pdp h1 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 14px; }
.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 16px 0 20px;
  flex-wrap: wrap;
}
.pdp-price { font-family: var(--font-heading); font-size: 30px; }
.pdp-was {
  font-size: 14px;
  color: var(--color-neutral-600);
  text-decoration: line-through;
}
.tag {
  font-size: 11.5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-accent-2-200);
  color: var(--color-accent-2-800);
}
.opt-label {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--color-neutral-700);
  margin-bottom: 8px;
}
.opt-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.chip {
  cursor: pointer;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--color-divider);
  background: transparent;
  color: var(--color-text);
}
.chip.is-active {
  background: var(--color-accent-2-900);
  border-color: var(--color-accent-2-900);
  color: #f5ead8;
}
.qty-buy { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin: 8px 0 26px; }
.qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-divider);
  border-radius: 999px;
  overflow: hidden;
  background: var(--color-neutral-100);
}
.qty button {
  width: 42px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
}
.qty span { min-width: 34px; text-align: center; font-size: 15px; }
.acc { border-top: 1px solid var(--color-divider); margin-top: 28px; }
.acc-item { border-bottom: 1px solid var(--color-divider); }
.acc-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 17px 0;
  font-family: var(--font-heading);
  font-size: 15px;
  text-align: left;
  color: var(--color-text);
}
.acc-body {
  display: none;
  padding: 0 0 18px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-neutral-800);
  max-width: 560px;
}
.acc-item.is-open .acc-body { display: block; }
@media (max-width: 900px) {
  .pdp { grid-template-columns: 1fr; gap: 28px; }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
}
.about-grid img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-copy h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 18px; }
.about-copy p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--color-neutral-800);
  margin-bottom: 16px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.stat {
  background: var(--color-neutral-100);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-accent-700);
}
.stat span { font-size: 12.5px; color: var(--color-neutral-700); }
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.process-card {
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  padding: 24px;
}
.process-num {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--color-accent-700);
  margin-bottom: 12px;
}
.process-card h3 { font-size: 18px; margin-bottom: 10px; }
.process-card p { font-size: 14px; line-height: 1.7; color: var(--color-neutral-800); }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-grid img { aspect-ratio: 16/11; max-height: 360px; }
  .stats { grid-template-columns: 1fr; }
}

/* Contact */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  padding: 48px 0 20px;
}
.info-card {
  background: var(--color-neutral-100);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  padding: 22px;
}
.info-card .label {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--color-accent-700);
  margin-bottom: 9px;
}
.info-card .value { font-size: 14.5px; line-height: 1.6; }
.info-card .note { font-size: 12.5px; color: var(--color-neutral-700); margin-top: 5px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 44px;
  padding: 28px 0 60px;
  align-items: start;
}
.form-grid {
  display: grid;
  gap: 18px;
  max-width: 620px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}
.lab {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-neutral-700);
  margin-bottom: 7px;
}
.field {
  width: 100%;
  font-size: 14px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--color-divider);
  background: var(--color-neutral-100);
  color: var(--color-text);
  outline: none;
}
.field:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
textarea.field {
  border-radius: var(--radius-md);
  resize: vertical;
  min-height: 130px;
}
.export-card {
  background: var(--color-accent-2-900);
  color: #e6e2d4;
  border-radius: var(--radius-lg);
  padding: 34px 30px;
}
.export-card .eyebrow { color: var(--color-accent-400); }
.export-card h3 { color: #f5ead8; margin: 0 0 10px; font-size: 24px; }
.export-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #b6b1a2;
  margin: 0 0 22px;
}
.export-card .field {
  background: color-mix(in srgb, #f5ead8 10%, transparent);
  border-color: color-mix(in srgb, #f5ead8 22%, transparent);
  color: #f5ead8;
}
.export-card .field::placeholder { color: #b6b1a2; }
.export-card select.field option { color: #201e1d; }
.form-note { font-size: 13.5px; color: var(--color-accent-2-700); min-height: 20px; }
.export-card .form-note { color: var(--color-accent-400); }
@media (max-width: 980px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
  background: var(--color-accent-2-900);
  color: #cfcbbc;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 40px;
  padding: 56px 0 30px;
}
.footer-brand .logo-name { color: #f5ead8; font-size: 24px; }
.footer-brand .logo-sub { color: #b6b1a2; }
.footer-tag {
  font-size: 8.5px;
  letter-spacing: 0.16em;
  margin-top: 10px;
  color: #8d8879;
}
.footer-social { display: flex; gap: 8px; margin-top: 26px; }
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #cfcbbc;
  transition: background 0.2s;
}
.footer-social a:hover {
  background: color-mix(in srgb, #f5ead8 16%, transparent);
  color: #cfcbbc;
}
.footer-col h4 {
  font-size: 15px;
  color: #f5ead8;
  margin-bottom: 14px;
}
.footer-col a {
  color: #cfcbbc;
  text-decoration: none;
  font-size: 13.5px;
  padding: 3px 0;
  display: block;
}
.footer-col a:hover { color: var(--color-accent-400); }
.footer-col p {
  font-size: 13px;
  line-height: 1.6;
  max-width: 280px;
  color: #b6b1a2;
}
.newsletter {
  display: flex;
  gap: 0;
  margin-top: 16px;
  max-width: 320px;
  background: color-mix(in srgb, #f5ead8 10%, transparent);
  border: 1px solid color-mix(in srgb, #f5ead8 22%, transparent);
  border-radius: 999px;
  padding: 4px 4px 4px 6px;
}
.newsletter input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: none;
  color: #f5ead8;
  font-size: 13px;
  padding: 8px 10px;
}
.newsletter button {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: var(--color-accent);
  color: #fff;
  display: grid;
  place-items: center;
}
.footer-note {
  font-size: 12px;
  margin-top: 10px;
  color: var(--color-accent-400);
  min-height: 18px;
}
.footer-bottom {
  border-top: 1px solid color-mix(in srgb, #f5ead8 14%, transparent);
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 12px;
  color: #8d8879;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .announcement-track,
  .t-track,
  .hero-slide img { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Toast + modal */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 20px);
  z-index: 95;
  background: var(--color-accent-2-900);
  color: #f5ead8;
  font-size: 13.5px;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: color-mix(in srgb, #201e1d 62%, transparent);
  display: none;
  place-items: center;
  padding: 24px;
}
.modal.is-open { display: grid; }
.modal-card {
  background: var(--color-neutral-100);
  border-radius: var(--radius-lg);
  padding: 34px;
  max-width: 460px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: fadeUp 0.35s ease;
}
.modal-card h3 { margin: 0 0 10px; }
.modal-card p {
  font-size: 14px;
  color: var(--color-neutral-800);
  margin: 0 0 18px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* Misc */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
