/* ========== Reset & Base ========== */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #F7F2E9;
  --bg-warm: #EFE7D7;
  --cream: #F8F4ED;
  --clay: #B8755A;
  --clay-dark: #9A5E47;
  --gold: #C99A5B;
  --brown: #3A2E26;
  --brown-soft: #5C4A3F;
  --line: #E4DACA;
  --shadow: 0 24px 60px rgba(58, 46, 38, .12);
  --shadow-sm: 0 8px 24px rgba(58, 46, 38, .08);
}
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--brown);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: normal; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ========== Typography ========== */
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--brown);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.35rem; }
.section-tag {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 18px;
}
.section-tag.light { color: var(--gold); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.section-head p { margin-top: 18px; color: var(--brown-soft); }
.accent { color: var(--clay); font-style: italic; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all .35s ease;
  border: 1px solid transparent;
  font-family: inherit;
}
.btn-primary {
  background: var(--brown);
  color: #fff;
}
.btn-primary:hover { background: var(--clay); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn-ghost:hover { background: var(--brown); color: #fff; }

/* ========== Navigation ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .4s ease;
  background: rgba(247, 242, 233, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav.scrolled {
  background: rgba(247, 242, 233, 0.92);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brown);
  margin-right: auto;
}
.logo-mark {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brown);
  color: var(--cream);
  font-style: italic;
  font-size: 1.2rem;
}
.logo-text em { font-style: italic; color: var(--clay); margin-left: 6px; font-size: 1.1rem; }
.nav-links {
  display: flex;
  gap: 38px;
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--brown-soft);
  position: relative;
  padding: 6px 0;
  transition: color .3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  width: 0;
  height: 1px;
  background: var(--clay);
  transition: all .3s;
}
.nav-links a:hover { color: var(--brown); }
.nav-links a:hover::after { width: 100%; left: 0; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--brown);
  margin: 5px 0;
  transition: all .3s;
}

/* ========== Language Switcher ========== */
.lang-switcher {
  position: relative;
  flex-shrink: 0;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.4);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  color: var(--brown-soft);
  font-size: 0.82rem;
  font-family: inherit;
  transition: all .3s ease;
  white-space: nowrap;
}
.lang-toggle:hover {
  border-color: var(--clay);
  color: var(--brown);
  background: rgba(255,255,255,0.7);
}
.lang-toggle svg { flex-shrink: 0; }
.lang-current-label {
  font-weight: 500;
  letter-spacing: 0.06em;
  min-width: 20px;
  text-align: center;
}
.lang-caret { transition: transform .3s ease; }
.lang-switcher.open .lang-caret { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 168px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 6px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .3s ease;
  z-index: 200;
}
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--brown-soft);
  transition: all .2s ease;
}
.lang-option:hover {
  background: var(--bg-warm);
  color: var(--brown);
}
.lang-option.active {
  background: var(--bg-warm);
  color: var(--clay);
  font-weight: 500;
}
.lang-option-short {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--clay);
  width: 24px;
  flex-shrink: 0;
}
.lang-option.active .lang-option-short { color: var(--clay-dark); }

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(184, 117, 90, 0.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(201, 154, 91, 0.15), transparent 50%),
    var(--bg);
  z-index: -1;
}
.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-text p {
  margin: 26px 0 36px;
  font-size: 1.05rem;
  color: var(--brown-soft);
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  gap: 60px;
  margin-top: 70px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.hero-meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--brown);
}
.hero-meta span { font-size: 0.85rem; color: var(--brown-soft); }

/* Hero visual */
.hero-visual {
  position: relative;
  width: 100%;
  min-height: 560px;
  background: url('../images/hero-dog.jpg') center/cover no-repeat;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(-1deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--brown-soft);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--clay), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50%;
  background: var(--brown);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ========== About ========== */
.about {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 600px;
  overflow: hidden;
  background: var(--cream); /* 右侧色块 */
}

/* 左侧工厂图，尽量占满左侧 */
.about-photo {
  flex: 0 0 54%;
  align-self: stretch;
  background: url('../images/factory-overview.jpg') center/cover no-repeat;
}

.about-badge {
  position: absolute;
  top: 40px; left: 40px;
  z-index: 3;
  background: var(--cream);
  padding: 12px 24px;
  border-radius: 999px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--brown);
  box-shadow: var(--shadow-sm);
}

