/* ===== RESET & TOKENS ===== */
:root {
  --color-bg: #ffffff;
  --color-text: #0d0d0d;
  --color-muted: #6b6b6b;
  --color-border: #e8e8e8;
  --font-heading: "Funnel Display", sans-serif;
  --font-body: "Figtree", sans-serif;
  --header-topbar-h: 48px;
  --header-nav-h: 44px;
  --header-h: 92px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body.no-scroll { overflow: hidden; }

/* ===== STICKY MOBILE BUY BAR ===== */
.sticky-buy-bar {
  display: none;
}
@media (max-width: 768px) {
  .sticky-buy-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    transform: translateY(100%);
    transition: transform 0.28s ease;
  }
  .sticky-buy-bar--visible { transform: translateY(0); }
  .sticky-buy-bar__info { min-width: 0; }
  .sticky-buy-bar__name {
    font-size: 12.5px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sticky-buy-bar__price { font-size: 13px; color: var(--color-muted); }
  .sticky-buy-bar__cta {
    flex-shrink: 0;
    padding: 11px 20px;
    background: var(--color-text);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 3px;
    white-space: nowrap;
  }
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 1000;
  background: #0d0d0d;
  color: #fff;
  padding: 12px 18px;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 4px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
}

/* ===== BUTTON PRESS MICRO-INTERACTION ===== */
.btn,
.pcard__cta,
.category-split__link,
.tagline__link,
.form-submit,
.collection-filter__cta,
.newsletter__btn,
.footer-locale-btn,
.icon-btn,
.product-info__add-to-cart {
  transition: transform 0.15s ease, background 0.2s, color 0.2s, opacity 0.2s, box-shadow 0.2s;
}
.btn:active,
.pcard__cta:active,
.category-split__link:active,
.tagline__link:active,
.form-submit:active,
.collection-filter__cta:active,
.newsletter__btn:active,
.icon-btn:active,
.product-info__add-to-cart:active {
  transform: scale(0.96);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  position: relative;
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 10px 40px;
  font-size: 13px;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}
.announcement-bar__content p { margin: 0; }
.announcement-bar__content a {
  color: #fff;
  text-decoration: underline;
  margin-left: 4px;
}
.announcement-bar__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  opacity: 0.8;
  padding: 4px;
  transition: opacity 0.2s;
}
.announcement-bar__close:hover { opacity: 1; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.header__topbar {
  border-bottom: 1px solid var(--color-border);
}
.header__topbar-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  padding: 0 24px;
  height: var(--header-topbar-h);
  max-width: 1440px;
  margin: 0 auto;
}
.header__menu-toggle { grid-column: 1; }
.header__logo { grid-column: 2; justify-self: center; }
.header__logo img { height: 32px; width: auto; }
.brand-wordmark {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text);
  white-space: nowrap;
}
.header__topbar-right {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--color-text);
  transition: background 0.15s;
  position: relative;
}
.icon-btn:hover { background: #f5f5f5; }
.icon-btn--relative { position: relative; }
.icon-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--color-text);
  color: #fff;
  font-size: 10px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

