@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #faf7f9;
  --surface: #fffdfd;
  --text: #3a3a3a;
  --muted: #6d6666;
  --line: #e5dcdd;
  --gold: #b97f97;
  --gold-soft: #b97f97;
  --shadow: 0 14px 45px rgba(78, 66, 45, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1160px;
  --header-height: 104px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 8% 10%, rgba(185, 127, 151, 0.08), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(185, 127, 151, 0.08), transparent 42%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2.4rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 4.2rem 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.section-subtitle {
  margin: 0 0 2.1rem;
  color: var(--muted);
  max-width: 760px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.btn,
button,
input[type='submit'] {
  font-family: 'Montserrat', sans-serif;
}

.btn {
  border: 1px solid transparent;
  background: var(--text);
  color: #fff;
  padding: 0.78rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
}

.btn[disabled],
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}

.btn-light {
  background: #fff;
  color: var(--text);
}

.pill-link {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-size: 0.85rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.two-col-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.two-col-split > *,
.checkout-layout > *,
.custom-order-layout > *,
.form-grid > *,
.filters-layout > *,
.product-layout > * {
  min-width: 0;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(185, 127, 151, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero {
  margin-top: var(--header-height);
  padding: 5rem 0 2.6rem;
}

.page-hero .hero-wrap {
  background: linear-gradient(120deg, rgba(185, 127, 151, 0.14), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(185, 127, 151, 0.2);
  border-radius: var(--radius);
  padding: 2.2rem;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  margin: 0 0 1rem;
  line-height: 1;
}

.page-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  border-bottom: 1px solid rgba(58, 58, 58, 0.08);
  backdrop-filter: blur(10px);
  background: rgba(250, 247, 249, 0.9);
}

.nav-row {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}

.logo img {
  width: auto;
  height: 78px;
  border-radius: 10px;
  object-fit: contain;
  background: transparent;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.desktop-nav > a,
.desktop-nav > button {
  background: transparent;
  border: 0;
  color: var(--text);
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}

.products-menu-wrap > a {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--text);
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}

.desktop-nav > a:hover,
.desktop-nav > button:hover,
.desktop-nav > .active,
.products-menu-wrap > a.active {
  background: rgba(185, 127, 151, 0.12);
}

.products-menu-wrap > a:hover,
.products-menu-wrap > a:focus-visible {
  background: transparent;
}

.products-menu-wrap {
  position: relative;
  padding-bottom: 0.35rem;
  margin-bottom: -0.35rem;
}

.mega-menu {
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  min-width: 520px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 0.75rem;
  display: none;
  z-index: 12;
}

.products-menu-wrap:hover .mega-menu,
.products-menu-wrap:focus-within .mega-menu {
  display: block;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.mega-menu-heading {
  display: inline-block;
  margin: 0 0 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
}

.mega-bag-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.38rem;
}

.mega-bag-link {
  display: block;
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(185, 127, 151, 0.22);
  border-radius: 10px;
  background: #fff;
  font-size: 0.9rem;
}

.mega-bag-link:hover {
  background: rgba(185, 127, 151, 0.08);
}

.mega-shortcuts {
  margin-top: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(58, 58, 58, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.menu-group {
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(185, 127, 151, 0.18);
}

.menu-group h4 {
  margin: 0 0 0.45rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
}

.menu-group a {
  display: block;
  padding: 0.22rem 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.menu-group a:hover {
  color: var(--text);
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(58, 58, 58, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.icon-btn,
.icon-btn:hover,
.icon-btn:focus,
.icon-btn:active,
.icon-btn:visited,
.mobile-toggle,
.mobile-toggle:hover,
.mobile-toggle:focus,
.mobile-toggle:active {
  color: var(--text);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
}

.mobile-toggle {
  display: none;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 0.5rem 0 1rem;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav summary {
  cursor: pointer;
}

.mobile-nav ul,
.mobile-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav a,
.mobile-nav summary {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(58, 58, 58, 0.08);
  font-size: 0.95rem;
}

.mobile-nav .sub-link {
  color: var(--muted);
  padding-left: 0.9rem;
  font-size: 0.86rem;
}

/* Hero video */
.hero-video {
  margin-top: var(--header-height);
  padding-top: 1.2rem;
}

.hero-shell {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: clamp(380px, 62vh, 640px);
  border: 1px solid rgba(185, 127, 151, 0.2);
  box-shadow: var(--shadow);
}

.hero-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 16, 12, 0.68), rgba(20, 16, 12, 0.3));
  display: flex;
  align-items: center;
}

.hero-content {
  width: min(100% - 2rem, 640px);
  margin-left: 6%;
  color: #fff;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 0 0 1rem;
  line-height: 0.95;
}

.hero-content p {
  margin-bottom: 1.3rem;
  max-width: 550px;
  color: rgba(255, 255, 255, 0.9);
}

/* Home sections */
.home-editorial {
  padding-top: 2.4rem;
}

.home-editorial-layout {
  display: block;
}

.home-editorial-copy {
  position: relative;
}

.home-editorial-panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  align-content: start;
  max-width: none;
  padding: 0;
  padding-left: 1.2rem;
}

.adv-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.45rem;
  align-items: start;
  padding: 0 0 1.1rem 2rem;
  border-bottom: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  position: relative;
  transition: transform 180ms ease, opacity 180ms ease;
}

.adv-card h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.adv-card .meta {
  margin: 0;
  color: rgba(58, 58, 58, 0.78);
  font-size: 1rem;
  line-height: 1.68;
  max-width: 34ch;
}

.adv-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 12px;
  height: 1px;
  background: rgba(185, 127, 151, 0.55);
}

.adv-card:nth-child(1),
.adv-card:nth-child(3) {
  width: min(100%, 88%);
  margin-left: 0.8rem;
}

.adv-card:nth-child(2),
.adv-card:nth-child(4) {
  width: min(100%, 94%);
  margin-left: 3.2rem;
}

.adv-card:nth-child(4) {
  padding-bottom: 0;
}

.adv-card:hover {
  transform: translateX(6px);
}

.adv-card:hover h3 {
  color: #4a3c40;
}

.adv-card-body {
  display: grid;
  gap: 0.3rem;
}

.home-editorial-empty-card {
  position: relative;
  min-height: 0;
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid rgba(185, 127, 151, 0.16);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.65), transparent 25%),
    #f3ecec;
  box-shadow: 0 34px 70px rgba(89, 67, 75, 0.16);
  align-self: start;
  transform: translateY(0.75rem);
  width: min(100%, 440px);
  justify-self: end;
  margin-right: 5.2rem;
}

.home-editorial-empty-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.home-section-cta {
  margin-top: 1.3rem;
}

.editorial-photo,
.inline-story-visual {
  overflow: hidden;
  border-radius: 26px;
  background: #f5eeef;
  box-shadow: var(--shadow);
  margin: 0;
}

.editorial-photo img,
.inline-story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-photo-tall {
  min-height: auto;
  height: 100%;
  grid-row: 1 / span 2;
}

.editorial-photo-square {
  min-height: auto;
}

.editorial-photo-square.accent {
  transform: translateY(1.2rem);
}

.editorial-photo-feature {
  aspect-ratio: 3 / 4;
  min-height: 0;
  max-height: 520px;
}

.inline-story-visual {
  float: right;
  width: 220px;
  aspect-ratio: 3 / 4;
  margin: 0.15rem 0 0.9rem 1.1rem;
  shape-margin: 1rem;
}

.inline-story-visual-home {
  width: 200px;
  aspect-ratio: 5 / 6;
  transform: translateY(0.1rem);
}

.inline-story-visual-brand {
  width: 240px;
}

.brand-story-section {
  padding-top: 1.2rem;
}

.brand-story-layout {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: start;
}

.brand-story-panel {
  padding: 0.8rem 0 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.brand-story-image-card {
  max-width: 420px;
  width: 100%;
  justify-self: start;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(185, 127, 151, 0.18);
  box-shadow: var(--shadow);
  background: #f3ecec;
}

.brand-story-image-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.brand-story-copy {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: var(--muted);
}

.brand-story-note {
  margin: 1.2rem 0 1.4rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.brand-story-note p,
.brand-story-quote p {
  margin: 0;
}

.brand-story-image {
  overflow: hidden;
  border-radius: 24px;
  background: #f4eded;
  box-shadow: var(--shadow);
}

.brand-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-story-image-large {
  aspect-ratio: 3 / 4;
  min-height: 0;
  max-height: 540px;
}

.brand-story-stack {
  display: grid;
  gap: 1rem;
  grid-template-rows: minmax(210px, 1fr) minmax(150px, auto);
}

.brand-story-quote {
  display: flex;
  align-items: end;
  min-height: 220px;
  padding: 1.4rem;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--text), #51484a);
  color: #fff;
  box-shadow: var(--shadow);
}

.brand-story-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.08;
}

.featured-home-products {
  padding-top: 1.6rem;
}

.home-product-showcase {
  padding-top: 0.8rem;
}

.home-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.4rem;
  margin-bottom: 0.9rem;
}

.home-section-head--stack {
  align-items: start;
}

.home-product-carousel {
  position: relative;
  padding-inline: 2.4rem;
}

.home-carousel-controls {
  position: static;
}

#home-products-prev,
#home-products-next {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
}