.about-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 90px 8%;
}

.about-text {
  max-width: 480px;
}

.about-text h2 { margin-bottom: 28px; }
.about-text p { color: var(--brown-soft); margin-bottom: 18px; }
.about-stats {
  display: flex;
  gap: 50px;
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.about-stats div { display: flex; flex-direction: column; gap: 4px; }
.about-stats strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--clay);
}
.about-stats span { font-size: 0.85rem; color: var(--brown-soft); }

/* About features (工贸一体 / 出口标准) */
.about-feature {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
  padding: 20px 24px;
  background: var(--cream);
  border-radius: 16px;
  border: 1px solid var(--line);
}
.about-feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1.4;
}
.about-feature-body h4 {
  font-family: "Noto Serif SC", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
}
.about-feature-body p {
  font-size: 0.88rem;
  color: var(--brown-soft);
  line-height: 1.7;
  margin-bottom: 0;
}

/* About certifications */
.about-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}
.about-cert {
  padding: 8px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--brown);
  transition: all .3s ease;
}
.about-cert:hover {
  background: var(--brown);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ========== Categories ========== */
.categories { padding: 120px 0; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: 24px;
  overflow: hidden;
  transition: all .5s ease;
  border: 1px solid transparent;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--line);
}
.cat-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-warm);
}
.cat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.cat-card:hover .cat-img img { transform: scale(1.06); }
.cat-info {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cat-info h3 { margin-bottom: 8px; }
.cat-info p { color: var(--brown-soft); font-size: 0.95rem; flex: 1; }
.cat-cta {
  display: inline-block;
  margin-top: 16px;
  color: var(--clay);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ========== Products ========== */
.products { padding: 60px 0 120px; }
.product-row { margin-bottom: 100px; }
.row-label {
  display: flex;
  align-items: baseline;
  gap: 30px;
  margin-bottom: 50px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.row-label h3 { color: var(--brown); }
.product-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 50px 0;
}
.product-card.reverse { grid-template-columns: 1fr 1.2fr; direction: rtl; }
.product-card.reverse > * { direction: ltr; }

.product-images {
  position: relative;
  background: var(--cream);
  border-radius: 24px;
  padding: 50px;
  display: grid;
  place-items: center;
  min-height: 380px;
  overflow: hidden;
}
.product-images > img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  transition: opacity .6s ease, transform .8s ease;
}
.product-images .img-alt {
  position: absolute;
  inset: 50px;
  width: calc(100% - 100px);
  height: calc(100% - 100px);
  opacity: 0;
  object-fit: cover;
  border-radius: 16px;
  pointer-events: none;
}
.product-images .main-img { transition: opacity .35s ease, transform .5s ease; }

.color-row {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.color-row img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
  cursor: pointer;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.color-row img:hover { transform: scale(1.1); }
.color-row img.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 154, 91, .35), 0 4px 10px rgba(0,0,0,.12);
  transform: scale(1.1);
}

.product-body { padding: 0 20px; }
.product-code {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--clay);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.product-body h4 { margin-bottom: 16px; font-size: 1.6rem; }
.product-body > p {
  color: var(--brown-soft);
  margin-bottom: 24px;
  font-size: 0.98rem;
}
.product-features {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: grid;
  gap: 10px;
}
.product-features li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: var(--brown-soft);
}
.product-features li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
  top: 2px;
}