/* Main nav */
.header__nav {
  display: flex;
  justify-content: center;
  height: var(--header-nav-h);
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}
.nav__link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  font-size: 13.5px;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-text);
}
.nav__link-text {
  position: relative;
  display: inline-block;
}
.nav__link-text::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -6px;
  height: 2px;
  background: var(--color-text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav__link:hover .nav__link-text::after,
.nav__link[aria-current="page"] .nav__link-text::after { transform: scaleX(1); }
.nav__link--caps { font-weight: 500; }
.nav__link[aria-current="page"] {
  font-weight: 500;
}

/* ===== HERO (pinned image, scrolling caption) ===== */
.hero {
  position: relative;
  height: 200vh;
  height: 200svh;
  z-index: -1;
  isolation: isolate;
}
.hero__sticky {
  position: sticky;
  top: var(--header-h);
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  z-index: -1;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__sticky::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 45%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

/* ===== TAGLINE (slides up over the pinned hero as the page scrolls) ===== */
.tagline {
  position: relative;
  z-index: 1;
  background: var(--color-bg);
  margin-top: -100vh;
  margin-top: -100svh;
  text-align: center;
  padding: 72px 24px;
}
.tagline__heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.tagline__sub {
  font-size: 15px;
  color: var(--color-muted);
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.tagline__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.tagline__link:hover { opacity: 0.6; }

/* ===== REVIEWS ===== */
.reviews {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  height: 380px;
}
.reviews:active { cursor: grabbing; }
.reviews__track {
  display: flex;
  gap: 0;
  height: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar { display: none; }
.reviews__img {
  flex-shrink: 0;
  width: auto;
  height: 100%;
  object-fit: cover;
}
.reviews__img--dim { opacity: 0.8; }

/* ===== ABOUT ===== */
.about {
  position: relative;
  overflow: hidden;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__bg {
  position: absolute;
  inset: 0;
}
.about__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.about__body {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 80px 24px;
  max-width: 700px;
}
.about__heading {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.25;
}
.about__text {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.88;
  margin-bottom: 32px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 13.5px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 3px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn--ghost-white {
  border: 1px solid rgba(255,255,255,0.8);
  color: #fff;
  background: transparent;
}
.btn--ghost-white:hover {
  background: #fff;
  color: #000;
}
.btn--outline-dark {
  border: 1px solid var(--color-text);
  color: var(--color-text);
  background: transparent;
}
.btn--outline-dark:hover {
  background: var(--color-text);
  color: #fff;
}

/* ===== CATEGORY SPLIT ===== */
.category-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 600px;
  scroll-margin-top: var(--header-h);
}
.category-split--reverse { }
.category-split__img {
  overflow: hidden;
}
.category-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-split__img:hover img { transform: scale(1.03); }
.category-split--ribbon .category-split__img img { object-position: center 85%; }
.category-split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px;
  background: #fff;
}
.category-split__heading {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  margin-bottom: 16px;
}
.category-split__text {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--color-muted);
  margin-bottom: 28px;
  max-width: 380px;
}
.category-split__link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 2px;
  width: fit-content;
  transition: opacity 0.2s;
}
.category-split__link:hover { opacity: 0.6; }

/* ---- Category split: Cartier LOVE (separated theme) ---- */
.category-split--love {
  margin: 56px 32px 0;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.category-split--love .category-split__body {
  background: #fbf8f2;
}
.category-split--love .category-split__eyebrow {
  color: #8a6d3b;
}
.category-split--love .category-split__link {
  border-color: #8a6d3b;
  color: #8a6d3b;
}
.category-split--love .category-split__link:hover { opacity: 0.75; }

/* ---- Category split: Ribbon Knot Ring (separated theme) ---- */
.category-split--ribbon {
  margin: 0 32px 0;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.category-split--ribbon .category-split__body {
  background: #fbf4f3;
}
.category-split--ribbon .category-split__eyebrow {
  color: #9c6b62;
}
.category-split--ribbon .category-split__link {
  border-color: #9c6b62;
  color: #9c6b62;
}
.category-split--ribbon .category-split__link:hover { opacity: 0.75; }

/* ===== COLLECTION BANNER (pinned image, scrolling caption — same curtain pattern as .hero) ===== */
.collection-banner {
  position: relative;
  margin-top: 56px;
  height: 960px;
  z-index: -1;
  isolation: isolate;
}
.collection-banner__bg {
  position: sticky;
  top: var(--header-h);
  height: 480px;
  overflow: hidden;
  z-index: -1;
}
.collection-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collection-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.collection-banner__body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 480px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  width: 100%;
  max-width: 640px;
}
.collection-banner__heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400;
  margin-bottom: 16px;
}
.collection-banner__text {
  font-size: 14.5px;
  line-height: 1.75;
  opacity: 0.88;
  margin-bottom: 32px;
}

/* ===== PRODUCTS ===== */
.products {
  position: relative;
  z-index: 0;
  background: var(--color-bg);
  margin-top: -480px;
  padding: 48px 0 56px;
}
.products__carousel {
  position: relative;
  display: flex;
  align-items: center;
}
.products__arrow {
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}
.products__arrow:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.14); transform: scale(1.05); }
.products__arrow--prev { left: 16px; }
.products__arrow--next { right: 16px; }
.products__arrow:disabled { opacity: 0.35; cursor: default; }

.products__track-wrap {
  width: 100%;
  padding: 0 60px;
}
.products__viewport {
  overflow: hidden;
  width: 100%;
}
.products__track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Product Card */
.pcard {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
}
.pcard__media {
  position: relative;
  background: #f7f7f7;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
  aspect-ratio: 1 / 1;
}
.pcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pcard__media:hover img { transform: scale(1.04); }
.pcard__wish {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: color 0.2s;
}
.pcard__wish:hover { color: #c00; }
.pcard__wish--active { color: #c00; }
.pcard__wish--active svg { fill: currentColor; }
.pcard__wish--pop { animation: wish-pop 0.26s ease; }
@keyframes wish-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.28); }
  100% { transform: scale(1); }
}
.pcard__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
}
.pdot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
}
.pdot--active { background: rgba(0,0,0,0.7); }