.home-carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
  background: rgba(255, 250, 251, 0.98);
  box-shadow: 0 12px 28px rgba(58, 58, 58, 0.16);
  border: 1px solid rgba(185, 127, 151, 0.26);
}

#home-products-prev {
  left: 0;
}

#home-products-next {
  right: 0;
}

.home-product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 27%);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.35rem 0;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-product-rail::-webkit-scrollbar {
  display: none;
}

.home-product-slide {
  scroll-snap-align: start;
}

.home-product-slide .product-thumb {
  aspect-ratio: 4 / 4.6;
}

.home-product-slide .product-card {
  height: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.home-product-slide .product-thumb {
  border-radius: 26px;
  display: block;
}

.home-product-slide .product-thumb img {
  border-radius: inherit;
}

.home-product-slide .product-info {
  display: none;
}

.home-product-cta {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

.home-empty-message {
  padding: 1rem 1.1rem;
  color: var(--muted);
}

.home-reviews-section {
  padding-top: 0.6rem;
}

.home-review-layout {
  align-items: start;
}

.review-card-empty {
  min-height: 100%;
  display: grid;
  align-content: center;
}

.home-editorial-copy::after,
.brand-story-panel::after {
  content: '';
  display: block;
  clear: both;
}

.home-closing-banner {
  padding-top: 0;
}

.home-closing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.5rem 1.6rem;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(185, 127, 151, 0.94), rgba(116, 84, 96, 0.96));
  color: #fff;
  box-shadow: var(--shadow);
}

.home-closing-card .eyebrow,
.home-closing-card .section-title,
.home-closing-copy {
  color: #fff;
}

.home-closing-copy {
  max-width: 760px;
}

.product-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
}

.product-thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.04);
}

.product-flag {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.24rem 0.55rem;
  font-size: 0.73rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(58, 58, 58, 0.16);
}

.product-info {
  padding: 1rem;
}

.product-info h3 {
  font-size: 1rem;
  margin: 0 0 0.25rem;
}

.product-price {
  font-weight: 700;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.rating-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px dashed var(--gold);
  color: var(--muted);
  font-size: 0.83rem;
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
  gap: 1rem;
  align-items: start;
}

.review-summary {
  padding: 0.4rem;
}

.review-summary-panel {
  align-self: start;
  min-height: 0;
  padding: 1rem 1.15rem;
}

.review-form-panel {
  padding: 1rem 1rem 1.15rem;
}

.home-review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  padding: 1.1rem 1rem;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.25rem;
}

.review-stars {
  color: var(--gold);
  letter-spacing: 0.04em;
  font-weight: 700;
}