/* ========== Gallery ========== */
.gallery { padding: 120px 0; background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 24px;
}
.gallery-grid .color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform .4s ease;
}
.gallery-grid .color-swatch:hover { transform: translateY(-6px); }
.gallery-grid .swatch-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.7);
  box-shadow: 0 6px 18px rgba(0,0,0,.1), inset 0 -4px 12px rgba(0,0,0,.06);
  transition: transform .4s ease, box-shadow .4s ease;
}
.gallery-grid .color-swatch:hover .swatch-circle {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(0,0,0,.18), inset 0 -4px 12px rgba(0,0,0,.06);
}
.gallery-grid .color-swatch figcaption {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gallery-grid .color-swatch .swatch-name {
  font-size: 0.92rem;
  color: var(--brown-soft);
  letter-spacing: 0.04em;
}
.gallery-grid .color-swatch .swatch-hex {
  font-size: 0.78rem;
  color: var(--brown-soft);
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  letter-spacing: 0.06em;
  opacity: 0.6;
}

/* ========== Craft ========== */
.craft { padding: 120px 0; }
.craft-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
.craft-card {
  padding: 38px 30px;
  background: var(--cream);
  border-radius: 20px;
  border: 1px solid var(--line);
  transition: all .4s ease;
}
.craft-card:hover {
  background: var(--brown);
  color: var(--cream);
  transform: translateY(-4px);
}
.craft-card:hover h4,
.craft-card:hover .craft-num { color: var(--cream); }
.craft-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  color: var(--clay);
  font-style: italic;
  margin-bottom: 18px;
  transition: color .4s;
}
.craft-card h4 { margin-bottom: 12px; transition: color .4s; }
.craft-card p { font-size: 0.92rem; color: var(--brown-soft); line-height: 1.7; }
.craft-card:hover p { color: rgba(248,244,237,.8); }

/* Craft category blocks */
.craft-category { margin-top: 56px; }
.craft-category:first-of-type { margin-top: 0; }
.craft-cat-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.craft-cat-tag {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  font-style: italic;
}
.craft-cat-head h3 {
  font-family: "Noto Serif SC", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brown);
}
.craft-cat-head p {
  font-size: 0.92rem;
  color: var(--brown-soft);
  line-height: 1.7;
}