.pcard__info { text-align: center; }
.pcard__name {
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.4;
}
.pcard__label {
  font-size: 11px;
  color: var(--color-muted);
  margin-bottom: 2px;
}
.pcard__price {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.pcard__cta {
  display: inline-block;
  width: 100%;
  padding: 9px 0;
  font-size: 12.5px;
  font-weight: 500;
  text-align: center;
  border: 1px solid var(--color-text);
  border-radius: 2px;
  background: var(--color-text);
  color: #fff;
  transition: all 0.2s;
}
.pcard__cta:hover { background: #333; border-color: #333; }
.pcard__cta--secondary {
  background: transparent;
  color: var(--color-text);
}
.pcard__cta--secondary:hover { background: var(--color-text); color: #fff; }

.products__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.products__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-border);
  transition: background 0.2s, transform 0.2s;
}
.products__dot:hover { background: #bbb; }
.products__dot--active { background: var(--color-text); transform: scale(1.2); }

.products__footer {
  text-align: center;
  margin-top: 36px;
}

/* ===== CTA BANNER (pinned image, scrolling caption — same curtain pattern as .hero/.collection-banner) ===== */
.cta-banner {
  position: relative;
  height: 1120px;
  z-index: -1;
  isolation: isolate;
}
.cta-banner__bg {
  position: sticky;
  top: var(--header-h);
  height: 560px;
  overflow: hidden;
  z-index: -1;
}
.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
}
.cta-banner__body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 560px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  width: 100%;
  max-width: 640px;
}
.cta-banner__heading {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.2;
}
.cta-banner__sub {
  font-size: 14.5px;
  opacity: 0.88;
  margin-bottom: 28px;
}
.cta-banner__watermark {
  font-size: 11px;
  letter-spacing: 0.18em;
  opacity: 0.45;
  margin-top: 32px;
  font-style: italic;
}

/* ===== FEATURES (curtains up over the pinned cta-banner) ===== */
.features {
  position: relative;
  z-index: 0;
  background: var(--color-bg);
  margin-top: -560px;
  padding: 64px 24px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.features__inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.feature__icon { color: var(--color-text); }
.feature__label {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 80px 24px;
  text-align: center;
}
.newsletter__inner { max-width: 480px; margin: 0 auto; }
.newsletter__heading {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  margin-bottom: 12px;
}
.newsletter__sub {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 28px;
}
.newsletter__form {
  display: flex;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  overflow: hidden;
}
.newsletter__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-text);
}
.newsletter__input::placeholder { color: #aaa; }
.newsletter__btn {
  padding: 12px 22px;
  background: var(--color-text);
  color: #fff;
  font-size: 13.5px;
  font-family: var(--font-body);
  font-weight: 500;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter__btn:hover { background: #333; }

/* ===== FOOTER ===== */
.site-footer {
  position: relative;
  z-index: 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  font-size: 13.5px;
}
.site-footer__body {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 32px 40px;
}
.footer-col-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-brand__desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 20px;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-text);
  color: #fff;
  transition: opacity 0.2s;
}
.social-icon:hover { opacity: 0.75; }
.footer-col__links li { margin-bottom: 10px; }
.footer-col__links a {
  font-size: 13.5px;
  color: var(--color-muted);
  transition: color 0.15s;
}
.footer-col__links a:hover { color: var(--color-text); }
.footer-email {
  color: var(--color-muted);
  font-size: 13.5px;
  transition: color 0.15s;
}
.footer-email:hover { color: var(--color-text); }

.site-footer__legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px 20px;
  text-align: center;
}
.site-footer__legal p {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.site-footer__bottom {
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 32px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 12.5px;
}
.footer-bottom__locale { display: flex; gap: 8px; }
.footer-locale-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-family: var(--font-body);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 3px;
  padding: 5px 10px;
  transition: border-color 0.15s;
}
.footer-locale-btn:hover { border-color: #999; }
.footer-copyright { color: var(--color-muted); }
.footer-copyright a { color: var(--color-muted); text-decoration: underline; }
.footer-payments { display: flex; gap: 5px; flex-wrap: wrap; }
.payment-badge {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 6px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  color: var(--color-muted);
  white-space: nowrap;
}

/* ===== KAKAO FLOAT ===== */
.kakao-float {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: 999;
  background: #FEE500;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.kakao-float:hover { transform: scale(1.08); }
.kakao-float span {
  font-size: 8px;
  font-weight: 700;
  color: #3C1E1E;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pcard { flex: 0 0 calc(33.333% - 14px); }
  .site-footer__body { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header__topbar-right a[aria-label="인스타그램"] { display: none; }
  .brand-wordmark { font-size: 16px; }
  .nav__link { padding: 0 12px; font-size: 12px; }
  .category-split { grid-template-columns: 1fr; }
  .category-split--reverse .category-split__img { order: -1; }
  .category-split__body { padding: 40px 28px; }
  .category-split--love, .category-split--ribbon {
    margin-left: 16px;
    margin-right: 16px;
  }
  .pcard { flex: 0 0 calc(50% - 10px); }
  .products__track-wrap { padding: 0 44px; }
  .site-footer__body { grid-template-columns: 1fr 1fr; gap: 28px; padding: 40px 20px; }
  .site-footer__bottom { padding: 16px 20px; flex-direction: column; align-items: flex-start; }
  .features__inner { gap: 40px; }
}

@media (max-width: 480px) {
  .pcard { flex: 0 0 calc(100% - 0px); }
  .site-footer__body { grid-template-columns: 1fr; }
  .header__nav { overflow-x: auto; }
  .nav__list { gap: 0; }
}

/* ===== INNER PAGE SHARED ===== */
.inner-page { padding-top: 0; }

.page-hero {
  position: relative;
  overflow: hidden;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.42); }
.page-hero__body { position: relative; z-index: 1; padding: 0 24px; }
.page-hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-hero__sub { font-size: 15px; opacity: 0.88; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }

.page-content { max-width: 1200px; margin: 0 auto; padding: 60px 32px; }

/* Breadcrumb */
.breadcrumb {
  padding: 14px 32px;
  font-size: 12.5px;
  color: var(--color-muted);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
}
.breadcrumb a { color: var(--color-muted); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--color-text); }
.breadcrumb__sep { opacity: 0.5; }

/* ===== ABOUT PAGE ===== */
.about-tagline {
  text-align: center;
  padding: 80px 24px 60px;
  max-width: 700px;
  margin: 0 auto;
}
.about-tagline__heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.2;
}
.about-tagline__sub { font-size: 15px; color: var(--color-muted); line-height: 1.7; margin-bottom: 28px; }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 540px;
  border-top: 1px solid var(--color-border);
}
.about-split--reverse { }
.about-split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 72px;
}
.about-split__heading {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 400;
  margin-bottom: 20px;
}
.about-split__img { overflow: hidden; }
.about-split__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-split__img:hover img { transform: scale(1.03); }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px;
}
.contact-info__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  margin-bottom: 12px;
}
.contact-info__desc { font-size: 14.5px; color: var(--color-muted); line-height: 1.7; margin-bottom: 40px; }
.contact-block { margin-bottom: 28px; }
.contact-block__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 6px;
}
.contact-block__value { font-size: 14px; line-height: 1.6; }
.contact-block__value a { color: var(--color-text); border-bottom: 1px solid var(--color-border); transition: border-color 0.2s; }
.contact-block__value a:hover { border-color: var(--color-text); }