.review-list {
  display: grid;
  gap: 0.75rem;
}

#product-review-list .review-card {
  border-radius: 24px;
}

.product-review-card {
  width: 100%;
  padding: 1rem 1.15rem;
}

.product-review-header {
  align-items: start;
  margin-bottom: 0.55rem;
}

.product-review-author {
  display: grid;
  gap: 0.18rem;
}

.product-review-name {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(58, 58, 58, 0.6);
}

.product-review-title {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.product-review-text {
  margin: 0;
  max-width: 62ch;
}

.product-review-date {
  margin: 0.85rem 0 0;
}

.blog-teaser-grid {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
}

.blog-main-card {
  overflow: hidden;
}

.blog-main-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blog-main-card .text {
  padding: 1.2rem;
}

.blog-side-stack {
  display: grid;
  gap: 1rem;
}

.faq-snippet .faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

/* Product listing */
.filters-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.2rem;
}

.filters-panel {
  padding: 1rem;
  height: fit-content;
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.filter-group {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
}

.filter-group h3 {
  font-size: 0.95rem;
  margin: 0 0 0.4rem;
}

.filter-group label,
.filter-group select,
.filter-group input {
  display: block;
  width: 100%;
  font-size: 0.9rem;
}

.filter-group select,
.filter-group input,
textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  padding: 0.62rem 0.7rem;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.check-row input[type='checkbox'],
.check-row input[type='radio'] {
  accent-color: var(--gold);
}

.list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.view-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 2rem;
  text-align: center;
  color: var(--muted);
}

/* Product detail */
.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
}

.gallery-shell {
  overflow: hidden;
  padding: 1rem;
}

.gallery-main {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #f4efef;
  aspect-ratio: 4 / 5;
}

.gallery-main img,
.gallery-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 0.5rem;
}

.gallery-thumbs button {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.gallery-thumbs button.active {
  border-color: var(--gold);
}

.gallery-thumbs img,
.gallery-thumbs video {
  width: 100%;
  height: 68px;
  object-fit: cover;
}

.gallery-thumb-video {
  position: relative;
}

.gallery-thumb-video::after,
.gallery-thumbs button[data-media-type='video']::after {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 18, 18, 0.72);
  color: #fff;
  font-size: 0.78rem;
  pointer-events: none;
}

.product-detail {
  padding: 1.4rem;
}

.product-detail h1 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.product-detail .price {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0.6rem 0;
}

.product-description {
  display: grid;
  gap: 0.85rem;
  max-width: 34rem;
  line-height: 1.85;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}

.product-description > * {
  margin: 0;
}

.product-description :where(p, ul, ol, blockquote, h2, h3, h4) {
  margin: 0;
}

.product-description :where(ul, ol) {
  padding-left: 1.25rem;
}

.product-description li + li {
  margin-top: 0.35rem;
}

.product-description :where(h2, h3, h4) {
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 700;
}

.product-description blockquote {
  padding-left: 1rem;
  border-left: 2px solid rgba(185, 127, 151, 0.4);
}

.product-description a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.product-description :where(strong, b) {
  font-weight: 700;
}

.product-detail input,
.product-detail select,
#product-review-form input,
#product-review-form select,
#product-review-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d9cfd4;
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  padding: 0.72rem 0.9rem;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  appearance: none;
}

#product-review-form textarea {
  min-height: 130px;
}

.product-detail input:focus,
.product-detail select:focus,
#product-review-form input:focus,
#product-review-form select:focus,
#product-review-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(185, 127, 151, 0.13);
}

#product-review-form input[type='checkbox'] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  accent-color: var(--gold);
}

.inline-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.size-table th,
.size-table td {
  border: 1px solid var(--line);
  padding: 0.5rem;
  text-align: left;
}

.rec-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* About */
.about-flow {
  display: grid;
  gap: 1.75rem;
}

.about-hero-shell {
  padding-bottom: 1rem;
}

.about-hero-stack {
  display: grid;
  gap: 0.85rem;
}

.about-hero-media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(185, 127, 151, 0.18);
  box-shadow: var(--shadow);
}

.about-hero-media img {
  width: 100%;
  height: min(48vw, 420px);
  object-fit: cover;
  display: block;
}

.about-story-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.about-story-side {
  display: grid;
  gap: 1rem;
}

.about-mini-card {
  min-height: 220px;
}

.about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
}

.about-row-editorial {
  align-items: center;
}

.about-row-stagger {
  gap: 3.75rem;
}

.about-row .text,
.about-row .photo {
  background: transparent;
  border: none;
  box-shadow: none;
}

.about-row .text {
  flex: 1 1 0;
  padding: 0;
  max-width: 540px;
}

.about-row .photo {
  flex: 0 0 auto;
  width: min(100%, 420px);
  border-radius: 24px;
  overflow: hidden;
}

.about-row .photo img {
  width: 100%;
  height: auto;
  display: block;
}

.about-row-intro .photo {
  margin-top: 1rem;
  transform: translate(-28px, 26px);
}

.about-row-offer {
  margin-top: -4rem;
}

.about-row-offer .photo {
  margin-top: -1.75rem;
  transform: translate(32px, 18px);
}

.about-highlight-block {
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  max-width: 520px;
  align-self: center;
}

.about-row-behind {
  margin-top: -0.75rem;
}

.about-row-behind .photo {
  margin-top: -3rem;
  transform: translate(-28px, -26px);
}

.about-row-audience {
  margin-top: 0.35rem;
}

.about-highlight-list {
  display: grid;
  gap: 0.85rem;
}

.about-process {
  display: grid;
  gap: 3.25rem;
}

.about-process-story {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(3rem, 5vw, 4.5rem);
  align-items: center;
}

.about-process-copy {
  max-width: 620px;
}

.about-process-story .about-process-copy {
  justify-self: start;
}

.about-process-image {
  width: min(100%, 420px);
  border-radius: 24px;
  overflow: hidden;
  justify-self: start;
  margin-top: -3rem;
  transform: translate(28px, -26px);
}