/* ========== Contact ========== */
.contact {
  padding: 120px 0;
  background: var(--brown);
  color: var(--cream);
}
.contact h2 { color: var(--cream); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-text > p { color: rgba(248,244,237,.75); margin: 22px 0 36px; }
.contact-list li {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(248,244,237,.15);
  font-size: 0.95rem;
}
.contact-list span { color: rgba(248,244,237,.55); }
.contact-list a:hover { color: var(--gold); }

.contact-form {
  background: rgba(248,244,237,.04);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(248,244,237,.1);
  display: grid;
  gap: 18px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(248,244,237,.7);
  letter-spacing: 0.04em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 18px;
  background: rgba(248,244,237,.06);
  border: 1px solid rgba(248,244,237,.15);
  border-radius: 12px;
  color: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all .3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(248,244,237,.1);
}
.contact-form select option { color: var(--brown); background: var(--cream); }
.contact-form textarea { resize: vertical; min-height: 80px; }
.contact-form button {
  margin-top: 8px;
  justify-self: start;
  background: var(--cream);
  color: var(--brown);
}
.contact-form button:hover { background: var(--gold); color: var(--brown); }
.contact-form button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* 表单双列布局 */
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* 表单反馈消息 */
.form-feedback {
  display: none;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 4px;
  transition: all .3s;
}
.form-feedback.loading {
  background: rgba(201, 154, 91, .12);
  color: var(--gold);
  border: 1px solid rgba(201, 154, 91, .3);
}
.form-feedback.success {
  background: rgba(152, 217, 185, .12);
  color: #98D9B9;
  border: 1px solid rgba(152, 217, 185, .3);
}
.form-feedback.error {
  background: rgba(244, 107, 107, .12);
  color: #F46B6B;
  border: 1px solid rgba(244, 107, 107, .3);
}

/* 输入框验证错误态 */
.contact-form input.invalid,
.contact-form textarea.invalid {
  border-color: rgba(244, 107, 107, .6) !important;
}

/* 响应式：窄屏单列 */
@media (max-width: 600px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ========== Footer ========== */
.footer {
  padding: 70px 0 40px;
  background: var(--brown);
  border-top: 1px solid rgba(248,244,237,.1);
  color: rgba(248,244,237,.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.footer-col h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.footer-col a {
  color: rgba(248,244,237,.65);
  transition: color .3s;
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--gold); }
.footer-col p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(248,244,237,.55);
}
.footer-contact li {
  display: grid;
  gap: 4px;
}
.footer-contact .label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(248,244,237,.45);
}
.footer-contact a,
.footer-contact span {
  color: rgba(248,244,237,.8);
  font-size: 0.95rem;
}
.footer-newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.footer-newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  background: rgba(248,244,237,.08);
  border: 1px solid rgba(248,244,237,.15);
  border-radius: 10px;
  color: var(--cream);
  font-family: inherit;
  font-size: 0.9rem;
}
.footer-newsletter-form input::placeholder { color: rgba(248,244,237,.35); }
.footer-newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(248,244,237,.12);
}
.footer-newsletter-form button {
  padding: 12px 18px;
  background: var(--cream);
  color: var(--brown);
  border: none;
  border-radius: 10px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
}
.footer-newsletter-form button:hover { background: var(--gold); }
.footer-bottom {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(248,244,237,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.85rem;
  color: rgba(248,244,237,.45);
}
.footer-socials {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-socials a {
  color: rgba(248,244,237,.65);
  transition: color .3s;
  display: flex;
}
.footer-socials a:hover { color: var(--gold); }
.footer-socials svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 580px) {
  .footer { padding: 50px 0 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { min-height: 420px; margin: 0 auto; }
  .about { flex-direction: column; min-height: auto; }
  .about-photo { flex: none; width: 100%; height: 320px; }
  .about-badge { top: 24px; left: 24px; padding: 10px 18px; font-size: 0.9rem; }
  .about-inner { flex: none; padding: 64px 24px; justify-content: center; }
  .about-text {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  .about-stats { justify-content: center; }
  .product-card, .product-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
  .category-grid, .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; gap: 10px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .lang-toggle { padding: 6px 10px; }
  .lang-toggle .lang-current-label { display: none; }

  /* Typography — shrink headings */
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.55rem; }
  h3 { font-size: 1.2rem; }
  h4 { font-size: 1.1rem; }

  /* Hero */
  .hero { padding: 100px 0 50px; min-height: auto; }
  .hero-text p { font-size: 0.92rem; margin: 16px 0 24px; max-width: 100%; line-height: 1.7; }
  .hero-actions { gap: 12px; }
  .btn { padding: 11px 22px; font-size: 0.85rem; }
  .hero-meta { gap: 22px; margin-top: 36px; padding-top: 22px; }
  .hero-meta strong { font-size: 1.7rem; }
  .hero-meta span { font-size: 0.76rem; }
  .hero-visual { min-height: 340px; }
  .scroll-hint { display: none; }

  /* Section heads */
  .section-head { margin-bottom: 36px; }
  .section-head p { margin-top: 10px; font-size: 0.88rem; line-height: 1.65; }
  .section-tag { font-size: 0.82rem; margin-bottom: 12px; }

  /* About */
  .about, .categories, .craft, .gallery, .contact { padding: 56px 0; }
  .about-inner { gap: 40px; }
  .about-text h2 { margin-bottom: 18px; }
  .about-text p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 14px; }
  .about-feature { padding: 14px 16px; gap: 12px; margin-bottom: 14px; }
  .about-feature-icon { font-size: 1.4rem; }
  .about-feature-body h4 { font-size: 0.95rem; margin-bottom: 4px; }
  .about-feature-body p { font-size: 0.8rem; line-height: 1.6; }
  .about-certs { gap: 8px; margin-top: 18px; }
  .about-cert { padding: 6px 14px; font-size: 0.8rem; }
  .about-stats { gap: 20px; margin-top: 28px; padding-top: 22px; }
  .about-stats strong { font-size: 1.5rem; }
  .about-stats span { font-size: 0.74rem; }
  .about-image-badge { top: 16px; left: 16px; padding: 8px 16px; font-size: 0.85rem; }

  /* Categories */
  .category-grid, .craft-grid { grid-template-columns: 1fr; }
  .cat-info { padding: 18px 20px 22px; }
  .cat-info h3 { margin-bottom: 4px; }
  .cat-info p { font-size: 0.82rem; }
  .cat-cta { font-size: 0.82rem; margin-top: 10px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 20px 14px; }
  .gallery-grid .swatch-circle { width: 64px; height: 64px; }
  .gallery-grid .color-swatch .swatch-name { font-size: 0.8rem; }
  .gallery-grid .color-swatch .swatch-hex { font-size: 0.7rem; }

  /* Craft */
  .craft-category { margin-top: 36px; }
  .craft-cat-head { margin-bottom: 18px; padding-bottom: 14px; }
  .craft-cat-head h3 { font-size: 1.25rem; }
  .craft-cat-head p { font-size: 0.84rem; line-height: 1.6; }
  .craft-card { padding: 22px 18px; }
  .craft-num { font-size: 1.8rem; margin-bottom: 10px; }
  .craft-card h4 { font-size: 0.98rem; margin-bottom: 8px; }
  .craft-card p { font-size: 0.82rem; line-height: 1.6; }

  /* Products (subpages) */
  .row-label { flex-direction: column; gap: 8px; align-items: flex-start; margin-bottom: 32px; }
  .product-card, .product-card.reverse { padding: 24px 0; gap: 20px; }
  .product-images { padding: 24px; min-height: 240px; }
  .product-images .img-alt { inset: 24px; width: calc(100% - 48px); height: calc(100% - 48px); }
  .product-images > img { max-height: 280px; }
  .product-body { padding: 0; }
  .product-body h4 { font-size: 1.2rem; margin-bottom: 10px; }
  .product-body > p { font-size: 0.85rem; margin-bottom: 14px; line-height: 1.65; }
  .product-features { padding-top: 14px; gap: 6px; }
  .product-features li { font-size: 0.82rem; padding-left: 20px; }

  /* Sub-hero */
  .sub-hero { padding: 120px 0 50px; }
  .sub-hero h1 { margin-bottom: 16px; }
  .sub-hero > .container > p { font-size: 0.9rem; margin-bottom: 28px; line-height: 1.65; }
  .sub-hero-stats { gap: 24px; padding-top: 22px; }
  .sub-hero-stats strong { font-size: 1.4rem; }
  .sub-hero-stats span { font-size: 0.78rem; }

  /* Footer */
  .footer { padding: 40px 0 24px; }
  .footer-grid { gap: 28px; }
  .footer-col h4 { margin-bottom: 14px; }

  /* Specs modal */
  .btn-specs { padding: 8px 18px; font-size: 0.82rem; margin-top: 14px; }
  .specs-modal-header { padding: 20px 22px 14px; }
  .specs-modal-body { padding: 16px 22px 24px; }
  .specs-modal-header h3 { font-size: 1.1rem; }
  .specs-modal-note { padding: 10px 14px; font-size: 0.76rem; }
}

/* ===== Small phone breakpoint (iPhone SE, etc.) ===== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }

  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.1rem; }

  .hero { padding: 90px 0 40px; }
  .hero-text p { font-size: 0.85rem; margin: 12px 0 20px; }
  .hero-meta { gap: 16px; margin-top: 28px; }
  .hero-meta strong { font-size: 1.4rem; }
  .hero-meta span { font-size: 0.72rem; }
  .hero-visual { min-height: 260px; }
  .btn { padding: 10px 18px; font-size: 0.8rem; }

  .about, .categories, .craft, .gallery, .contact { padding: 44px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head p { font-size: 0.82rem; }

  .about-text p { font-size: 0.82rem; }
  .about-feature { padding: 12px 14px; }
  .about-feature-body p { font-size: 0.76rem; }
  .about-stats { gap: 14px; }
  .about-stats strong { font-size: 1.3rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 10px; }
  .gallery-grid .swatch-circle { width: 56px; height: 56px; }

  .craft-card { padding: 18px 14px; }
  .craft-num { font-size: 1.5rem; }
  .craft-card p { font-size: 0.78rem; }

  .product-body h4 { font-size: 1.1rem; }
  .product-body > p { font-size: 0.82rem; }
  .product-features li { font-size: 0.78rem; }

  .sub-hero { padding: 100px 0 40px; }
  .sub-hero > .container > p { font-size: 0.85rem; }
  .sub-hero-stats { gap: 18px; }
  .sub-hero-stats strong { font-size: 1.2rem; }

  .product-arrow { width: 32px; height: 32px; }
  .product-arrow.prev { left: 6px; }
  .product-arrow.next { right: 6px; }

  .specs-modal { border-radius: 16px; }
  .specs-modal-header { padding: 18px 18px 12px; }
  .specs-modal-body { padding: 14px 18px 20px; }
  .specs-table tbody td { padding: 10px 8px; font-size: 0.78rem; }
  .specs-table thead th { padding: 8px 8px; font-size: 0.72rem; }
}

/* Mobile nav open */
.nav.open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--cream);
  padding: 20px;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ========== Sub-page Hero ========== */