.contact-form__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 24px;
}
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.04em; margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.15s;
  background: #fff;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--color-text); }
.form-field textarea { height: 120px; resize: vertical; }
.form-submit {
  padding: 13px 32px;
  background: var(--color-text);
  color: #fff;
  font-size: 13.5px;
  font-family: var(--font-body);
  font-weight: 500;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: #333; }

/* ===== FAQS PAGE ===== */
.faq-page { max-width: 900px; margin: 0 auto; padding: 56px 32px 40px; }
.faq-page__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  margin-bottom: 40px;
}
.faq-category { margin-bottom: 32px; }
.faq-category__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  padding: 0 0 12px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 0;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.15s;
}
.faq-item__btn:hover { color: #444; }
.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.25s;
  color: var(--color-muted);
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-item__body { max-height: 640px; }
.faq-item__content {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-muted);
  padding: 0 0 18px;
}

/* ===== CART PAGE ===== */
.cart-page { max-width: 900px; margin: 0 auto; padding: 56px 32px; }
.cart-page__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 48px;
}
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.cart-item__media {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 4px;
  overflow: hidden;
  background: #f7f7f7;
}
.cart-item__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: opacity 0.2s;
}
.cart-item__name:hover { opacity: 0.7; }
.cart-item__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 3px;
}
.cart-item__qty-btn {
  width: 30px;
  height: 30px;
  font-size: 14px;
  color: var(--color-text);
  transition: background 0.15s;
}
.cart-item__qty-btn:hover { background: #f5f5f5; }
.cart-item__qty-value { width: 32px; text-align: center; font-size: 13px; }
.cart-item__price {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 500;
  min-width: 90px;
  text-align: right;
}
.cart-item__remove {
  flex-shrink: 0;
  color: var(--color-muted);
  padding: 4px;
  transition: color 0.15s;
}
.cart-item__remove:hover { color: #c00; }

.cart-summary {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  margin-bottom: 8px;
}
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.cart-summary__label { font-size: 15px; font-weight: 500; }
.cart-summary__total-value { font-size: 22px; font-weight: 600; }
.cart-summary__pay-error {
  margin-top: 10px;
  font-size: 13px;
  color: #c00;
  text-align: center;
}

.cart-payment { display: flex; flex-direction: column; gap: 14px; }
.cart-payment__title { font-size: 13px; font-weight: 600; color: var(--color-muted); margin-bottom: 2px; }
.cart-payment__option {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 18px;
}
.cart-payment__option-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.cart-payment__option-label { font-size: 14.5px; font-weight: 600; }
.cart-payment__option-desc { font-size: 12.5px; color: var(--color-muted); line-height: 1.6; margin-bottom: 14px; }
.cart-payment__bank { margin-bottom: 16px; }
.cart-payment__bank .contact-block { margin-bottom: 12px; }
.cart-payment__bank .contact-block:last-child { margin-bottom: 0; }
.cart-payment__account-row { display: flex; align-items: center; gap: 10px; }
.cart-payment__copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--color-muted);
  border: 1px solid var(--color-border);
  border-radius: 3px;
  padding: 3px 8px;
  transition: border-color 0.15s, color 0.15s;
}
.cart-payment__copy-btn:hover { border-color: var(--color-text); color: var(--color-text); }
.cart-payment__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 0;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 3px;
  transition: all 0.2s;
}
.cart-payment__cta--primary { background: var(--color-text); color: #fff; }
.cart-payment__cta--primary:hover { background: #333; }
.cart-payment__cta--outline { background: transparent; color: var(--color-text); border: 1px solid var(--color-text); }
.cart-payment__cta--outline:hover { background: var(--color-text); color: #fff; }

@media (max-width: 480px) {
  .cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    grid-template-areas:
      "media info remove"
      "media price price";
    column-gap: 12px;
    row-gap: 10px;
    align-items: start;
  }
  .cart-item__media { grid-area: media; width: 72px; height: 72px; }
  .cart-item__info { grid-area: info; min-width: 0; }
  .cart-item__remove { grid-area: remove; }
  .cart-item__price { grid-area: price; text-align: left; min-width: 0; }
}

.cart-empty-state { text-align: center; padding: 40px 0 60px; }
.cart-empty-state__msg {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
}
.cart-empty-state__link {
  font-size: 14px;
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.cart-empty-state__link:hover { opacity: 0.6; }
.cart-login-prompt {
  border-top: 1px solid var(--color-border);
  text-align: center;
  padding: 40px 0;
}
.cart-login-prompt__heading {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}
.cart-login-prompt__sub { font-size: 14px; color: var(--color-muted); }
.cart-login-prompt__sub a { color: var(--color-text); border-bottom: 1px solid var(--color-border); }

/* ===== ACCOUNT / LOGIN PAGE ===== */
.account-page {
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.account-box {
  width: 100%;
  max-width: 420px;
  text-align: center;
}
.account-box__logo {
  margin-bottom: 48px;
}
.account-box__logo img { height: 36px; margin: 0 auto; }
.account-box__title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 6px;
}
.account-box__sub { font-size: 13.5px; color: var(--color-muted); margin-bottom: 28px; }
.account-shop-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: #5433EB;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14.5px;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 20px;
}
.account-shop-btn:hover { background: #4628d4; }
.account-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--color-muted);
  font-size: 13px;
}
.account-divider::before, .account-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.account-email-row {
  display: flex;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
}
.account-email-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-text);
}
.account-email-input::placeholder { color: #aaa; }
.account-email-btn {
  width: 44px;
  height: 100%;
  background: none;
  border: none;
  border-left: 1px solid var(--color-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: background 0.15s;
}
.account-email-btn:hover { background: #f5f5f5; }
.account-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--color-text);
  text-align: left;
  margin-bottom: 24px;
  cursor: pointer;
}
.account-checkbox input { width: 15px; height: 15px; accent-color: var(--color-text); }
.account-privacy { font-size: 12px; color: var(--color-muted); }
.account-privacy a { color: #5433EB; text-decoration: underline; }

/* ===== WISHLIST PAGE ===== */
.wishlist-page { max-width: 1100px; margin: 0 auto; padding: 56px 32px; }
.wishlist-page__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  margin-bottom: 40px;
}
.wishlist-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--color-muted);
}
.wishlist-empty__icon { margin-bottom: 20px; opacity: 0.3; }
.wishlist-empty__msg { font-size: 16px; margin-bottom: 24px; }