.about-process-image img {
  width: 100%;
  height: clamp(420px, 48vw, 560px);
  object-fit: cover;
  display: block;
}

.about-process-copy .meta,
.about-manifesto-block .meta,
.about-audience-copy .meta {
  margin: 0;
}

.about-manifesto-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 1rem;
  padding: 0.75rem 0;
}

.about-manifesto-block .section-title {
  margin-bottom: 0.25rem;
}

.about-manifesto-block .about-highlight-list {
  gap: 0.95rem;
  justify-items: center;
}

.about-manifesto-block .meta {
  max-width: 720px;
}

.about-story-editorial {
  display: grid;
  justify-items: center;
  gap: 0;
  padding: clamp(1.2rem, 3vw, 2rem) 0;
}

.about-story-editorial__content {
  display: grid;
  gap: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 680px;
  justify-items: center;
}

.about-story-editorial__block {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
}

.about-story-editorial__block .section-title {
  text-align: center;
  max-width: 22ch;
  margin-inline: auto;
  text-wrap: balance;
}

.about-story-editorial__block--secondary {
  gap: 0.72rem;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(71, 53, 57, 0.14);
}

.about-story-editorial__block--secondary .section-title {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
}

.about-story-editorial__block .meta {
  margin: 0;
  max-width: 680px;
  color: rgba(58, 58, 58, 0.86);
  text-align: center;
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.about-process-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(185, 127, 151, 0.18);
  box-shadow: var(--shadow);
  background: #f3ecec;
}

.about-process-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.about-closing-block {
  padding: 1.7rem;
  background:
    radial-gradient(circle at top right, rgba(185, 127, 151, 0.16), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 239, 242, 0.92));
}

.about-row .section-title,
.about-manifesto-block .section-title,
.about-story-editorial__block .section-title {
  margin-bottom: 0.85rem;
}

.about-row .meta,
.about-manifesto-block .meta,
.about-story-editorial__block .meta {
  color: rgba(58, 58, 58, 0.8);
}

.about-closing-copy {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
}

.about-closing-copy .meta {
  margin: 0;
}