.sub-hero {
  padding: 160px 0 80px;
  text-align: center;
}
.sub-hero .section-tag { margin-bottom: 16px; }
.sub-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 24px;
}
.sub-hero > .container > p {
  max-width: 600px;
  margin: 0 auto 36px;
  color: var(--brown-soft);
  font-size: 1.05rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--brown-soft);
  margin-bottom: 30px;
  letter-spacing: 0.04em;
}
.breadcrumb a {
  color: var(--clay);
  transition: color .3s;
}
.breadcrumb a:hover { color: var(--clay-dark); }
.breadcrumb .sep { color: var(--line); }
.breadcrumb .current { color: var(--brown); font-weight: 500; }
.sub-hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  max-width: 500px;
  margin: 0 auto;
}
.sub-hero-stats span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--brown-soft);
}
.sub-hero-stats strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--clay);
}

/* Sub-page products: more top padding */
.sub-hero + .products { padding-top: 80px; }

/* ========== Category Nav (bottom of subpages) ========== */
.category-nav {
  padding: 50px 0 80px;
  text-align: center;
}
.category-nav .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  color: var(--brown-soft);
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all .3s ease;
}
.cat-tab:hover {
  border-color: var(--clay);
  color: var(--clay);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.cat-tab.active {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}
.cat-tab.active:hover {
  background: var(--brown);
  color: var(--cream);
  transform: none;
  box-shadow: none;
}

@media (max-width: 600px) {
  .category-nav { padding: 40px 0 60px; }
  .cat-tab { padding: 10px 20px; font-size: 0.92rem; }
}

/* ========== Coming Soon ========== */
.coming-soon {
  padding: 100px 0;
  background: var(--cream);
}
.coming-soon-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  background: var(--bg);
  border-radius: 24px;
  border: 1px solid var(--line);
}
.coming-soon-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  line-height: 1;
}
.coming-soon-inner h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.coming-soon-inner p {
  color: var(--brown-soft);
  margin-bottom: 16px;
  line-height: 1.7;
}
.coming-soon-hint {
  color: var(--clay) !important;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.1rem !important;
  margin-bottom: 30px !important;
}