/* ===== NEWS PAGE ===== */
.news-page { max-width: 1100px; margin: 0 auto; padding: 56px 32px; }
.news-page__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  margin-bottom: 40px;
}
.news-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--color-muted);
}
.news-empty__msg { font-size: 16px; }

/* ===== COLLECTION PAGE (products.html) ===== */
.collection-page {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 32px 64px;
}
.collection-sidebar__list { margin-bottom: 28px; }
.collection-sidebar__list li { border-bottom: 1px solid var(--color-border); }
.collection-sidebar__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 2px;
  font-size: 14px;
  color: var(--color-text);
  transition: opacity 0.15s;
}
.collection-sidebar__list a:hover { opacity: 0.6; }
.collection-sidebar__list a[aria-current="page"] { font-weight: 600; }
.collection-sidebar__sublist { padding-left: 14px; }
.collection-sidebar__sublist li { border-bottom: none; }
.collection-sidebar__sublist a {
  padding: 7px 2px;
  font-size: 13px;
  color: var(--color-muted);
}
.collection-sidebar__sublist a:hover { opacity: 1; color: var(--color-text); }
.collection-sidebar__sublist a[aria-current="page"] { color: var(--color-text); font-weight: 600; opacity: 1; }
.collection-filter__title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.collection-filter__group { border-top: 1px solid var(--color-border); padding: 14px 0; }
.collection-filter__toggle {
  width: 100%;
  text-align: left;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
}
.collection-filter__body { margin-top: 12px; display: flex; flex-direction: column; gap: 10px; }
.collection-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--color-text);
  cursor: pointer;
}
.collection-checkbox input { width: 14px; height: 14px; accent-color: var(--color-text); }
.collection-checkbox span { color: var(--color-muted); margin-left: auto; }
.price-range { display: flex; gap: 8px; margin-bottom: 10px; }
.price-range input[type="range"] { width: 100%; accent-color: var(--color-text); }
.price-inputs { display: flex; align-items: center; gap: 8px; }
.price-inputs__field {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  padding: 6px 8px;
  font-size: 13px;
  flex: 1;
}
.price-inputs__field input { width: 100%; border: none; outline: none; font-size: 13px; font-family: var(--font-body); }
.price-inputs__sep { color: var(--color-muted); }