.social-spotlight {
  padding: 1.4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social-buttons a {
  min-width: 130px;
  font-size: 0.92rem;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(58, 58, 58, 0.25);
  background: #fff;
  display: inline-flex;
  justify-content: center;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1rem;
}

.faq-nav {
  padding: 1rem;
  height: fit-content;
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.faq-nav button {
  width: 100%;
  text-align: left;
  margin-bottom: 0.4rem;
  border-radius: 10px;
  white-space: normal;
}

.faq-nav .active {
  background: rgba(185, 127, 151, 0.18);
}

.faq-accordion {
  display: grid;
  gap: 0.7rem;
}

.faq-accordion details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
}

.faq-accordion summary {
  cursor: pointer;
  padding: 1rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.faq-accordion .answer {
  padding: 0 1rem 1rem;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.faq-accordion .answer p {
  margin: 0.5rem 0 0;
}

.faq-accordion .answer p:first-child {
  margin-top: 0;
}

.support-box {
  margin-top: 1rem;
  padding: 1rem;
}

/* Blog */
.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.blog-filter button {
  border-radius: 999px;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  overflow: hidden;
}

.blog-card img {
  height: 210px;
  width: 100%;
  object-fit: cover;
}

.blog-card .text {
  padding: 1rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.7rem 0;
}

.tag {
  background: rgba(185, 127, 151, 0.15);
  color: var(--text);
  border-radius: 999px;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1rem;
}

.article-body {
  padding: 1.4rem;
}

.article-body img {
  width: 100%;
  border-radius: var(--radius-sm);
  margin: 0.9rem 0 1rem;
}

.related-article {
  padding: 1rem;
  margin-bottom: 1rem;
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.86rem;
  font-weight: 500;
  margin-bottom: 0.28rem;
  display: block;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-shell {
  padding: 1.3rem;
}

.legal-shell {
  max-width: none;
  margin-inline: auto;
  padding: 1.6rem;
}

.legal-shell h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  margin: 1.2rem 0 0.35rem;
}

.legal-shell h2:first-of-type {
  margin-top: 0.2rem;
}

.aszf-view h3 {
  margin: 1rem 0 0.45rem;
  font-size: 1.04rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.legal-faq-shell h3 {
  margin: 1rem 0 0.45rem;
  font-size: 1.04rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.legal-faq-shell p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.legal-faq-shell p + p {
  margin-top: 0.55rem;
}

.aszf-view p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.aszf-view p + p {
  margin-top: 0.55rem;
}

.legal-faq-shell ul,
.legal-faq-shell ol,
.aszf-view ul,
.aszf-view ol {
  margin: 0.35rem 0 0.85rem 1.35rem;
  color: var(--muted);
  line-height: 1.7;
}

.legal-faq-shell li + li,
.aszf-view li + li {
  margin-top: 0.3rem;
}

.legal-verbatim-shell {
  padding: 1.2rem;
}

.legal-verbatim {
  margin: 0;
  font: inherit;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.65;
  color: var(--text);
}

.legal-verbatim.is-visually-hidden {
  display: none;
}

.aszf-section + .aszf-section {
  margin-top: 1.2rem;
}

#aszf-root {
  max-width: none;
}

.aszf-view {
  display: grid;
  gap: 1rem;
}

.aszf-intro p,
.aszf-section-body p {
  margin: 0 0 0.7rem;
  line-height: 1.72;
  color: var(--text);
  overflow-wrap: anywhere;
}

.aszf-intro p:last-child,
.aszf-section-body p:last-child {
  margin-bottom: 0;
}

.aszf-section {
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}

.aszf-section h2 {
  margin: 0 0 0.55rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  line-height: 1.25;
}

.aszf-section-body {
  padding: 0 0 0.15rem;
}

.help-text {
  font-size: 0.82rem;
  color: var(--muted);
}

.notice {
  border-left: 3px solid var(--gold);
  background: rgba(185, 127, 151, 0.1);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
}

.table-wrap {
  overflow: auto;
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrap th,
.table-wrap td {
  border-bottom: 1px solid var(--line);
  padding: 0.6rem;
  text-align: left;
  min-width: 150px;
}

.returns-table .remove-row {
  white-space: nowrap;
}

.confirm-message {
  margin-top: 0.9rem;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(185, 127, 151, 0.33);
  background: rgba(185, 127, 151, 0.12);
}

.custom-order-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: start;
}

.custom-order-side {
  display: grid;
  gap: 1rem;
}

.custom-order-steps,
.custom-order-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.custom-order-group {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.7);
}

.custom-order-group legend {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  padding: 0 0.35rem;
}

.custom-order-colors {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.72rem 0.85rem;
  background: rgba(255, 255, 255, 0.72);
}

.custom-order-colors summary {
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
}

.custom-order-colors p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-error {
  margin: 0.45rem 0 0;
  font-size: 0.83rem;
  color: #ad4767;
}

.price-estimate {
  border: 1px solid rgba(185, 127, 151, 0.28);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(185, 127, 151, 0.08);
}

.price-estimate .eyebrow {
  margin-bottom: 0.2rem;
}

.price-estimate-value {
  margin: 0;
  font-size: 1.14rem;
  font-weight: 700;
}

.form-shell .check-row a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 2.8rem 0 1.2rem;
  border-top: 1px solid rgba(58, 58, 58, 0.12);
  background: linear-gradient(180deg, rgba(250, 247, 249, 0), rgba(185, 127, 151, 0.08));
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.newsletter {
  padding: 1.2rem;
}

.newsletter form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.legal-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(58, 58, 58, 0.12);
  font-size: 0.83rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Utility */
.hidden {
  display: none !important;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

@media (max-width: 1100px) {
  .product-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .view-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 86px;
  }

  .desktop-nav {
    display: none;
  }

  .nav-icons {
    display: flex;
  }

  .logo img {
    height: 64px;
  }

  .logo-name {
    font-size: 1.26rem;
    letter-spacing: 0.08em;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .advantages-grid,
  .review-layout,
  .blog-teaser-grid,
  .custom-order-layout,
  .about-story-layout,
  .about-process-grid,
  .two-col-split,
  .checkout-layout,
  .filters-layout,
  .product-layout,
  .about-row,
  .faq-layout,
  .article-layout,
  .footer-top,
  .social-spotlight {
    grid-template-columns: 1fr;
  }

  .filters-panel,
  .faq-nav,
  .cart-summary {
    position: static;
  }

  .product-cards,
  .home-review-grid,
  .rec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-story-image-large,
  .editorial-photo-tall,
  .editorial-photo-feature {
    min-height: 420px;
  }

  .editorial-photo-square.accent {
    transform: none;
  }

  .inline-story-visual {
    width: 190px;
  }

  .home-closing-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-product-rail {
    grid-auto-columns: minmax(220px, 43%);
  }

  .gallery-thumbs {
    grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
  }
}

@media (max-width: 900px) {
  .home-editorial-panels {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .home-editorial-empty-card {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    margin-right: 0;
    transform: none;
  }

  .brand-story-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .brand-story-image-card {
    justify-self: stretch;
    max-width: none;
  }

  .about-hero-media img,
  .about-process-card img {
    height: 280px;
  }

  .about-row {
    gap: 1.5rem;
  }

  .about-row-stagger {
    gap: 1.4rem;
  }

  .about-process {
    gap: 2.4rem;
  }

  .about-process-story {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .about-process-image {
    justify-self: start;
    margin-top: 0;
    transform: none;
  }

  .about-story-editorial {
    gap: 1.75rem;
  }

  .about-story-editorial__content {
    max-width: 560px;
    gap: 1.8rem;
  }

  .about-row-offer,
  .about-row-behind,
  .about-row-intro .photo,
  .about-row-audience {
    margin-top: 0;
  }

  .about-row-intro .photo,
  .about-row-offer .photo,
  .about-row-behind .photo {
    transform: none;
  }

  .inline-story-visual,
  .inline-story-visual-brand {
    width: 170px;
  }
}

@media (max-width: 1067px) {
  .brand-story-layout {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .brand-story-panel {
    order: 1;
    padding: 0;
  }

  .brand-story-image-card {
    order: 2;
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .brand-story-image-card img {
    height: 480px;
  }
}

@media (max-width: 640px) {
  .logo-name {
    display: none;
  }

  .hero-content {
    width: min(100% - 1.4rem, 560px);
    margin: 0 auto;
  }

  .product-cards,
  .home-review-grid,
  .view-grid,
  .blog-grid,
  .rec-grid,
  .form-grid,
  .inline-fields,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .home-editorial {
    padding-top: 1.4rem;
  }

  .home-product-rail {
    grid-auto-columns: 78%;
  }

  .home-carousel-btn {
    width: 42px;
    height: 42px;
    font-size: 1.35rem;
  }

  .home-product-carousel {
    padding-inline: 0;
  }

  #home-products-prev {
    left: 0.35rem;
  }

  #home-products-next {
    right: 0.35rem;
  }

  .home-product-slide .product-thumb {
    aspect-ratio: 4 / 4.35;
  }

  .home-product-cta {
    margin-top: 1.4rem;
  }

  .about-row .text,
  .about-closing-block {
    padding: 1.2rem;
  }

  .about-row {
    flex-direction: column;
    gap: 1rem;
  }

  .about-row .text {
    order: 1;
  }

  .about-row .photo {
    order: 2;
  }

  .about-row .text,
  .about-row .photo {
    max-width: none;
    width: 100%;
  }

  .about-process-story {
    gap: 1.2rem;
  }

  .about-process-copy {
    order: 1;
  }

  .about-process-image {
    order: 2;
    width: 100%;
  }

  .product-detail {
    padding: 1.15rem;
  }

  .product-detail h1 {
    font-size: clamp(2rem, 7vw, 2.5rem);
    line-height: 1.05;
  }

  .product-detail .price {
    font-size: 1.15rem;
  }

  .product-description {
    gap: 0.75rem;
    max-width: none;
    font-size: 0.99rem;
    line-height: 1.72;
  }

  .about-process-copy,
  .about-story-editorial__block {
    max-width: none;
  }

  .about-process-image img {
    height: auto;
  }

  .home-editorial-empty-card {
    min-height: 220px;
    width: 100%;
  }

  .home-editorial-empty-card img {
    height: 420px;
  }

  .brand-story-panel {
    order: 1;
    padding: 0;
  }

  .brand-story-image-card {
    order: 2;
  }

  .adv-card {
    width: 100% !important;
    margin-left: 0 !important;
    padding: 0 0 1rem 1.35rem;
  }

  .advantages-grid {
    max-width: none;
  }

  .editorial-photo-tall {
    grid-row: auto;
  }

  .inline-story-visual,
  .inline-story-visual-brand {
    float: none;
    display: block;
    width: min(100%, 240px);
    margin: 0.4rem auto 1rem;
  }

  .editorial-photo-square,
  .editorial-photo-tall,
  .editorial-photo-feature,
  .brand-story-stack .brand-story-image,
  .brand-story-quote,
  .brand-story-image-large {
    min-height: 240px;
  }

  .home-closing-card {
    padding: 1.2rem;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
  }

  .newsletter form {
    grid-template-columns: 1fr;
  }

  #recommended-products.rec-grid {
    gap: 0.65rem;
  }

  #recommended-products .product-info {
    padding: 0.7rem 0.75rem 0.8rem;
  }

  #recommended-products .product-info h3 {
    font-size: 0.92rem;
    line-height: 1.25;
    margin-bottom: 0.2rem;
  }

  #recommended-products .product-info .meta {
    font-size: 0.8rem;
  }

  #recommended-products .price-row {
    gap: 0.35rem;
    align-items: flex-start;
    flex-direction: column;
  }

  #recommended-products .product-thumb {
    aspect-ratio: 4 / 4.15;
  }

  #recommended-products [data-quick] {
    display: none;
  }

  #recommended-products [data-add],
  #recommended-products [data-quick] {
    width: 100%;
    padding: 0.62rem 0.7rem;
    font-size: 0.78rem;
  }
}