/* ========== Responsive: 4-col grid ========== */
@media (max-width: 1100px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .coming-soon-inner { padding: 40px 24px; }
}

/* ========== Lightbox ========== */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(15,12,8,.92);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s ease;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox img {
  max-width: 88vw; max-height: 85vh;
  object-fit: contain; border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  cursor: grab;
}
.lightbox-caption {
  position: absolute; bottom: 5vh; left: 50%; transform: translateX(-50%);
  color: #fff; font-size: 14px; letter-spacing: .05em;
  background: rgba(255,255,255,.1); padding: 6px 18px; border-radius: 20px;
  backdrop-filter: blur(8px); white-space: nowrap;
}
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  width: 44px; height: 44px; border: none; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff; font-size: 22px;
  cursor: pointer; transition: background .2s; backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border: none; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; font-size: 24px;
  cursor: pointer; transition: background .2s; backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,.28); }
.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }
body.lightbox-open { overflow: hidden; }

@media (max-width: 720px) {
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close { top: 12px; right: 12px; }
  .lightbox img { max-width: 94vw; max-height: 80vh; }
}

/* ========== Contact Page ========== */
.contact-page {
  padding: 160px 0 100px;
  background: var(--cream);
  min-height: 100vh;
}
.contact-page-inner {
  max-width: 720px;
  margin: 0 auto;
}
.contact-page h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
  text-align: center;
}
.contact-page .lead {
  text-align: center;
  color: var(--brown-soft);
  margin-bottom: 48px;
  font-size: 1.05rem;
}
.contact-page-form {
  display: grid;
  gap: 20px;
  background: var(--bg);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--line);
}
.contact-page-form label {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--brown);
  letter-spacing: 0.04em;
}
.contact-page-form label .required { color: #D76B6B; margin-left: 2px; }
.contact-page-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--brown);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all .3s;
}
.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(139, 90, 43, .08);
}
.contact-page-form select option { color: var(--brown); }
.contact-page-form textarea { resize: vertical; min-height: 130px; }
.contact-page-form button[type="submit"] {
  justify-self: start;
  margin-top: 8px;
}
.contact-wholesale-note {
  margin-top: 28px;
  text-align: center;
  color: var(--brown-soft);
  font-size: 0.95rem;
}
.contact-wholesale-note a {
  color: var(--clay);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-wholesale-note a:hover { color: var(--brown); }

@media (max-width: 600px) {
  .contact-page { padding: 130px 0 70px; }
  .contact-page-form { padding: 28px 22px; }
  .contact-page-form .form-row { grid-template-columns: 1fr; gap: 20px; }
}

/* ========== FAQ Placeholder Page ========== */
.faq-placeholder {
  padding: 160px 0 100px;
  background: var(--cream);
  min-height: 60vh;
  text-align: center;
}
.faq-placeholder h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
}
.faq-placeholder p {
  color: var(--brown-soft);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 36px;
}
@media (max-width: 720px) {
  .faq-placeholder { padding: 130px 0 70px; }
}