.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 28px;
}
.collection-toolbar__count { font-size: 14px; color: var(--color-muted); }
.collection-sort { display: flex; align-items: center; gap: 8px; font-size: 13.5px; }
.collection-sort select {
  border: 1px solid var(--color-border);
  border-radius: 3px;
  padding: 8px 10px;
  font-size: 13.5px;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 20px;
}
.product-card__media {
  position: relative;
  background: #f7f7f7;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
  aspect-ratio: 1 / 1;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card__media:hover img { transform: scale(1.04); }
.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 9px;
  border-radius: 2px;
  color: var(--color-muted);
}
.product-card__info { text-align: center; }
.product-card__name {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.4;
}
.product-card__name:hover { opacity: 0.7; }
.product-card__price { font-size: 14px; font-weight: 500; margin-bottom: 10px; }
.pcard__cta--disabled {
  display: inline-block;
  width: 100%;
  padding: 9px 0;
  font-size: 12.5px;
  font-weight: 500;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: #f2f2f2;
  color: var(--color-muted);
  cursor: default;
}

/* ===== PRODUCT DETAIL PAGE (product.html) ===== */
.product-detail {
  display: grid;
  grid-template-columns: 96px 1fr 460px;
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 32px 64px;
}
.product-gallery { display: contents; }
.product-gallery__thumbs { display: flex; flex-direction: column; gap: 12px; }
.product-gallery__thumb {
  border-radius: 4px;
  overflow: hidden;
  background: #f7f7f7;
  aspect-ratio: 1 / 1;
  opacity: 0.55;
  transition: opacity 0.2s;
}
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumb:hover { opacity: 0.85; }
.product-gallery__thumb--active { opacity: 1; box-shadow: 0 0 0 1.5px var(--color-text); }
.product-gallery__main { background: #f7f7f7; border-radius: 6px; overflow: hidden; aspect-ratio: 1 / 1; }
.product-gallery__main img { width: 100%; height: 100%; object-fit: contain; }

.product-info__vendor { font-size: 12.5px; color: var(--color-muted); margin-bottom: 8px; }
.product-info__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  margin-bottom: 16px;
}
.product-info__price-label { font-size: 12px; color: var(--color-muted); margin-bottom: 2px; }
.product-info__price { font-size: 22px; font-weight: 500; margin-bottom: 4px; }
.product-info__tax { font-size: 12.5px; color: var(--color-muted); margin-bottom: 24px; }

.product-qty { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.product-qty label { font-size: 13px; font-weight: 500; }
.product-qty__stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 3px;
}
.product-qty__stepper button {
  width: 36px;
  height: 36px;
  font-size: 16px;
  color: var(--color-text);
  transition: background 0.15s;
}
.product-qty__stepper button:hover { background: #f5f5f5; }
.product-qty__stepper input {
  width: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-text);
  height: 36px;
}