#recommended-products .product-card {
  height: 100%;
}

@media (max-width: 480px) {
  #recommended-products[data-columns='1'] .product-card {
    max-width: 228px;
    width: 100%;
    justify-self: center;
  }

  #recommended-products[data-columns='1'] .product-thumb {
    aspect-ratio: 4 / 4;
  }
}

/* Cart */
.cart-layout {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 1.2rem;
}

.cart-lines {
  display: grid;
  gap: 0.8rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem;
}

.cart-line img {
  width: 110px;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-line h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.qty-wrap {
  display: grid;
  gap: 0.4rem;
  justify-items: center;
}

.qty-wrap button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  min-width: 34px;
  min-height: 34px;
  cursor: pointer;
}

.qty-wrap .remove {
  min-width: auto;
}

.cart-summary {
  padding: 1.1rem;
  height: fit-content;
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.cart-summary h2 {
  margin-top: 0;
  margin-bottom: 0.9rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
}

/* Products Drawer */
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.products-toolbar-left,
.products-toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.category-pill {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 0.5rem 0.92rem;
  font-size: 0.86rem;
  cursor: pointer;
  transition: 160ms ease;
}

.category-pill:hover {
  border-color: rgba(185, 127, 151, 0.55);
}

.category-pill.active {
  background: rgba(185, 127, 151, 0.14);
  border-color: var(--gold);
  color: #2d2b2c;
  font-weight: 600;
}

.category-pill[data-pill='all'].active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

.view-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.view-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.view-btn.active {
  border-color: var(--gold);
  background: rgba(185, 127, 151, 0.12);
}

.icon-grid {
  width: 18px;
  height: 18px;
  display: grid;
  gap: 2px;
}

.icon-grid::before,
.icon-grid::after {
  content: '';
}

.icon-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.icon-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.icon-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.icon-grid {
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size: 3px 3px;
  background-repeat: no-repeat;
  background-position:
    0 0, 7px 0, 14px 0, 21px 0,
    0 7px, 7px 7px, 14px 7px, 21px 7px,
    0 14px, 7px 14px, 14px 14px, 21px 14px,
    0 21px, 7px 21px, 14px 21px, 21px 21px;
  color: var(--text);
  transform: scale(0.85);
}

#product-grid.view-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#product-grid.view-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#product-grid.view-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.listing-card .product-info {
  padding: 0.85rem 0.95rem 1rem;
}

.listing-thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #f6f1f3;
}

.listing-slide-wrap {
  display: block;
  width: 100%;
  height: 100%;
}

.listing-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 160ms ease;
}

.listing-slide.active {
  opacity: 1;
}

.listing-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(58, 58, 58, 0.65);
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

.listing-nav.prev {
  left: 0.6rem;
}

.listing-nav.next {
  right: 0.6rem;
}

.listing-actions {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 18, 0.4);
  z-index: 39;
}

.filter-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 430px);
  height: 100vh;
  background: var(--surface);
  border-left: 1px solid var(--line);
  z-index: 40;
  transform: translateX(102%);
  transition: transform 200ms ease;
  overflow-y: auto;
  padding: 1.1rem;
}

.filter-drawer.open {
  transform: translateX(0);
}

.filter-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.filter-drawer-head h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
}

.filter-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.filter-actions {
  position: sticky;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 253, 253, 0), rgba(255, 253, 253, 1) 20%);
  padding-top: 0.8rem;
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
}