/* ========== Product Specs Modal ========== */
.btn-specs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 10px 22px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--clay);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all .3s ease;
}
.btn-specs:hover {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-specs svg {
  width: 14px;
  height: 14px;
  transition: transform .3s ease;
}
.btn-specs:hover svg { transform: translateX(3px); }

/* Modal overlay */
.specs-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(58, 46, 38, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.specs-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal box */
.specs-modal {
  background: var(--cream);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(58, 46, 38, 0.25);
  max-width: 520px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  transform: scale(0.92) translateY(20px);
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1);
}
.specs-overlay.active .specs-modal {
  transform: scale(1) translateY(0);
}

/* Modal header */
.specs-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 36px 20px;
  border-bottom: 1px solid var(--line);
}
.specs-modal-header h3 {
  font-family: "Noto Serif SC", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.4;
}
.specs-modal-header .specs-modal-code {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--clay);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.specs-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--bg-warm);
  color: var(--brown-soft);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
  line-height: 1;
}
.specs-close:hover {
  background: var(--brown);
  color: var(--cream);
  transform: rotate(90deg);
}

/* Modal body / table */
.specs-modal-body {
  padding: 24px 36px 32px;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table thead th {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--line);
}
.specs-table thead th:first-child { width: 30%; }
.specs-table thead th:last-child { width: 50%; }

.specs-table tbody tr {
  transition: background .2s ease;
}
.specs-table tbody tr:hover {
  background: var(--bg-warm);
}
.specs-table tbody td {
  padding: 14px 16px;
  font-size: 0.92rem;
  color: var(--brown-soft);
  border-bottom: 1px solid var(--line);
}
.specs-table tbody td:first-child {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.05em;
}
.specs-table tbody td:nth-child(2) {
  font-weight: 500;
  color: var(--clay);
}
.specs-table tbody tr:last-child td {
  border-bottom: none;
}

/* Single-size notice (no variants) */
.specs-single {
  text-align: center;
  padding: 8px 0;
}
.specs-single .specs-single-spec {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
}
.specs-single .specs-single-label {
  font-size: 0.85rem;
  color: var(--brown-soft);
  letter-spacing: 0.04em;
}

/* Modal footer note */
.specs-modal-note {
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--bg-warm);
  border-radius: 12px;
  font-size: 0.82rem;
  color: var(--brown-soft);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.specs-modal-note svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--clay);
  margin-top: 2px;
}

.specs-modal-type {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.specs-type-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
}
.specs-type-value {
  font-size: 0.9rem;
  color: var(--brown-soft);
  font-weight: 500;
}

/* Mobile */
@media (max-width: 600px) {
  .specs-modal {
    max-width: 100%;
    max-height: 80vh;
  }
  .specs-modal-header { padding: 24px 24px 16px; }
  .specs-modal-body { padding: 20px 24px 28px; }
  .specs-table tbody td { padding: 12px 10px; font-size: 0.85rem; }
  .specs-table thead th { padding: 10px 10px; }
}

/* ========== Color Swatch Tooltip ========== */
.color-tooltip {
  position: fixed;
  z-index: 9999;
  max-width: 260px;
  padding: 14px 18px;
  background: var(--brown);
  color: var(--cream);
  font-size: 0.85rem;
  line-height: 1.6;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(58, 46, 38, .28);
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  white-space: normal;
  word-break: break-word;
}
.color-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}
/* Swatch cursor hint */
.swatch-circle { cursor: pointer; transition: transform .3s ease; }
.swatch-circle:hover { transform: scale(1.08); }