.product-info__actions {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 12px;
}
.product-info__add-to-cart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
  background: var(--color-text);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  text-align: center;
  border-radius: 3px;
  transition: background 0.2s;
}
.product-info__add-to-cart:hover { background: #333; }
.product-info__add-to-cart.is-added { background: #2e7d32; }
.product-info__view-cart {
  flex-shrink: 0;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  color: var(--color-text);
  transition: background 0.2s, border-color 0.2s;
}
.product-info__view-cart:hover { background: #f5f5f5; border-color: var(--color-text); }
.product-info__other-options {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--color-muted);
  text-decoration: underline;
  margin-bottom: 24px;
}
.product-info__secure { text-align: center; margin-bottom: 24px; }
.product-info__secure p { font-size: 11.5px; color: var(--color-muted); margin-bottom: 10px; }
.payment-badges { display: flex; justify-content: center; gap: 5px; flex-wrap: wrap; }

.product-more {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10% 64px;
}

.product-info__trust {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-info__trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--color-text);
}
.product-info__trust svg { flex-shrink: 0; color: var(--color-muted); }

.product-accordion { margin-top: 8px; }
.product-accordion .faq-item__content ul { padding-left: 18px; margin-top: 8px; }
.product-accordion .faq-item__content li { margin-bottom: 6px; }
.product-accordion .faq-item__content p { margin-bottom: 12px; }

.product-info__share {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 20px;
  transition: color 0.15s;
}
.product-info__share:hover { color: var(--color-text); }

/* Inner page responsive */
@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; height: auto; }
  .about-split--reverse .about-split__img { order: -1; }
  .about-split__img { height: 300px; }
  .about-split__body { padding: 36px 24px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; padding: 40px 20px; }
  .faq-page { padding: 36px 20px; }
  .page-hero { height: 300px; }
  .page-content { padding: 40px 20px; }
  .collection-page { grid-template-columns: 1fr; padding: 24px 20px 48px; }
  .collection-sidebar { order: 2; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; padding: 24px 20px 48px; }
  .product-gallery { display: block; }
  .product-gallery__thumbs { flex-direction: row; margin-top: 12px; margin-bottom: 10px; }
  .product-gallery__thumb { width: 64px; flex-shrink: 0; }
  .product-more { padding: 0 20px 48px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ===== ACCESSIBILITY: FOCUS STATES ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ===== MOBILE MENU TOGGLE ===== */
.header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: background 0.15s;
}
.header__menu-toggle:hover { background: #f5f5f5; }
.header__menu-toggle span {
  display: block;
  width: 18px;
  height: 1.4px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.header__menu-toggle--open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.header__menu-toggle--open span:nth-child(2) { opacity: 0; }
.header__menu-toggle--open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .header__menu-toggle { display: flex; }
  .header__nav {
    height: 0;
    overflow: hidden;
    transition: height 0.28s ease;
  }
  .header__nav--open { height: var(--mobile-nav-h, 260px); }
  .header__nav .nav__list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px 0 16px;
  }
  .header__nav .nav__link {
    width: 100%;
    height: auto;
    padding: 12px 20px;
    border-bottom: 1px solid var(--color-border);
    justify-content: center;
  }
}

/* ===== HERO CAPTION (scrolls away with the page; only .hero__sticky image stays pinned) ===== */
.hero__caption {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100vh;
  height: 100svh;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  width: 100%;
  max-width: 640px;
  animation: heroCaptionFade 0.3s ease 1s backwards;
}
@keyframes heroCaptionFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.hero__sub {
  font-size: 14.5px;
  opacity: 0.95;
  margin-bottom: 22px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}
/* ===== PRODUCTS HEADER ===== */
.products__header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 32px;
  padding: 0 24px;
}
.products__heading {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  margin-bottom: 8px;
}
.products__sub { font-size: 13.5px; color: var(--color-muted); }

/* ===== RELATED PRODUCTS (product.html) ===== */
.related-products {
  padding: 64px 24px;
  border-top: 1px solid var(--color-border);
}

/* pcard badge (home carousel) */
.pcard__badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  background: rgba(255,255,255,0.94);
  font-size: 10.5px;
  font-weight: 500;
  padding: 4px 9px;
  border-radius: 2px;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

/* category split eyebrow label */
.category-split__eyebrow {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 10px;
}