body.drawer-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  #product-grid.view-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .products-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .products-toolbar-right {
    width: 100%;
    justify-content: space-between;
  }

  .category-pills {
    gap: 0.4rem;
  }

  #product-grid.view-2,
  #product-grid.view-3,
  #product-grid.view-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  #product-grid.view-2 {
    grid-template-columns: 1fr;
  }

  #product-grid.view-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #product-grid.view-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .listing-actions {
    flex-direction: column;
  }

  .listing-actions .btn {
    width: 100%;
  }

  #product-grid.view-3 .listing-card .product-info {
    padding: 0.7rem 0.75rem 0.8rem;
  }

  #product-grid.view-3 .product-info h3 {
    font-size: 0.92rem;
    line-height: 1.25;
  }

  #product-grid.view-3 .meta {
    font-size: 0.8rem;
  }

  #product-grid.view-3 .listing-actions {
    gap: 0.35rem;
  }

  #product-grid.view-3 .listing-actions .btn {
    padding: 0.62rem 0.7rem;
    font-size: 0.78rem;
  }

  #product-grid.view-4 .listing-card .product-info {
    padding: 0.45rem 0.45rem 0.55rem;
  }

  #product-grid.view-4 .product-info h3 {
    font-size: 0.8rem;
    line-height: 1.2;
    margin-bottom: 0.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  #product-grid.view-4 .product-info .meta,
  #product-grid.view-4 .listing-actions,
  #product-grid.view-4 .listing-nav,
  #product-grid.view-4 .product-flag {
    display: none;
  }

  #product-grid.view-4 .price-row {
    display: block;
  }

  #product-grid.view-4 .product-price {
    display: block;
    font-size: 0.8rem;
    line-height: 1.2;
  }
}

/* Products Premium Tune */
.products-toolbar {
  margin-bottom: 1.2rem;
}

.products-toolbar-left .section-title {
  letter-spacing: 0.01em;
}

.view-switch {
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.view-btn {
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.view-btn:hover {
  background: rgba(185, 127, 151, 0.12);
}

.view-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}

.listing-card {
  border-radius: 20px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(53, 40, 48, 0.16);
}

.listing-thumb {
  aspect-ratio: 5 / 6;
}

.listing-slide {
  transition: opacity 220ms ease;
}

.listing-nav {
  background: rgba(30, 27, 29, 0.6);
  backdrop-filter: blur(2px);
  width: 34px;
  height: 34px;
}

.listing-nav:hover {
  background: rgba(30, 27, 29, 0.78);
}

.listing-actions {
  margin-top: 0.8rem;
}

.listing-actions .btn {
  flex: 1;
  min-width: 120px;
}

.filter-overlay {
  backdrop-filter: blur(2px);
  background: rgba(25, 20, 23, 0.42);
}

.filter-drawer {
  border-left: 1px solid rgba(185, 127, 151, 0.35);
  box-shadow: -24px 0 48px rgba(27, 20, 23, 0.2);
  padding: 1.2rem 1.2rem 1.4rem;
}

.filter-drawer .filter-group h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.filter-drawer .filter-group select,
.filter-drawer .filter-group input {
  border-radius: 14px;
  min-height: 44px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.filter-drawer .filter-group select:hover,
.filter-drawer .filter-group input:hover {
  border-color: rgba(185, 127, 151, 0.48);
  background: rgba(255, 255, 255, 0.98);
}

.filter-drawer .filter-group select:focus,
.filter-drawer .filter-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(185, 127, 151, 0.14);
}

.filter-drawer .filter-group select option {
  background: #fff8fb;
  color: var(--text);
}

.filter-drawer .filter-group select option:hover,
.filter-drawer .filter-group select option:focus {
  background: rgba(185, 127, 151, 0.24);
  color: #2d2b2c;
}

.filter-drawer .check-row input[type='checkbox'],
.filter-drawer .check-row input[type='radio'] {
  accent-color: var(--gold);
}

.filter-actions {
  padding-top: 0.9rem;
}

.filter-actions .btn {
  min-width: 150px;
}

.price-range-card {
  --price-thumb-size: 22px;
  padding: 0.95rem 0 0.1rem;
}

.price-range-label {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.price-range-slider {
  position: relative;
  height: 42px;
  display: flex;
  align-items: center;
  touch-action: none;
}

.price-range-track,
.price-range-fill {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 999px;
}

.price-range-track {
  background: rgba(185, 127, 151, 0.22);
}

.price-range-fill {
  background: var(--gold);
  right: auto;
}

.price-range-handle {
  position: absolute;
  top: 50%;
  width: var(--price-thumb-size);
  height: var(--price-thumb-size);
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 6px 18px rgba(185, 127, 151, 0.28);
  transform: translate(-50%, -50%);
  cursor: grab;
}

.price-range-handle:active {
  cursor: grabbing;
}

.price-range-handle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(185, 127, 151, 0.18), 0 6px 18px rgba(185, 127, 151, 0.28);
}

.price-range-handle-min {
  z-index: 2;
}

.price-range-handle-max {
  z-index: 3;
}

/* Footer Premium */
.site-footer {
  margin-top: 4rem;
  padding: 0;
  border-top: 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(185, 127, 151, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(185, 127, 151, 0.09));
}

.footer-shell {
  padding: 2.4rem 0 1.3rem;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
}

.footer-brand-block {
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(185, 127, 151, 0.28);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 252, 0.72));
}

.footer-eyebrow {
  margin-bottom: 0.45rem;
}

.footer-brand-block h3 {
  margin: 0 0 0.45rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 2.7vw, 2.3rem);
  line-height: 1.05;
}

.footer-brand-block p {
  margin: 0;
  color: var(--muted);
}

.footer-contact-meta {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.9rem;
}

.footer-contact-meta a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-newsletter {
  padding: 1.15rem;
  border-radius: 18px;
}

.footer-newsletter h4 {
  margin: 0 0 0.3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
}

.footer-newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.footer-newsletter input {
  border-radius: 12px;
}