/* ========== Product Carousel Arrows ========== */
.product-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  color: var(--brown);
  opacity: 0;
  transition: opacity .25s ease, background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(58, 46, 38, .08);
}
.product-images:hover .product-arrow { opacity: 1; }
.product-arrow:hover {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}
.product-arrow.prev { left: 14px; }
.product-arrow.next { right: 14px; }
.product-arrow:active { transform: translateY(-50%) scale(0.92); }
.product-arrow svg { width: 18px; height: 18px; display: block; }

/* Touch devices: always semi-visible */
@media (hover: none) {
  .product-arrow { opacity: 0.85; width: 40px; height: 40px; }
}

@media (max-width: 600px) {
  .product-arrow { width: 36px; height: 36px; }
  .product-arrow.prev { left: 8px; }
  .product-arrow.next { right: 8px; }
  .product-arrow svg { width: 16px; height: 16px; }
}

/* ========== Legal / Policy Pages ========== */
.legal-page {
  padding: 70px 0 110px;
  background: var(--cream);
  min-height: 60vh;
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
/* Inline trilingual blocks toggled by the global language switcher */
.legal-lang { display: none; }
.legal-lang.active { display: block; animation: legalFade .35s ease; }
@keyframes legalFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--brown-soft);
  margin-bottom: 30px;
}
.legal-meta strong { color: var(--clay); }

.legal-toc {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 46px;
}
.legal-toc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 14px;
}
.legal-toc ol {
  list-style: none;
  display: grid;
  gap: 10px;
  counter-reset: toc;
}
.legal-toc li { counter-increment: toc; }
.legal-toc a {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: var(--brown-soft);
  font-size: 0.95rem;
  transition: color .25s;
}
.legal-toc a::before {
  content: counter(toc) ".";
  min-width: 22px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}
.legal-toc a:hover { color: var(--clay); }

.legal-content h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 42px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  font-size: 1.15rem;
  margin: 26px 0 10px;
  color: var(--brown);
}
.legal-content p {
  color: var(--brown-soft);
  margin-bottom: 16px;
  line-height: 1.8;
}
.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
  display: grid;
  gap: 8px;
}
.legal-content li { color: var(--brown-soft); line-height: 1.7; }
.legal-content strong { color: var(--brown); font-weight: 600; }
.legal-content a { color: var(--clay); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--brown); }
.legal-notice {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 0.92rem;
  color: var(--brown-soft);
  line-height: 1.7;
}
.legal-back { text-align: center; margin-top: 56px; }

/* Footer legal bar */
.footer-legal-bar {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(248,244,237,.1);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: center;
}
.footer-legal-bar a {
  color: rgba(248,244,237,.5);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  transition: color .25s;
}
.footer-legal-bar a:hover { color: var(--gold); }

@media (max-width: 720px) {
  .legal-page { padding: 50px 0 80px; }
  .legal-toc { padding: 18px 20px; }
}

/* ========== Cookie Consent Banner ========== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--brown);
  color: var(--cream);
  box-shadow: 0 -12px 44px rgba(58, 46, 38, .30);
  transform: translateY(115%);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}
.cookie-banner.show { transform: translateY(0); }

.cookie-banner__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cookie-banner__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(248, 244, 237, .08);
  display: grid;
  place-items: center;
  color: var(--gold);
}
.cookie-banner__body { flex: 1 1 auto; min-width: 0; }
.cookie-banner__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: #fff;
}
.cookie-banner__text {
  margin: 0;
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(248, 244, 237, .82);
}
.cookie-banner__more {
  display: inline-block;
  margin-top: 6px;
  font-size: .86rem;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner__more:hover { color: #e2b878; }
.cookie-banner__actions {
  flex: 0 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 999px;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn--accept { background: var(--gold); color: var(--brown); }
.cookie-btn--accept:hover { background: #d8aa6b; }
.cookie-btn--necessary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248, 244, 237, .35);
}
.cookie-btn--necessary:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 760px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
  }
  .cookie-banner__icon { display: none; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1 1 0; text-align: center; padding: 13px 14px; }
}