/* footer brand wordmark */
.footer-brand__wordmark {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

/* newsletter single-button variant (no form/email capture) */
.newsletter__btn--solo {
  display: inline-block;
  padding: 13px 30px;
  background: var(--color-text);
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 3px;
  transition: background 0.2s;
}
.newsletter__btn--solo:hover { background: #333; }

/* ===== PHOTO-FREE DECORATIVE SECTIONS ===== */
:root {
  --tone-charcoal-1: #1c1c1c;
  --tone-charcoal-2: #2e2c28;
  --tone-gold-1: #f6efe2;
  --tone-gold-2: #e7d8b8;
  --tone-gold-ink: #8a6d3b;
  --tone-rose-1: #f8efec;
  --tone-rose-2: #f0dcd6;
  --tone-rose-ink: #9c6b62;
}

/* Hero */
.hero--plain {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 30% 20%, #3a3630 0%, var(--tone-charcoal-1) 55%, #101010 100%);
  overflow: hidden;
}
.hero--plain::before { content: none; }
.hero__ring-mark {
  position: absolute;
  right: -60px;
  bottom: -60px;
  color: rgba(255,255,255,0.06);
}
.hero__caption--plain { position: static; transform: none; }
.hero__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: #fff;
  margin-bottom: 18px;
}
.hero__heading--dark { color: #fff; text-shadow: none; }
.hero__sub--dark { color: rgba(255,255,255,0.78); text-shadow: none; }
.btn--ghost-dark {
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
  background: transparent;
  padding: 12px 28px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 3px;
  transition: all 0.2s;
  display: inline-block;
}
.btn--ghost-dark:hover { background: #fff; color: #1c1c1c; border-color: #fff; }

@media (max-width: 640px) {
  .hero--plain { min-height: 62vh; padding: 0 20px; }
}

/* Reviews → quote marquee */
.reviews--quotes { height: auto; padding: 56px 0; background: #faf9f7; cursor: default; }
.reviews__track--quotes {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 24px;
}
.reviews__track--quotes::-webkit-scrollbar { display: none; }
.quote-card {
  flex-shrink: 0;
  width: 300px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-text);
  padding: 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
}

/* About section */
.about--plain {
  height: auto;
  padding: 96px 24px;
  background: linear-gradient(135deg, var(--tone-charcoal-2) 0%, var(--tone-charcoal-1) 100%);
}
.about--plain .about__body { color: #fff; }

/* Category split decorative panel (replaces photo) */
.category-split__panel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.category-split__panel--gold {
  background: linear-gradient(135deg, var(--tone-gold-1), var(--tone-gold-2));
  color: var(--tone-gold-ink);
}
.category-split__panel--rose {
  background: linear-gradient(135deg, var(--tone-rose-1), var(--tone-rose-2));
  color: var(--tone-rose-ink);
}
.category-split__panel-number {
  position: absolute;
  top: 24px;
  left: 32px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.7;
}
.category-split__panel-icon { opacity: 0.85; }

/* Collection banner */
.collection-banner--plain {
  height: auto;
  padding: 96px 24px;
  background: linear-gradient(135deg, var(--tone-charcoal-1) 0%, #34302a 100%);
}

/* CTA banner */
.cta-banner--plain {
  height: auto;
  padding: 96px 24px 76px;
  background: linear-gradient(135deg, var(--tone-gold-2) 0%, var(--tone-gold-1) 60%);
}
.cta-banner--plain .cta-banner__heading,
.cta-banner--plain .cta-banner__sub { color: var(--tone-gold-ink); }
.cta-banner--plain .cta-banner__watermark { color: var(--tone-gold-ink); opacity: 0.55; }
.cta-banner--plain .btn--ghost-white {
  border-color: var(--tone-gold-ink);
  color: var(--tone-gold-ink);
}
.cta-banner--plain .btn--ghost-white:hover { background: var(--tone-gold-ink); color: #fff; }

/* Page hero (about.html) */
.page-hero--plain {
  height: auto;
  min-height: 320px;
  padding: 60px 24px;
  color: #fff;
  background: radial-gradient(ellipse at 70% 30%, #3a3630 0%, var(--tone-charcoal-1) 60%, #101010 100%);
}

/* About-split decorative panel */
.about-split__panel {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-split__panel--gold {
  background: linear-gradient(135deg, var(--tone-gold-1), var(--tone-gold-2));
  color: var(--tone-gold-ink);
}
.about-split__panel--charcoal {
  background: linear-gradient(135deg, var(--tone-charcoal-2), var(--tone-charcoal-1));
  color: rgba(255,255,255,0.85);
}

@media (max-width: 768px) {
  .about-split__panel { height: 220px; }
  .category-split__panel { min-height: 240px; }
}

/* ===== COLLECTION PAGE (refined) ===== */
.collection-filter__group--note {
  background: #fafafa;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 16px;
}
.collection-filter__group--note p {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 12px;
}
.collection-filter__cta {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 9px 0;
  font-size: 12.5px;
  font-weight: 500;
  border: 1px solid var(--color-text);
  border-radius: 3px;
  color: var(--color-text);
  transition: all 0.2s;
}
.collection-filter__cta:hover { background: var(--color-text); color: #fff; }

.collection-section-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.product-grid--section { margin-bottom: 56px; }

/* ===== ABOUT PAGE (refined) ===== */
.about-tagline { text-align: center; padding: 80px 24px 60px; max-width: 700px; margin: 0 auto; }
.about-split__text { font-size: 14.5px; line-height: 1.8; color: var(--color-muted); }

.values-section { background: #fafafa; padding: 72px 24px; text-align: center; }
.values-section__inner { max-width: 960px; margin: 0 auto; }
.values-section__heading {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 400;
  margin-bottom: 48px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
}
.value-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 28px 24px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.value-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.06); transform: translateY(-2px); }
.value-card__icon { color: var(--color-text); margin-bottom: 16px; }
.value-card__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
}
.value-card__text { font-size: 13.5px; color: var(--color-muted); line-height: 1.7; }

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* subtle lift on interactive cards for a more premium feel */
.pcard__media, .product-card__media {
  transition: box-shadow 0.25s ease;
}
.pcard:hover .pcard__media,
.product-card:hover .product-card__media {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