.footer-links-grid {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(58, 58, 58, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer-link-col h5 {
  margin: 0 0 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
}

.footer-link-col a {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.93rem;
  color: var(--muted);
}



.footer-link-col .footer-social-pill {
  display: inline-flex;
  margin-bottom: 0;
  color: var(--text);
}

.footer-social-grid {
  display: grid;
  gap: 0.45rem;
}

.footer-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0.35rem 0.75rem;
}

.footer-social-pill svg {
  width: 14px;
  height: 14px;
}

.footer-bottom-row {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(58, 58, 58, 0.12);
  font-size: 0.83rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .footer-top-row,
  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .footer-newsletter form {
    grid-template-columns: 1fr;
  }
}

/* Footer Classic Refresh */
.site-footer {
  background: #f4f1f2;
  margin-top: 3.2rem;
}

.footer-classic {
  padding: 1.8rem 0 1rem;
}

.footer-classic-top {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.1rem;
  align-items: start;
}

.footer-newsletter-inline h4,
.footer-social-inline h4 {
  margin: 0 0 0.65rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
}

.footer-newsletter-inline form {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-width: 620px;
}

.footer-newsletter-inline .newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
}

.footer-newsletter-inline .newsletter-row input {
  border-radius: 12px;
  min-height: 46px;
  padding-left: 0.88rem;
}

.footer-newsletter-inline .newsletter-consent {
  margin: 0;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-newsletter-inline .newsletter-consent input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 0.14rem;
  flex: 0 0 18px;
  accent-color: var(--gold);
}

.footer-newsletter-inline .newsletter-honeypot,
.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  white-space: nowrap;
}

.footer-newsletter-inline .btn {
  min-width: 140px;
}

.footer-social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer-social-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-social-pill svg {
  width: 14px;
  height: 14px;
}

.footer-classic-legal {
  margin-top: 0.95rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(58, 58, 58, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-classic-legal a {
  font-size: 0.94rem;
}

.footer-classic-bottom {
  margin-top: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(58, 58, 58, 0.14);
  font-size: 0.83rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-classic-bottom a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 900px) {
  .footer-classic-top {
    grid-template-columns: 1fr;
  }

  .footer-newsletter-inline form {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .footer-newsletter-inline .newsletter-row {
    grid-template-columns: 1fr;
  }
}

/* Form Modern Refresh */
.form-shell input:not([type='checkbox']):not([type='radio']),
.form-shell select,
.form-shell textarea,
.table-wrap input:not([type='checkbox']):not([type='radio']),
.table-wrap select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d9cfd4;
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  padding: 0.72rem 0.9rem;
  font-size: 0.96rem;
  line-height: 1.4;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  appearance: none;
}

.form-shell textarea {
  min-height: 136px;
  padding-top: 0.8rem;
}

.form-shell input::placeholder,
.form-shell textarea::placeholder,
.table-wrap input::placeholder {
  color: #9f959a;
}

.form-shell input:focus,
.form-shell select:focus,
.form-shell textarea:focus,
.table-wrap input:focus,
.table-wrap select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(185, 127, 151, 0.13);
}

.form-shell .check-row input[type='checkbox'],
.form-shell .check-row input[type='radio'] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0.12rem 0 0;
  flex: 0 0 18px;
  accent-color: var(--gold);
}

.form-shell .check-row {
  align-items: flex-start;
  gap: 0.55rem;
}

.form-shell .btn {
  min-height: 46px;
}

/* Returns Hero Pill Fix */
body[data-page='returns'] .page-hero p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

body[data-page='returns'] .page-hero .pill-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.5rem 1rem;
  line-height: 1;
  vertical-align: middle;
}

@media (max-width: 640px) {
  .form-shell input:not([type='checkbox']):not([type='radio']),
  .form-shell select,
  .form-shell textarea,
  .table-wrap input:not([type='checkbox']):not([type='radio']),
  .table-wrap select {
    min-height: 46px;
    font-size: 0.94rem;
  }
}

@media (max-width: 860px) {
  .returns-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .returns-table,
  .returns-table thead,
  .returns-table tbody,
  .returns-table tr,
  .returns-table th,
  .returns-table td {
    display: block;
    width: 100%;
  }

  .returns-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(100%);
    white-space: nowrap;
  }

  .returns-item-row {
    padding: 0.9rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(58, 58, 58, 0.06);
  }

  .returns-item-row + .returns-item-row {
    margin-top: 0.8rem;
  }

  .returns-table td {
    min-width: 0;
    padding: 0;
    border: 0;
  }

  .returns-table td + td {
    margin-top: 0.75rem;
  }

  .returns-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--muted);
  }

  .returns-table td[data-label='Művelet'] {
    margin-top: 0.95rem;
  }

  .returns-table td[data-label='Művelet']::before {
    display: none;
  }

  .returns-table .remove-row {
    width: 100%;
  }
}

.account-auth-section {
  padding-top: 1rem;
}

.account-auth-card {
  max-width: 680px;
  margin-inline: auto;
}

.account-auth-title {
  font-size: clamp(1.8rem, 4vw, 2rem);
}

.account-auth-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.account-auth-actions .btn {
  width: 100%;
}

.account-auth-note {
  margin-top: 1rem;
}

/* Responsive hardening */
@media (max-width: 1180px) {
  :root {
    --header-height: 86px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .logo-name {
    display: none;
  }

  .logo img {
    height: 60px;
  }

  .nav-row {
    gap: 0.55rem;
  }

  .nav-icons {
    gap: 0.35rem;
  }

  .mobile-nav {
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
    top: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .products-toolbar-left,
  .products-toolbar-right {
    width: 100%;
    flex-wrap: wrap;
  }

  .products-toolbar-right {
    justify-content: flex-start;
  }

  .filter-actions .btn {
    min-width: 0;
    width: 100%;
  }

  .cart-line {
    grid-template-columns: 88px minmax(0, 1fr) auto;
    gap: 0.7rem;
    align-items: start;
  }

  .cart-line img {
    width: 88px;
    height: 108px;
  }

  .qty-wrap button {
    min-width: 30px;
    min-height: 30px;
  }
}
