
:root {
  --paper: #efe7dc;
  --paper-soft: #fbf6ee;
  --ink: #211f1c;
  --muted: #7d746b;
  --clay: #9a6a52;
  --clay-dark: #754b3c;
  --olive: #6d7357;
  --sand: #d7c7b5;
  --line: rgba(33, 31, 28, .12);
  --white: #fffaf2;
  --radius: 30px;
  --shadow: 0 34px 90px rgba(39, 30, 22, .14);
}

* { box-sizing: border-box; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(154,106,82,.16), transparent 30%),
    radial-gradient(circle at 86% 28%, rgba(109,115,87,.12), transparent 26%),
    var(--paper);
  font: 400 16px/1.65 "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(33,31,28,.09) .55px, transparent .55px);
  background-size: 6px 6px;
  opacity: .25;
}
body.menu-open { overflow: hidden; }
::selection { color: var(--white); background: var(--ink); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  top: 18px;
  left: 3vw;
  right: 3vw;
  z-index: 30;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 16px 0 20px;
  border: 1px solid rgba(33, 31, 28, .1);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,250,242,.82), rgba(243,234,221,.7));
  backdrop-filter: blur(24px) saturate(1.1);
  box-shadow: 0 18px 70px rgba(37, 28, 21, .1);
  transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: rgba(251, 248, 243, .92);
  box-shadow: 0 18px 60px rgba(37, 28, 21, .12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  transform: rotate(28deg);
}
.brand-mark i {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid var(--clay-dark);
}
.brand-mark i:nth-child(1) { left: 4px; top: 3px; }
.brand-mark i:nth-child(2) { right: 2px; top: 9px; }
.brand-mark i:nth-child(3) { left: 7px; bottom: 3px; }
.brand-text {
  font-weight: 800;
  letter-spacing: -.06em;
  font-size: 21px;
}
.brand-text span { color: var(--clay); }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: #534c46;
  font-size: 13px;
  font-weight: 700;
}
.nav a {
  position: relative;
  transition: color .25s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover { color: var(--clay-dark); }
.nav a:hover::after { transform: scaleX(1); }
.mobile-cart-link { display: none; }

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(33,31,28,.16);
  font-weight: 850;
  font-size: 14px;
  letter-spacing: -.01em;
  cursor: pointer;
  isolation: isolate;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.button::after {
  content: "\2192";
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-left: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  font-size: 13px;
  transition: transform .25s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(33,31,28,.12);
}
.button:hover::after { transform: translateX(3px); }
.button-dark {
  color: var(--white);
  background: linear-gradient(135deg, #25211d, #0f0e0d);
  border-color: var(--ink);
}
.button-dark:hover { background: linear-gradient(135deg, #302a25, #12100f); }
.hero .button-dark {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(255,255,255,.72);
}
.hero .button-dark:hover { background: #fff; }
.button-light,
.button-ghost {
  color: var(--ink);
  background: rgba(255,250,242,.62);
}
.button-light:hover,
.button-ghost:hover { border-color: var(--clay); color: var(--clay); }
.cart-toggle span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  margin-left: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--clay), var(--clay-dark));
  border-radius: 999px;
  font-size: 12px;
}
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.account-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(33,31,28,.12);
  border-radius: 999px;
  background: rgba(255,250,242,.58);
  color: var(--clay-dark);
  font-size: 13px;
  font-weight: 900;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.account-link:hover {
  transform: translateY(-2px);
  border-color: rgba(117,75,60,.34);
  background: rgba(255,250,242,.9);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: transform .25s ease;
}
.menu-toggle span + span { margin-top: 7px; }

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding: 140px 6vw 72px;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 118px 3vw 28px;
  z-index: -1;
  border-radius: 48px;
  background:
    linear-gradient(90deg, rgba(28, 24, 21, .82) 0%, rgba(28, 24, 21, .54) 36%, rgba(28, 24, 21, .12) 72%),
    radial-gradient(circle at 18% 80%, rgba(167, 120, 95, .36), transparent 34%);
  pointer-events: none;
}
.hero-copy,
.hero-image { position: relative; z-index: 1; }
.hero-copy {
  max-width: 760px;
  padding: clamp(24px, 4vw, 52px);
  color: var(--white);
}
.hero .eyebrow { color: #e1b49a; }
.hero .lead {
  max-width: 610px;
  color: rgba(255,250,244,.82);
  text-shadow: 0 1px 20px rgba(0,0,0,.22);
}
.hero .button-light {
  color: var(--white);
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.32);
  backdrop-filter: blur(16px);
}
.hero .button-light:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.72);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.045em;
}
h1 { font-size: clamp(58px, 8vw, 126px); }
h2 { font-size: clamp(38px, 5.5vw, 76px); }
h3 { font-size: 30px; }
.lead {
  max-width: 600px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}
.hero-image {
  position: absolute;
  inset: 118px 3vw 28px;
  z-index: 0;
  overflow: hidden;
  min-height: auto;
  border-radius: 48px;
  box-shadow: 0 38px 110px rgba(39, 30, 22, .18);
}
.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center right;
  transition: transform 1.3s cubic-bezier(.2,.8,.2,1);
}
.hero-image:hover img { transform: scale(1.035); }

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: 96svh;
  padding: 130px 6vw 64px;
  isolation: isolate;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 112px 3vw 34px;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 46px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.9), transparent 28%),
    linear-gradient(135deg, rgba(255,250,242,.9), rgba(230,213,196,.72));
  box-shadow: 0 34px 100px rgba(56,39,27,.12);
}
.home-hero-copy {
  max-width: 760px;
  padding: clamp(18px, 2.8vw, 40px);
}
.home-hero h1 {
  max-width: 820px;
  font-size: clamp(56px, 8vw, 118px);
}
.home-hero .lead {
  max-width: 590px;
}
.home-hero-showcase {
  position: relative;
  display: grid;
  gap: 16px;
}
.hero-product-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 58vh, 680px);
  border-radius: 40px;
  box-shadow: 0 34px 96px rgba(48,34,25,.2);
}
.hero-product-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.hero-product-card:hover img { transform: scale(1.035); }
.hero-product-card span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  color: var(--white);
  background: rgba(28,24,21,.34);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 800;
}
.hero-note-card {
  position: absolute;
  left: -34px;
  bottom: 42px;
  width: min(230px, 50%);
  padding: 24px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 28px;
  background: rgba(255,250,242,.84);
  box-shadow: 0 22px 60px rgba(48,34,25,.16);
  backdrop-filter: blur(18px);
}
.hero-note-card strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  line-height: 1;
}
.hero-note-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.home-strip {
  display: flex;
  gap: 12px;
  overflow: auto;
  padding: 16px 6vw;
  border-block: 1px solid var(--line);
  background: rgba(255,250,242,.5);
}
.home-strip span {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid rgba(154,106,82,.18);
  border-radius: 999px;
  color: #6c5d52;
  background: rgba(255,250,242,.65);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.home-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: clamp(64px, 8vw, 110px);
  padding-bottom: clamp(48px, 7vw, 90px);
}
.service-tile {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(33,31,28,.1);
  border-radius: 30px;
  background: rgba(255,250,242,.62);
  box-shadow: 0 18px 50px rgba(45,35,27,.05);
}
.service-tile span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
}
.service-tile h2 {
  font-size: clamp(28px, 2.8vw, 42px);
}
.service-tile p {
  margin: 16px 0 0;
  color: var(--muted);
}
.home-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.home-section-head h2 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 72px);
}
.home-featured-products {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 18px;
}
.home-product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(33,31,28,.1);
  border-radius: 32px;
  background: var(--paper-soft);
  box-shadow: 0 18px 54px rgba(45,35,27,.07);
}
.home-product-card:first-child {
  grid-row: span 2;
}
.home-product-card img {
  width: 100%;
  aspect-ratio: 1 / .82;
  object-fit: cover;
  transition: transform .85s cubic-bezier(.2,.8,.2,1);
}
.home-product-card:first-child img {
  aspect-ratio: 1 / 1.18;
}
.home-product-card:hover img {
  transform: scale(1.045);
}
.home-product-body {
  padding: 18px;
}
.home-product-body span {
  color: var(--olive);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-product-body h3 {
  margin-top: 8px;
  font-size: clamp(26px, 2.2vw, 34px);
}
.home-product-body p {
  margin: 12px 0 0;
  color: var(--clay);
  font-weight: 900;
}
.home-custom {
  padding-top: 40px;
  padding-bottom: 40px;
}
.custom-panel {
  display: grid;
  gap: 18px;
  padding: clamp(30px, 5vw, 64px);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(35,31,28,.92), rgba(72,50,37,.88)),
    var(--ink);
  color: var(--white);
  box-shadow: 0 30px 90px rgba(42,30,22,.18);
}
.custom-panel h2 {
  max-width: 820px;
}
.custom-panel p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255,250,242,.76);
  font-size: 18px;
}
.custom-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.custom-points span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,250,242,.82);
  font-size: 13px;
  font-weight: 800;
}
.home-prices {
  padding-top: clamp(54px, 7vw, 96px);
  background: #eee5da;
}
.compact-prices {
  margin-top: 0;
}

/* Homepage polish: keep the dramatic hero, but make the rest lighter and less boxed. */
.home-services {
  gap: 0;
  padding-top: 54px;
  padding-bottom: 36px;
  border-block: 1px solid rgba(33,31,28,.08);
}
.service-tile {
  min-height: auto;
  padding: 22px 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.service-tile + .service-tile {
  border-left: 1px solid rgba(33,31,28,.1);
}
.service-tile span {
  margin-bottom: 18px;
}
.service-tile h2 {
  font-size: clamp(25px, 2.25vw, 36px);
}
.service-tile p {
  max-width: 360px;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.55;
}
.home-products {
  padding-top: 58px;
  padding-bottom: 58px;
}
.home-section-head {
  margin-bottom: 24px;
}
.home-section-head h2 {
  font-size: clamp(34px, 4.2vw, 60px);
}
.home-featured-products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.home-product-card,
.home-product-card:first-child {
  grid-row: auto;
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(45,35,27,.06);
}
.home-product-card img,
.home-product-card:first-child img {
  aspect-ratio: 1 / 1;
}
.home-product-body {
  padding: 13px 14px 15px;
}
.home-product-body h3 {
  margin-top: 6px;
  font-size: clamp(20px, 1.5vw, 26px);
}
.home-product-body p {
  margin-top: 7px;
}
.home-custom {
  padding-top: 18px;
  padding-bottom: 36px;
}
.custom-panel {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 32px;
}
.custom-panel p:not(.eyebrow) {
  font-size: 16px;
}
.home-prices {
  padding-top: 48px;
  padding-bottom: 62px;
}
.compact-prices .price-pill {
  padding: 20px;
  box-shadow: none;
}
.contact {
  padding-top: 70px;
  padding-bottom: 80px;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #eadfD2;
  color: var(--ink);
}
.marquee div {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee span {
  padding: 19px 36px;
  color: rgba(35,35,35,.72);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: clamp(80px, 10vw, 150px) 6vw; }
.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.intro-card {
  min-height: 285px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, .58);
}
.intro-card span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--clay);
  font-weight: 800;
  font-size: 12px;
}
.intro-card h2 { font-size: clamp(28px, 3vw, 42px); }
.intro-card p { margin: 18px 0 0; color: var(--muted); }

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 30px;
  margin-bottom: 46px;
}
.section-title h2 { max-width: 850px; }
.section-title.compact { display: block; max-width: 720px; }
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 18px;
  color: var(--clay);
  border: 1px solid rgba(167,120,95,.35);
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
  box-shadow: 0 16px 50px rgba(45, 35, 27, .06);
}
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--sand);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.8,.2,1), filter .4s ease;
}
.product-card:hover .product-media img {
  transform: scale(1.055);
  filter: saturate(1.05);
}
.product-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}
.product-tag {
  margin: 0 0 10px;
  color: var(--olive);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.product-card h3 { font-size: clamp(24px, 2.1vw, 28px); }
.product-card p:not(.product-tag) {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.product-footer span { font-weight: 800; }
.product-footer a {
  color: var(--clay);
  font-weight: 800;
  font-size: 13px;
}
.featured-products .product-card > div {
  min-height: 142px;
}
.featured-products .product-card p:not(.product-tag) {
  display: none;
}
.featured-products .product-footer {
  margin-top: 16px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(167,120,95,.14), transparent 30%),
    #f0e7dc;
  color: var(--ink);
}
.split-image {
  overflow: hidden;
  min-height: 500px;
  border-radius: 38px;
  box-shadow: var(--shadow);
}
.split-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.8,.2,1);
}
.split-image:hover img { transform: scale(1.04); }
.split-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}
.mini-stats {
  display: grid;
  gap: 13px;
  margin-top: 34px;
}
.mini-stats span {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(35,35,35,.14);
  color: var(--muted);
}
.mini-stats b { color: var(--ink); }

.prices { background: #eee5da; }
.price-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.price-pill {
  padding: 26px;
  border-radius: 24px;
  background: var(--paper-soft);
  border: 1px solid rgba(35,35,35,.08);
}
.price-pill span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.price-pill strong {
  display: block;
  margin: 18px 0 5px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}
.price-pill small { color: var(--muted); }

.contact {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.05fr;
  gap: clamp(34px, 7vw, 96px);
  background: var(--paper);
}
.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}
.contact-note {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  color: var(--olive);
  font-weight: 800;
  font-size: 14px;
}
.contact-note span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--clay);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}
.honey-field,
.form-submit-frame {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label {
  color: #6d665f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 16px 17px;
  color: var(--ink);
  background: #fffdf9;
  border: 1px solid rgba(35,35,35,.14);
  border-radius: 16px;
  outline: none;
  resize: vertical;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(167,120,95,.58);
  box-shadow: 0 0 0 4px rgba(167,120,95,.1);
}
.file-drop {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  padding: 18px;
  border: 1px dashed rgba(35,35,35,.28);
  border-radius: 18px;
  cursor: pointer;
}
.file-drop input { position: absolute; opacity: 0; pointer-events: none; }
.file-drop > span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--clay);
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
}
.file-drop strong { color: var(--ink); font-size: 14px; text-transform: none; }
.file-drop small { color: var(--muted); font-size: 12px; text-transform: none; }
.form-note { margin: -4px 0 0; color: var(--muted); text-align: center; font-size: 12px; }
.form-note.success { color: #3f7a4b; }
.form-note.error { color: #b64646; }
.contact-form button:disabled { opacity: .65; cursor: wait; }

.page-hero {
  padding: 168px 6vw 78px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 34%, rgba(255,250,242,.72), transparent 32%),
    radial-gradient(circle at 20% 12%, rgba(154,106,82,.16), transparent 36%);
}
.page-hero h1 {
  max-width: 1020px;
  margin: 0 auto;
  font-size: clamp(48px, 7vw, 104px);
}
.page-hero .lead { margin-inline: auto; }
.product-catalog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding-top: 18px;
}
.catalog-card .product-media { aspect-ratio: 1 / 1; }

.shop-page {
  background:
    radial-gradient(circle at 10% 2%, rgba(255,255,255,.94), transparent 34%),
    radial-gradient(circle at 68% 9%, rgba(170,118,83,.2), transparent 35%),
    #efe4d8;
}
.shop-page::before {
  opacity: .12;
  background-size: 9px 9px;
}
.shop-page .site-header,
.shop-page .site-footer {
  display: none;
}

.shop-hero {
  position: relative;
  overflow: hidden;
  display: none;
}
.shop-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: min(840px, 78vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(117,75,60,.42), transparent);
  transform: translateX(-50%);
}
.shop-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 9px;
  height: 9px;
  border: 1px solid var(--clay);
  border-radius: 50%;
  background: var(--paper);
  transform: translateX(-50%);
}
.shop-layout {
  display: grid;
  grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
  gap: clamp(28px, 3.8vw, 56px);
  align-items: start;
  width: min(1540px, calc(100vw - 48px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 0 58px;
}
.shop-sidebar {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 14px;
  min-height: auto;
  max-height: calc(100vh - 56px);
  overflow: auto;
  padding: 26px 22px;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,255,255,.98), transparent 38%),
    linear-gradient(155deg, rgba(255,252,247,.96), rgba(248,240,230,.9));
  box-shadow:
    0 24px 70px rgba(74,49,32,.12),
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -1px 0 rgba(151,105,78,.12);
}
.shop-panel-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.shop-panel-brand .brand-mark {
  width: 38px;
  height: 38px;
}
.shop-panel-brand .brand-mark i {
  width: 16px;
  height: 16px;
  border-width: 2px;
  border-color: #9a6544;
}
.shop-panel-brand .brand-mark i:nth-child(1) { left: 5px; top: 4px; }
.shop-panel-brand .brand-mark i:nth-child(2) { right: 3px; top: 10px; }
.shop-panel-brand .brand-mark i:nth-child(3) { left: 9px; bottom: 4px; }
.shop-panel-brand .brand-text {
  font-size: clamp(20px, 1.65vw, 28px);
  letter-spacing: -.075em;
  color: #171717;
}
.shop-panel-brand .brand-text span {
  color: #9a6544;
}
.search-box span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  color: var(--clay);
}
.search-box input,
.shop-toolbar select,
.variant-row select,
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid rgba(35,35,35,.14);
  border-radius: 16px;
  background: #fffdf9;
  color: var(--ink);
  outline: none;
}
.search-box input {
  height: 52px;
  padding: 0 16px 0 48px;
  border-radius: 999px;
  border-color: rgba(140,95,67,.18);
  background:
    linear-gradient(90deg, transparent 0 38px, rgba(140,95,67,.18) 38px 39px, transparent 39px),
    rgba(255,252,247,.78);
  box-shadow:
    inset 0 2px 8px rgba(82,50,30,.035),
    0 10px 24px rgba(74,49,32,.05);
  font-size: 15px;
  color: #7b6b60;
}
.search-box {
  position: relative;
}
.search-box::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 18px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid #9a6544;
  border-radius: 50%;
  transform: translateY(-50%);
}
.search-box::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 31px;
  top: calc(50% + 8px);
  width: 9px;
  height: 2px;
  border-radius: 4px;
  background: #9a6544;
  transform: rotate(45deg);
}
.search-box input::placeholder {
  color: rgba(87,76,68,.43);
}
.category-filters {
  display: grid;
  gap: 10px;
}
.category-filters button {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  border: 1px solid rgba(154,106,82,.18);
  border-radius: 999px;
  padding: 0 42px 0 18px;
  color: #171717;
  background: rgba(255,252,247,.72);
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.94),
    inset 0 -2px 8px rgba(95,61,39,.045),
    0 8px 18px rgba(74,49,32,.05);
  font-weight: 500;
  font-size: 16px;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), border-color .28s ease, background .28s ease, color .28s ease, box-shadow .28s ease;
}
.category-filters button::after {
  content: "\203A";
  position: absolute;
  right: 18px;
  top: 50%;
  color: #9a6544;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-54%);
}
.category-filters button.active {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255,255,255,.16), transparent 38%),
    linear-gradient(135deg, #c38355, #7c4729);
  border-color: transparent;
  transform: translateX(0);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.35),
    inset 0 -18px 34px rgba(58,30,17,.18),
    0 12px 24px rgba(108,61,35,.22);
}
.category-filters button.active::after { color: rgba(255,255,255,.75); }
.category-filters button:hover {
  border-color: rgba(154,106,82,.42);
  transform: translateY(-2px);
}
.category-icon {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: #9a6544;
  transform: scale(.68);
  transform-origin: center;
}
.category-filters button.active .category-icon { color: #fff; }
.category-icon::before,
.category-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  border-color: currentColor;
}
.category-grid::before,
.category-grid::after {
  width: 19px;
  height: 19px;
  border: 3px solid currentColor;
}
.category-grid::before { left: 1px; top: 1px; }
.category-grid::after { right: 1px; bottom: 1px; box-shadow: -17px 0 0 -3px transparent, -17px 0 0 0 currentColor; }
.category-vase::before {
  left: 8px;
  top: 1px;
  width: 20px;
  height: 34px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 4px 4px 16px 16px;
}
.category-vase::after {
  left: 11px;
  top: 0;
  width: 14px;
  height: 8px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}
.category-plant::before {
  left: 9px;
  bottom: 1px;
  width: 19px;
  height: 17px;
  border: 3px solid currentColor;
  border-radius: 0 0 5px 5px;
}
.category-plant::after {
  left: 16px;
  top: 2px;
  width: 13px;
  height: 24px;
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
  border-radius: 15px 0 0 0;
  transform: rotate(32deg);
}
.category-bowl::before,
.category-tray::before {
  left: 3px;
  top: 12px;
  width: 30px;
  height: 15px;
  border: 3px solid currentColor;
  border-top-width: 2px;
  border-radius: 50%;
}
.category-bowl::after {
  left: 7px;
  top: 18px;
  width: 22px;
  height: 13px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}
.category-tray::after {
  left: 7px;
  top: 21px;
  width: 22px;
  height: 6px;
  border-bottom: 3px solid currentColor;
}
.category-candle::before {
  left: 10px;
  bottom: 1px;
  width: 18px;
  height: 27px;
  border: 3px solid currentColor;
}
.category-candle::after {
  left: 16px;
  top: 0;
  width: 8px;
  height: 12px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}
.category-cosmetic::before {
  left: 8px;
  bottom: 1px;
  width: 20px;
  height: 25px;
  border: 3px solid currentColor;
  border-radius: 4px;
}
.category-cosmetic::after {
  left: 13px;
  top: 0;
  width: 10px;
  height: 11px;
  border: 3px solid currentColor;
  border-bottom: 0;
}
.category-pen::before {
  left: 15px;
  top: 2px;
  width: 8px;
  height: 30px;
  border: 3px solid currentColor;
  border-radius: 5px;
  transform: rotate(42deg);
}
.category-pen::after {
  left: 3px;
  bottom: 2px;
  width: 28px;
  border-bottom: 3px solid currentColor;
}
.category-frame::before {
  inset: 4px;
  border: 3px solid currentColor;
}
.category-frame::after {
  left: 13px;
  top: 9px;
  width: 11px;
  height: 18px;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
}
.category-lamp::before {
  left: 5px;
  top: 3px;
  width: 26px;
  height: 17px;
  border: 3px solid currentColor;
  border-radius: 10px 10px 3px 3px;
}
.category-lamp::after {
  left: 16px;
  top: 19px;
  width: 4px;
  height: 15px;
  background: currentColor;
  box-shadow: -8px 14px 0 -1px currentColor, 8px 14px 0 -1px currentColor;
}
.category-decor::before {
  inset: 5px;
  border: 3px solid currentColor;
  transform: rotate(45deg);
}
.category-decor::after {
  left: 16px;
  top: 2px;
  width: 3px;
  height: 32px;
  background: currentColor;
  transform: rotate(90deg);
}
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 10px 0 24px;
  padding: 0 2px;
}
.shop-toolbar p {
  margin: 0;
  color: #7b563f;
  font-size: 18px;
  font-weight: 700;
}
.shop-toolbar select {
  max-width: 245px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border-color: rgba(154,106,82,.2);
  background: rgba(255,252,247,.7);
  color: #7b563f;
}
.shop-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,251,245,.98), rgba(246,235,221,.94));
  box-shadow: 0 18px 52px rgba(74,49,32,.1), inset 0 1px 0 rgba(255,255,255,.95);
  transition: transform .32s cubic-bezier(.2,.8,.2,1), box-shadow .32s ease, border-color .32s ease;
}
.shop-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255,250,242,.58);
  border-radius: 18px;
  opacity: .0;
  transition: opacity .3s ease;
}
.shop-card:hover {
  transform: translateY(-8px);
  border-color: rgba(154,106,82,.25);
  box-shadow: 0 26px 70px rgba(74,49,32,.16);
}
.shop-card:hover::before { opacity: 1; }
.shop-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ddcfbf;
  border-radius: 22px 22px 0 0;
  margin: 0;
}
.shop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s cubic-bezier(.2,.8,.2,1);
}
.shop-card:hover .shop-media img {
  transform: scale(1.055);
}
.shop-card-body {
  display: grid;
  gap: 10px;
  min-height: 134px;
  padding: 16px 18px 18px;
}
.shop-card-body strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  max-width: 96%;
  min-height: 2.05em;
  font-size: clamp(21px, 1.55vw, 28px);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.product-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.product-fav {
  position: relative;
  width: 22px;
  height: 20px;
  color: #9a6544;
}
.product-fav::before,
.product-fav::after {
  content: "";
  position: absolute;
  top: 3px;
  width: 12px;
  height: 16px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  transform-origin: bottom center;
}
.product-fav::before { left: 3px; transform: rotate(-45deg); }
.product-fav::after { right: 3px; transform: rotate(45deg); }
.product-tag {
  color: #9a815e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-price {
  display: block;
  width: 100%;
  padding-top: 0;
  border-top: 0;
  color: #8b573a;
  font-family: "Caveat", "Segoe Script", cursive;
  font-size: clamp(28px, 2.05vw, 38px);
  font-style: italic;
  font-weight: 700;
  letter-spacing: .005em;
  white-space: nowrap;
}
.product-price::after {
  content: "";
}

/* Catalog restored to the compact premium layout used before the sidebar mockup experiment. */
.product-catalog {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.shop-layout {
  grid-template-columns: 255px minmax(0, 1fr);
  gap: 42px;
  width: auto;
  min-height: auto;
  padding: 18px 6vw 110px;
}
.shop-sidebar {
  top: 112px;
  gap: 22px;
  min-height: auto;
  max-height: none;
  overflow: visible;
  padding: 20px;
  border: 1px solid rgba(33,31,28,.1);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,250,242,.82), rgba(234,222,207,.55));
  box-shadow: 0 24px 70px rgba(45,35,27,.1);
}
.search-box span {
  position: static;
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 8px;
  overflow: visible;
  color: var(--clay);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.search-box input {
  height: 54px;
  padding: 0 16px;
  border-radius: 999px;
  border-color: rgba(35,35,35,.14);
  background: #fffdf9;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
  font-size: inherit;
}
.search-box::before,
.search-box::after {
  content: none;
}
.category-filters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.category-filters button {
  justify-content: space-between;
  gap: 10px;
  min-height: auto;
  border: 1px solid rgba(154,106,82,.22);
  border-radius: 999px;
  padding: 11px 13px 11px 16px;
  color: #75675e;
  background: rgba(255,250,242,.42);
  box-shadow: none;
  font-weight: 800;
  font-size: 12px;
}
.category-filters button::after {
  content: "\2197";
  position: static;
  color: rgba(33,31,28,.32);
  font-size: 11px;
  font-weight: inherit;
  transform: none;
}
.category-filters button.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--clay), var(--clay-dark));
  transform: translateX(4px);
  box-shadow: none;
}
.category-filters button:hover {
  transform: translateX(3px);
}
.shop-toolbar {
  margin-bottom: 26px;
}
.shop-toolbar p {
  color: var(--muted);
  font-size: 14px;
  font-weight: inherit;
}
.shop-toolbar select {
  max-width: 225px;
  height: 50px;
  padding: 0 16px;
  border-color: rgba(35,35,35,.14);
  background: rgba(255,250,242,.72);
  color: var(--ink);
}
.shop-card {
  border: 1px solid rgba(33,31,28,.09);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,250,242,.92), rgba(244,234,221,.86));
  box-shadow: 0 18px 58px rgba(45,35,27,.08), inset 0 1px 0 rgba(255,255,255,.8);
}
.shop-card::before {
  inset: 10px;
  border-radius: 20px;
}
.shop-card:hover {
  border-color: rgba(117,75,60,.28);
  box-shadow: 0 30px 80px rgba(45,35,27,.14);
}
.shop-media {
  aspect-ratio: 1 / 1;
  background: var(--sand);
  border-radius: 24px;
  margin: 8px;
}
.shop-card-body {
  gap: 11px;
  min-height: auto;
  padding: 10px 16px 18px;
}
.shop-card-body strong {
  max-width: 94%;
  min-height: 2.05em;
  font-size: clamp(20px, 1.55vw, 27px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.product-tag {
  color: var(--clay);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-price {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding-top: 13px;
  border-top: 1px solid rgba(33,31,28,.11);
  color: var(--clay);
  font-family: "Inter", system-ui, sans-serif;
  font-size: inherit;
  font-style: normal;
  font-weight: 900;
  letter-spacing: normal;
}
.product-price::after {
  content: "vezi produsul";
  color: var(--ink);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.variant-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}
.variant-row label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.variant-row select {
  height: 42px;
  margin-top: 5px;
  padding: 0 11px;
  font-size: 13px;
  text-transform: none;
}
.shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.shop-card-footer strong {
  font-size: 20px;
}
.shop-card-footer button {
  min-height: 40px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  font-weight: 900;
  font-size: 12px;
}
.product-detail,
.cart-page,
.checkout-page {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: 150px 6vw 100px;
}
.detail-gallery {
  position: sticky;
  top: 116px;
  overflow: hidden;
  padding: clamp(12px, 1.6vw, 22px);
  border: 1px solid rgba(33,31,28,.1);
  border-radius: 48px;
  background:
    radial-gradient(circle at 26% 20%, rgba(255,250,242,.95), transparent 34%),
    linear-gradient(145deg, rgba(243,232,218,.92), rgba(215,199,181,.5));
  box-shadow: 0 38px 100px rgba(45,35,27,.16);
}
.detail-gallery img {
  width: 100%;
  height: min(700px, 72vh);
  object-fit: contain;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(33,31,28,.035) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(0deg, rgba(33,31,28,.03) 1px, transparent 1px) 0 0 / 54px 54px,
    #f8f1e8;
}
.detail-info,
.order-summary,
.checkout-panel {
  border: 1px solid rgba(33,31,28,.1);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255,250,242,.88), rgba(239,228,213,.74));
  box-shadow: 0 24px 70px rgba(45,35,27,.1), inset 0 1px 0 rgba(255,255,255,.72);
}
.detail-info {
  padding: clamp(24px, 4vw, 44px);
}
.detail-info h1,
.cart-page h1,
.checkout-panel h1 {
  font-size: clamp(46px, 6vw, 86px);
}
.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(154,106,82,.24);
  border-radius: 999px;
  margin-bottom: 26px;
  color: var(--clay);
  font-weight: 900;
  font-size: 13px;
}
.detail-options,
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}
.detail-options {
  grid-template-columns: 1fr;
}
.detail-options label,
.checkout-panel label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.detail-options select,
.checkout-panel input,
.checkout-panel textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  border: 1px solid rgba(35,35,35,.14);
  border-radius: 18px;
  background: #fffdf9;
  color: var(--ink);
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.detail-options select:focus,
.checkout-panel input:focus,
.checkout-panel textarea:focus {
  border-color: rgba(117,75,60,.5);
  box-shadow: 0 0 0 4px rgba(154,106,82,.1);
}
.detail-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(154,106,82,.16);
  border-radius: 26px;
  background: rgba(255,250,242,.7);
}
.detail-buy strong {
  color: var(--clay-dark);
  font-size: 38px;
  letter-spacing: -.04em;
  white-space: nowrap;
}
.detail-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 30px;
  color: var(--muted);
  font-weight: 700;
}
.detail-meta span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--clay);
}
.cart-page-lines {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}
.cart-page-line {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(33,31,28,.1);
  border-radius: 30px;
  background: rgba(255,250,242,.78);
  box-shadow: 0 16px 50px rgba(45,35,27,.07);
}
.cart-page-line img {
  width: 112px;
  height: 112px;
  border-radius: 24px;
  object-fit: cover;
}
.cart-page-line strong,
.cart-page-line span,
.cart-page-line small {
  display: block;
}
.cart-page-line strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}
.cart-page-line span {
  color: var(--muted);
}
.cart-line-actions {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px;
  border: 1px solid rgba(33,31,28,.1);
  border-radius: 999px;
  background: rgba(255,250,242,.72);
}
.cart-line-actions button {
  min-width: 34px;
  height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.cart-line-actions button:hover {
  color: var(--white);
  background: var(--clay-dark);
  transform: translateY(-1px);
}
.order-summary,
.checkout-panel {
  padding: clamp(24px, 3vw, 34px);
}
.order-summary {
  position: sticky;
  top: 116px;
}
.order-summary h2 {
  margin-bottom: 22px;
  font-size: 42px;
}
.order-summary p,
.delivery-choice {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.summary-total {
  color: var(--clay-dark);
  font-size: 26px;
}
.order-summary small {
  display: block;
  margin: 14px 0 20px;
  color: var(--muted);
}
.order-summary .text-link {
  margin-top: 12px;
  width: 100%;
}
.disabled-link {
  opacity: .45;
  pointer-events: none;
}
.checkout-page {
  grid-template-columns: minmax(0, 1fr) 390px;
}
.checkout-panel {
  display: grid;
  gap: 18px;
}
.checkout-panel .button,
.order-summary .button {
  width: 100%;
}
.checkout-panel textarea {
  resize: vertical;
}
.delivery-choice {
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(154,106,82,.16);
  border-radius: 24px;
  background: rgba(255,250,242,.64);
}
.shipping-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Product page v26: reference-matched gallery, pricing and review stars. */
.pd-page { width: min(100% - 64px, 1500px); padding-top: 108px; }
.pd-breadcrumbs { display: flex; gap: 10px; align-items: center; margin: 0 8px 28px; color: var(--muted); font-size: 13px; }
.pd-breadcrumbs a { color: inherit; text-decoration: none; }
.pd-breadcrumbs i { font-size: 9px; }
.pd-hero-grid { grid-template-columns: minmax(0, 1.48fr) minmax(420px, .82fr); gap: 54px; }
.pd-gallery-card { display: block; padding: 0; overflow: hidden; border-radius: 22px; background: #fff; }
.pd-main-media { aspect-ratio: 1 / .82; border-radius: 0; background: #fff; cursor: zoom-in; }
.pd-main-media img { display: block; object-fit: cover; }
.pd-media-zoom { position: absolute; top: 20px; right: 20px; z-index: 2; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(117,75,60,.18); border-radius: 50%; background: rgba(255,255,255,.94); color: var(--clay-dark); cursor: zoom-in; box-shadow: 0 8px 24px rgba(70,45,30,.1); }
.pd-media-zoom i { font-size: 20px; }
.pd-discount-badge { position: absolute; top: 24px; left: 24px; z-index: 2; padding: 10px 14px; border-radius: 999px; background: var(--clay-dark); color: #fff; font: 800 17px/1 Inter,sans-serif; }
.pd-thumbs-shell { display: grid; grid-template-columns: 48px minmax(0,1fr) 48px; gap: 14px; align-items: center; padding: 18px 14px; border-top: 1px solid rgba(154,106,82,.12); background: #fff; }
.pd-thumbs { display: flex; gap: 12px; min-width: 0; overflow-x: auto; align-content: initial; scrollbar-width: none; }
.pd-thumbs::-webkit-scrollbar { display: none; }
.pd-thumbs button { flex: 0 0 88px; width: 88px; border-radius: 8px; background: #fff; }
.pd-thumbs img { object-fit: cover; }
.pd-thumb-arrow { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(117,75,60,.18); border-radius: 50%; background: #fff; color: var(--ink); cursor: pointer; }
.pd-info-card { padding: 16px 0 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.pd-info-card h1 { max-width: 100%; font-size: clamp(44px,4vw,68px); line-height: .98; }
.pd-short { font-size: 15px; }
.pd-rating { flex-wrap: nowrap; gap: 8px; }
.pd-stars { flex: 0 0 auto; gap: 5px; white-space: nowrap; }
.pd-stars span, .pd-review span > span { display: inline-grid; width: 16px; height: 18px; flex: 0 0 16px; place-items: center; }
.pd-stars i, .pd-review span > span i { display: inline-block !important; width: auto !important; height: auto !important; color: inherit; background: none !important; font-size: 16px; line-height: 1; }
.pd-options { grid-template-columns: 1fr; gap: 18px; }
.pd-options select { min-height: 54px; border-radius: 12px; }
.pd-price-row { display: flex; gap: 15px; align-items: baseline; margin-top: 26px; }
.pd-price { display: inline; margin: 0; font-size: 40px; }
.pd-price-row del { color: #9c9893; font-size: 22px; font-weight: 700; }
.pd-stock { margin-left: auto; padding: 9px 14px; border-radius: 999px; background: #f5f7f0; color: #568450; font-size: 13px; font-weight: 800; }
.pd-stock i { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: #55a051; }
.pd-delivery-line { margin: 10px 0 18px; color: var(--muted); font-size: 13px; }
.pd-add-full { width: 100%; min-height: 60px; border-radius: 14px; font-size: 16px; }
.pd-qty-favorite-row { display: grid; grid-template-columns: 132px minmax(0,1fr); gap: 12px; margin-top: 12px; }
.pd-favorite-wide { display: flex; gap: 10px; align-items: center; justify-content: center; min-height: 52px; border: 1px solid rgba(154,90,52,.58); border-radius: 14px; background: transparent; color: var(--ink); font-weight: 800; cursor: pointer; }
.pd-favorite-wide.active { color: #a64747; }
.pd-feature-strip { display: none; }
.pd-lower-grid { grid-template-columns: minmax(0,1.48fr) minmax(420px,.82fr); gap: 54px; margin-top: 28px; }
.pd-benefits { grid-template-columns: repeat(2,minmax(0,1fr)); }
.pd-image-modal-stage { position: relative; background: #fff; }
.pd-image-modal-nav { position: absolute; top: 50%; z-index: 4; display: grid; width: 52px; height: 52px; place-items: center; transform: translateY(-50%); border: 1px solid rgba(117,75,60,.18); border-radius: 50%; background: rgba(255,255,255,.94); color: var(--ink); cursor: pointer; }
.pd-image-modal-nav.previous { left: 18px; }
.pd-image-modal-nav.next { right: 18px; }

@media (max-width: 1040px) {
  .pd-page { width: min(100% - 32px,980px); }
  .pd-hero-grid, .pd-lower-grid { grid-template-columns: 1fr; gap: 26px; }
  .pd-info-card { padding: 10px 8px; }
}
@media (max-width: 780px) {
  .pd-page { width: calc(100% - 20px); padding-top: 92px; }
  .pd-breadcrumbs { margin-bottom: 16px; overflow: hidden; white-space: nowrap; }
  .pd-gallery-card { padding: 0; }
  .pd-main-media { aspect-ratio: 1; }
  .pd-thumbs-shell { grid-template-columns: 38px minmax(0,1fr) 38px; gap: 8px; padding: 12px 8px; }
  .pd-thumb-arrow { width: 36px; height: 36px; }
  .pd-thumbs { order: initial; }
  .pd-thumbs button { flex-basis: 64px; width: 64px; }
  .pd-info-card h1 { font-size: 42px; }
  .pd-rating { flex-wrap: wrap; }
  .pd-qty-favorite-row { grid-template-columns: 112px minmax(0,1fr); }
  .pd-favorite-wide span { font-size: 12px; }
  .pd-image-modal { padding: 8px; }
  .pd-image-modal-nav { width: 42px; height: 42px; }
}

/* Product details: keep purchase controls light, direct and touch-friendly. */
.detail-buy {
  margin-top: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  align-items: center;
}
.detail-buy .button { min-height: 48px; padding-inline: 22px; }
.detail-favorite {
  display: inline-grid;
  float: right;
  place-items: center;
  width: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 999px;
  color: var(--clay-dark);
}
.detail-favorite .product-svg-icon { width: 20px; height: 20px; }
.detail-favorite.active .product-svg-icon { fill: currentColor; }
.back-link {
  width: 42px;
  min-height: 42px;
  padding: 0;
  justify-content: center;
}
.back-link .product-svg-icon { width: 20px; height: 20px; }
.product-quick-add .product-svg-icon { width: 1em; height: 1em; stroke-width: 2.15; }

@media (max-width: 780px) {
  .product-favorite {
    width: 34px;
    height: 34px;
    font-size: 19px;
  }
  .product-favorite .product-svg-icon { width: 19px; height: 19px; }
  .product-quick-add { gap: 7px; }
  .detail-buy { display: flex; padding: 0; }
  .detail-buy strong { font-size: 28px; }
  .detail-buy .button { min-height: 44px; padding-inline: 17px; font-size: 12px; }
  .back-link { margin-bottom: 16px; }
  .product-mentions { margin-top: 20px; padding: 14px 15px; }
}
.payment-section {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}
.payment-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.payment-section-head .eyebrow { margin: 0; }
.payment-section-head > span { color: var(--muted); font-size: 12px; font-weight: 700; }
.payment-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.payment-method {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 15px 16px;
  border: 1px solid rgba(154,106,82,.18);
  border-radius: 20px;
  background: rgba(255,253,249,.72);
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.payment-method:hover,
.payment-method.active {
  border-color: rgba(117,75,60,.48);
  background: rgba(255,250,242,.96);
  box-shadow: 0 14px 34px rgba(45,35,27,.08);
  transform: translateY(-1px);
}
.payment-method input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--clay-dark);
}
.payment-method strong,
.payment-method small { display: block; }
.payment-method strong { color: var(--ink); font-size: 15px; }
.payment-method small { margin-top: 4px; color: var(--muted); font-size: 12px; font-weight: 700; line-height: 1.45; }
.payment-method-note {
  display: grid;
  gap: 3px;
  min-height: 42px;
  padding: 11px 14px;
  border-left: 3px solid rgba(133,88,66,.72);
  border-radius: 0 14px 14px 0;
  color: #6f6055;
  background: rgba(255,250,242,.55);
  font-size: 12px;
  line-height: 1.45;
}
.payment-method-note strong { color: var(--ink); }
.shipping-method {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(154,106,82,.18);
  border-radius: 24px;
  background: rgba(255,253,249,.72);
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.shipping-method:hover,
.shipping-method.active {
  border-color: rgba(117,75,60,.48);
  background: rgba(255,250,242,.96);
  box-shadow: 0 18px 48px rgba(45,35,27,.09);
  transform: translateY(-1px);
}
.shipping-method input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--clay-dark);
}
.shipping-method span,
.shipping-method strong,
.shipping-method small,
.shipping-method em {
  display: block;
}
.shipping-method strong {
  color: var(--ink);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}
.shipping-method small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}
.shipping-method em {
  grid-column: 2;
  color: var(--clay);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}
.easybox-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(154,106,82,.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(154,106,82,.12), transparent 38%),
    rgba(255,250,242,.76);
}
.easybox-panel[hidden] {
  display: none;
}
.locker-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}
.easybox-panel h3 {
  margin: 4px 0 8px;
  font-size: 25px;
}
.easybox-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.easybox-panel p b {
  color: var(--ink);
}
.easybox-panel small {
  grid-column: 1 / -1;
  color: var(--muted);
}
.easybox-panel small.error-text {
  color: #b64646;
  font-weight: 800;
}
.locker-status {
  max-width: 230px;
  padding: 10px 12px;
  border: 1px solid rgba(154,106,82,.2);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255,253,249,.66);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}
.locker-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.locker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.locker-actions .button {
  width: auto;
  min-height: 42px;
  padding-inline: 16px;
}
.locker-selected {
  display: inline-block;
  max-width: 100%;
  margin: 6px 0 0;
  padding: 0;
  color: var(--muted);
  line-height: 1.45;
}
.locker-selected.is-picked {
  padding: 12px 14px;
  border: 1px solid rgba(154,106,82,.24);
  border-radius: 18px;
  background: rgba(255,253,249,.84);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(45,35,27,.08);
}
.locker-selected b {
  display: block;
  margin-top: 4px;
}
.locker-picked-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--clay-dark);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.locker-search input,
.locker-manual-grid input,
.locker-manual-grid select {
  width: 100%;
  min-height: 48px;
  padding: 13px 15px;
  border: 1px solid rgba(35,35,35,.14);
  border-radius: 999px;
  background: #fffdf9;
  color: var(--ink);
  outline: none;
}
.locker-filter-menu {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(154,106,82,.18);
  border-radius: 24px;
  background: rgba(255,253,249,.78);
  box-shadow: 0 14px 40px rgba(45,35,27,.08);
}
.locker-filter-menu[hidden] {
  display: none;
}
.locker-filter-menu label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.locker-filter-menu input {
  width: 100%;
  min-height: 42px;
  padding: 11px 13px;
  border: 1px solid rgba(35,35,35,.12);
  border-radius: 999px;
  background: #fffdf9;
  color: var(--ink);
  outline: none;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 700;
}
.locker-filter-menu-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column: 1 / -1;
  gap: 10px;
}
.locker-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.locker-filters button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 6px 14px;
  border: 1px solid rgba(154,106,82,.2);
  border-radius: 999px;
  background: rgba(255,253,249,.8);
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}
.locker-filters button small {
  margin-left: 2px;
  color: inherit;
  font-size: 10px;
  opacity: .74;
}
.locker-filters button.active {
  border-color: var(--clay-dark);
  color: var(--clay-dark);
  background: rgba(255,253,249,.94);
  box-shadow: inset 0 0 0 2px rgba(124,81,62,.14);
}
.locker-filters button[data-locker-filter="all"].active {
  color: var(--white);
  background: var(--clay-dark);
  box-shadow: none;
}
.sameday-picker-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(222, 28, 36, .2);
  border-radius: 22px;
  background: rgba(255, 253, 249, .85);
}
.sameday-picker-card[hidden] {
  display: none;
}
.sameday-picker-card .carrier-logo {
  width: 112px;
  height: 40px;
}
.sameday-picker-card strong,
.sameday-picker-card p {
  display: block;
}
.sameday-picker-card p {
  margin: 4px 0 0;
  font-size: 13px;
}
.carrier-logo {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 92px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(154,106,82,.18);
  border-radius: 999px;
  background-color: #fffaf1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.fan-logo {
  border-color: rgba(210, 26, 36, .28);
  background-image: url("data:image/webp;base64,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");
  background-size: 82px auto;
}
.sameday-logo {
  border-color: rgba(222, 28, 36, .25);
  background-image: url("data:image/webp;base64,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");
  background-size: 86px auto;
}
.neutral-logo {
  width: 38px;
  background: rgba(35,31,28,.08);
}
.neutral-logo::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 5px;
  box-shadow: 8px 8px 0 -3px currentColor;
  color: var(--clay-dark);
}
.locker-map {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(154,106,82,.18);
  border-radius: 26px;
  background: #e9dfd1;
}
.locker-map.is-hidden {
  display: none;
}
.locker-panel.sameday-mode .locker-map {
  display: none !important;
}
.locker-results {
  display: grid;
  gap: 9px;
  max-height: 310px;
  overflow: auto;
  padding-right: 4px;
}
.locker-result {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(154,106,82,.15);
  border-radius: 20px;
  background: rgba(255,253,249,.76);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.locker-result .carrier-logo {
  width: 104px;
  height: 38px;
  border-radius: 14px;
  background-color: rgba(255,255,255,.9);
}
.locker-result .sameday-logo {
  background-size: 96px auto;
}
.locker-result .fan-logo {
  background-size: 94px auto;
}
.locker-result.active {
  border-color: var(--clay-dark);
  box-shadow: 0 12px 36px rgba(45,35,27,.1);
}
.locker-result b,
.locker-result small {
  display: block;
}
.locker-result-main {
  min-width: 0;
}
.locker-result small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.35;
}
.locker-result em {
  color: var(--clay);
  font-style: normal;
  font-weight: 900;
}
.locker-pending-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(154,106,82,.18);
  border-radius: 22px;
  background: rgba(255,253,249,.8);
}
.locker-pending-card strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}
.locker-pending-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.locker-marker {
  display: grid;
  place-items: center;
}
.locker-marker img {
  display: block;
  width: 30px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 3px 5px rgba(35,31,28,.12));
}
.locker-marker img.sameday-map-pin-image {
  position: static;
  display: block;
  width: 30px;
  height: 44px;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 3px 5px rgba(91, 14, 18, .24));
}
.sameday-map-pin {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(145deg, #ff3434, #ed151d);
  box-shadow: 0 3px 7px rgba(138, 20, 25, .34);
  transform: rotate(-45deg);
}
.sameday-map-pin::before,
.sameday-map-pin::after,
.sameday-map-pin i {
  position: absolute;
  content: "";
  display: block;
  border: 2px solid #fff;
}
.sameday-map-pin i {
  width: 14px;
  height: 14px;
  left: 8px;
  top: 8px;
  border-radius: 1px;
}
.sameday-map-pin::before {
  width: 11px;
  height: 11px;
  left: 11px;
  top: 5px;
  border-bottom: 0;
  transform: skewY(30deg);
}
.sameday-map-pin::after {
  width: 2px;
  height: 16px;
  left: 15px;
  top: 8px;
  border-width: 0 2px 0 0;
}

.order-result-wrap {
  width: min(960px, calc(100% - 32px));
  margin: 130px auto 72px;
}
.order-result-card {
  border: 1px solid rgba(114, 75, 52, .18);
  border-radius: 34px;
  padding: clamp(26px, 5vw, 52px);
  background: rgba(255, 252, 247, .88);
  box-shadow: 0 24px 70px rgba(67, 40, 24, .11);
}
.order-result-card h1 {
  max-width: 680px;
  margin: 8px 0 12px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: .94;
}
.order-result-intro { max-width: 620px; color: #7e7269; font-size: 18px; }
.order-result-number {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 32px 0;
  padding: 18px 20px;
  border-radius: 20px;
  background: #f3eadf;
}
.order-result-number span { color: #85756a; font-size: 13px; text-transform: uppercase; letter-spacing: .11em; }
.order-result-number strong { font-size: 25px; }
.order-result-number em { margin-left: auto; font-style: normal; font-weight: 700; color: #885b46; }
.order-review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.order-review-grid section { padding: 20px; border: 1px solid rgba(114, 75, 52, .14); border-radius: 20px; }
.order-review-grid h2 { margin: 0 0 14px; font-size: 20px; }
.order-review-grid p { display: flex; justify-content: space-between; gap: 12px; margin: 10px 0; color: #55483f; }
.order-review-grid small { display: block; color: #8e7f74; margin-top: 4px; }
.order-review-grid .order-address { display: block; line-height: 1.55; color: #7a6a5f; }
.order-result-total { display: flex; justify-content: space-between; align-items: baseline; padding: 24px 0; margin-bottom: 20px; border-top: 1px solid rgba(114, 75, 52, .18); font-size: 18px; }
.order-result-total strong { font-size: 30px; color: #845842; }
.order-result-card .text-link { display: inline-block; margin: 18px 0 0 18px; }
.bank-transfer-details {
  margin: 24px 0;
  padding: 22px;
  border: 1px solid rgba(133,88,66,.22);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,252,247,.95), rgba(245,235,221,.74));
}
.bank-transfer-details .eyebrow { margin: 0 0 5px; }
.bank-transfer-details h2 { margin: 0 0 16px; font-size: 23px; }
.bank-transfer-details > p:not(.eyebrow):not(.bank-transfer-reference) { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; margin: 0; border-top: 1px solid rgba(133,88,66,.14); color: #6b5b50; }
.bank-transfer-details strong { color: var(--ink); }
.bank-iban { letter-spacing: .04em; overflow-wrap: anywhere; }
.bank-transfer-reference { margin: 16px 0 0; color: #715f54; font-size: 14px; line-height: 1.55; }
@media (max-width: 720px) {
  .order-result-wrap { width: min(100% - 22px, 620px); margin: 98px auto 42px; }
  .order-result-card { border-radius: 24px; padding: 25px 20px; }
  .order-review-grid { grid-template-columns: 1fr; }
  .order-result-number em { margin-left: 0; width: 100%; }
  .order-result-card .button { width: 100%; }
  .order-result-card .text-link { display: block; margin: 18px 0 0; text-align: center; }
  .bank-transfer-details { padding: 18px; }
  .bank-transfer-details > p:not(.eyebrow):not(.bank-transfer-reference) { display: grid; gap: 4px; }
}
.locker-manual {
  border: 1px dashed rgba(154,106,82,.3);
  border-radius: 22px;
  padding: 14px;
  background: rgba(255,253,249,.52);
}
.locker-manual summary {
  cursor: pointer;
  color: var(--clay-dark);
  font-weight: 900;
}
.locker-manual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.locker-manual-grid button {
  grid-column: 1 / -1;
}
.checkout-summary {
  max-height: calc(100vh - 150px);
  overflow: auto;
}
.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(35,35,35,.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.cart-drawer {
  position: fixed;
  top: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  width: min(520px, calc(100vw - 28px));
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--paper-soft);
  box-shadow: 0 28px 100px rgba(28,24,21,.25);
  transform: translateX(calc(100% + 30px));
  transition: transform .32s cubic-bezier(.2,.8,.2,1);
}
.cart-open .cart-backdrop {
  opacity: 1;
  pointer-events: auto;
}
.cart-open .cart-drawer {
  transform: translateX(0);
}
.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.cart-head h2 {
  font-size: 44px;
}
.cart-close {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}
.cart-lines {
  display: grid;
  gap: 12px;
}
.cart-line {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.cart-line img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 15px;
}
.cart-line strong,
.cart-line span,
.cart-line small {
  display: block;
}
.cart-line span {
  color: var(--muted);
  font-size: 13px;
}
.cart-drawer .cart-line-actions {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cart-drawer .cart-line-actions button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 20px;
}
.empty-cart {
  margin: 0;
  padding: 28px;
  border-radius: 22px;
  background: #f1e8dd;
  color: var(--muted);
}
.account-nudge {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px 14px;
  align-items: center;
  margin: 24px 0 6px;
  padding: 16px 18px;
  border: 1px solid rgba(154,106,82,.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,.82), transparent 34%),
    rgba(255,250,242,.72);
  box-shadow: 0 16px 44px rgba(45,35,27,.06);
}
.account-nudge strong {
  color: var(--clay-dark);
  font-weight: 950;
}
.account-nudge span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.account-nudge a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--clay), var(--clay-dark));
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
.account-nudge.success {
  border-color: rgba(109,115,87,.2);
  background: rgba(246,250,239,.74);
}
.checkout-nudge {
  margin: 0;
}
.checkout-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.checkout-form.is-hidden {
  display: none;
}
.checkout-form label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.checkout-form input,
.checkout-form textarea {
  display: block;
  margin-top: 6px;
  padding: 13px 14px;
  resize: vertical;
}

.auth-page,
.account-page {
  min-height: 100svh;
  padding: 150px 6vw 90px;
}
.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(520px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.auth-copy {
  position: sticky;
  top: 130px;
  padding: clamp(24px, 4vw, 44px);
}
.auth-copy h1,
.account-hero h1 {
  font-size: clamp(54px, 7vw, 104px);
}
.auth-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}
.auth-panels {
  display: grid;
  gap: 18px;
}
.auth-form h2,
.account-card h2 {
  font-size: clamp(34px, 4vw, 52px);
}
.account-hero {
  max-width: 920px;
  margin-bottom: 38px;
}
.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}
.account-card {
  position: relative;
}
.logout-link {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.account-orders {
  display: grid;
  gap: 10px;
}
.account-order {
  overflow: hidden;
  border: 1px solid rgba(33,31,28,.1);
  border-radius: 20px;
  background: rgba(255,250,242,.72);
}
.account-order-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  background: transparent;
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
}
.account-order-head strong {
  display: block;
  color: var(--clay-dark);
  font-size: 15px;
}
.account-order-head em {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(154, 102, 75, .1);
  color: var(--clay-dark);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}
.account-order-head small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}
.account-order-detail {
  display: grid;
  gap: 10px;
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: 13px;
}
.account-order-detail p {
  margin: 0;
}
.account-order-items {
  display: grid;
  gap: 8px;
}
.account-order-items div {
  display: grid;
  gap: 2px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.55);
}
.account-order-items span {
  color: var(--ink);
  font-weight: 800;
}
.account-order-total {
  color: var(--ink);
}

.admin-body {
  background:
    radial-gradient(circle at 12% 8%, rgba(164, 100, 70, .12), transparent 32%),
    linear-gradient(135deg, #f6efe5 0%, #eadccd 100%);
}
.admin-page {
  padding: 132px 6vw 82px;
}
.admin-hero {
  max-width: 880px;
  margin-bottom: 32px;
}
.admin-hero h1 {
  margin: 0 0 14px;
  font: 700 clamp(58px, 9vw, 118px)/.88 "Playfair Display", Georgia, serif;
  letter-spacing: -.06em;
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.admin-stats article,
.admin-card {
  border: 1px solid rgba(88, 61, 45, .12);
  background: rgba(255, 250, 242, .72);
  box-shadow: 0 24px 70px rgba(68, 45, 32, .09);
  backdrop-filter: blur(18px);
}
.admin-stats article {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 28px;
}
.admin-stats span,
.admin-muted {
  color: var(--muted);
}
.admin-stats strong {
  font: 700 38px/1 "Playfair Display", Georgia, serif;
}
.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
  gap: 22px;
  align-items: start;
}
.admin-hero.compact {
  max-width: 980px;
  margin-bottom: 22px;
}
.admin-hero.compact h1 {
  font-size: clamp(48px, 7vw, 88px);
}
.admin-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 22px;
  padding: 10px;
  border: 1px solid rgba(88, 61, 45, .12);
  border-radius: 28px;
  background: rgba(255, 250, 242, .58);
  backdrop-filter: blur(18px);
}
.admin-tabs button {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}
.admin-tabs button.active {
  border-color: rgba(88, 61, 45, .16);
  background: var(--clay-dark);
  color: #fffaf2;
}

.admin-order-tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 18px;
  padding: 6px;
  overflow-x: auto;
  border: 1px solid rgba(88, 61, 45, .12);
  border-radius: 18px;
  background: rgba(244, 236, 226, .72);
  scrollbar-width: none;
}
.admin-order-tabs::-webkit-scrollbar { display: none; }
.admin-order-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}
.admin-order-tabs button.active {
  background: #fffaf2;
  color: var(--clay-dark);
  box-shadow: 0 8px 22px rgba(68, 45, 32, .08);
}
.admin-order-tabs button span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(124, 77, 53, .12);
  font-size: 12px;
}
.admin-order-tabs button.active span {
  background: var(--clay-dark);
  color: #fffaf2;
}
.admin-badge {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 8px;
  padding: 0 7px;
  border-radius: 999px;
  background: #1f1a16;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}
.admin-panel {
  display: grid;
  gap: 22px;
}
.admin-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
  gap: 22px;
  align-items: start;
}
.admin-vault {
  min-height: calc(100vh - 220px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .62fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}
.admin-vault h1 {
  margin: 0 0 18px;
  font: 700 clamp(64px, 10vw, 132px)/.86 "Playfair Display", Georgia, serif;
  letter-spacing: -.07em;
}
.admin-gate-form {
  max-width: 560px;
  margin-left: auto;
}
.admin-secret-box {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(88, 61, 45, .16);
  border-radius: 20px;
  background: rgba(255, 255, 255, .62);
}
.admin-secret-box strong {
  overflow-wrap: anywhere;
  color: var(--clay-dark);
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: .08em;
}
.admin-secret-box small {
  color: var(--muted);
}
.admin-card {
  border-radius: 34px;
  padding: clamp(22px, 3vw, 34px);
}
.admin-card-wide {
  grid-column: span 1;
}
.admin-card h2 {
  margin: 0 0 18px;
  font: 700 clamp(30px, 4vw, 48px)/.96 "Playfair Display", Georgia, serif;
  letter-spacing: -.04em;
}
.admin-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}
.admin-form {
  display: grid;
  gap: 14px;
}
.admin-form label {
  display: grid;
  gap: 8px;
  color: #7d6f64;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.admin-form input,
.admin-form textarea,
.admin-table select {
  width: 100%;
  border: 1px solid rgba(88, 61, 45, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .64);
  color: var(--ink);
  font: 700 14px/1.3 Inter, sans-serif;
  outline: 0;
}
.admin-form input,
.admin-table select {
  min-height: 50px;
  padding: 0 16px;
}
.admin-form textarea {
  resize: vertical;
  padding: 16px;
}
.admin-check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px !important;
}
.admin-check input {
  width: 18px;
  min-height: 18px;
}
.admin-table-wrap {
  overflow: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.admin-table th,
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(88, 61, 45, .1);
  text-align: left;
  vertical-align: middle;
}
.admin-table th {
  color: #8b6a58;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.admin-table td strong,
.admin-table td small {
  display: block;
}
.admin-payment {
  display: grid;
  gap: 5px;
  min-width: 158px;
}
.admin-payment small {
  margin: 0 !important;
  color: #8b6a58 !important;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.admin-payment b {
  font-size: 12px;
  color: var(--ink);
}
.admin-payment select {
  min-height: 40px;
  padding: 0 11px;
  font-size: 12px;
}
.cart-toggle .site-icon {
  width: 21px;
  height: 21px;
  stroke-width: 2;
}
.header-action-badge { display: none; }
.admin-table td small {
  margin-top: 4px;
  color: var(--muted);
}
.admin-products-list,
.admin-access-list {
  display: grid;
  gap: 12px;
}
.admin-product-line {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(88, 61, 45, .1);
  border-radius: 24px;
  background: rgba(255, 255, 255, .42);
}
.admin-product-line img {
  width: 74px;
  aspect-ratio: 1;
  border-radius: 18px;
  object-fit: cover;
}
.admin-product-line strong,
.admin-product-line small {
  display: block;
}
.admin-product-line small,
.admin-product-line span {
  color: var(--muted);
}
.admin-access-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .45);
  font-weight: 800;
}
.admin-access-list small {
  color: var(--clay-dark);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 46px 6vw;
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.footer-links { display: flex; gap: 22px; font-size: 14px; font-weight: 700; }
.site-footer small {
  grid-column: 1 / 4;
  color: #9a938c;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.hero .reveal,
.page-hero .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero,
  .home-hero,
  .split-section,
  .contact { grid-template-columns: 1fr; }
  .home-hero-showcase { max-width: 760px; }
  .hero-image,
  .hero-image img { min-height: 520px; }
  .intro-grid,
  .home-services,
  .product-grid,
  .price-row { grid-template-columns: repeat(2, 1fr); }
  .home-featured-products { grid-template-columns: 1fr 1fr; }
  .home-product-card:first-child { grid-row: auto; }
  .home-product-card:first-child img { aspect-ratio: 1 / 1; }
  .service-tile + .service-tile { border-left: 0; }
  .service-tile:nth-child(odd) { border-right: 1px solid rgba(33,31,28,.1); }
  .service-tile:nth-child(3) { border-top: 1px solid rgba(33,31,28,.1); }
  .product-catalog { grid-template-columns: repeat(3, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar {
    position: static;
    min-height: auto;
    max-height: none;
  }
  .category-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-detail,
  .cart-page,
  .checkout-page,
  .auth-shell,
  .account-grid,
  .admin-grid,
  .admin-two-col,
  .admin-vault { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .detail-gallery,
  .order-summary,
  .auth-copy { position: static; }
}

@media (max-width: 780px) {
  .site-header { top: 10px; left: 12px; right: 12px; height: 64px; }
  .brand-text { font-size: 18px; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: rgba(244,239,231,.97);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }
  .menu-open .nav { opacity: 1; pointer-events: auto; }
  .nav a { font: 600 42px/1 "Playfair Display", Georgia, serif; color: var(--ink); }
  .header-cta { display: none; }
  .header-actions {
    margin-left: auto;
    gap: 6px;
  }
  .account-link {
    min-height: 42px;
    padding: 0 12px;
  }
  .cart-toggle {
    min-height: 42px;
    padding: 0 12px;
  }
  .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero { padding: 120px 20px 54px; }
  .home-hero {
    min-height: auto;
    padding: 112px 20px 44px;
  }
  .home-hero::before {
    inset: 92px 12px 18px;
    border-radius: 32px;
  }
  .home-hero h1 { font-size: clamp(48px, 14vw, 76px); }
  .home-hero-copy { padding: 20px 8px; }
  .hero-product-card { min-height: 360px; border-radius: 30px; }
  .hero-note-card {
    position: static;
    width: auto;
  }
  h1 { font-size: clamp(52px, 16vw, 82px); }
  .hero-image,
  .hero-image img,
  .split-image,
  .split-image img { min-height: 420px; }
  .section { padding: 78px 20px; }
  .section-title { grid-template-columns: 1fr; }
  .intro-grid,
  .home-services,
  .home-featured-products,
  .product-grid,
  .price-row,
  .product-catalog,
  .field-row { grid-template-columns: 1fr; }
  .home-services {
    padding-top: 36px;
    padding-bottom: 24px;
  }
  .service-tile {
    padding: 22px 0;
  }
  .service-tile:nth-child(odd),
  .service-tile:nth-child(3) {
    border-right: 0;
    border-top: 0;
  }
  .service-tile + .service-tile {
    border-top: 1px solid rgba(33,31,28,.1);
  }
  .home-section-head { align-items: flex-start; flex-direction: column; }
  .category-filters { grid-template-columns: 1fr; }
  .shop-toolbar { align-items: stretch; flex-direction: column; }
  .shop-toolbar select { max-width: none; }
  .shop-card-body { align-items: flex-start; flex-direction: column; }
  .detail-options,
  .checkout-grid { grid-template-columns: 1fr; }
  .shipping-methods,
  .payment-methods,
  .easybox-panel {
    grid-template-columns: 1fr;
  }
  .locker-panel-head,
  .locker-search,
  .locker-filter-menu,
  .locker-manual-grid {
    grid-template-columns: 1fr;
  }
  .locker-actions .button {
    width: 100%;
  }
  .locker-filters {
    display: grid;
    grid-template-columns: 1fr;
  }
  .locker-filters button {
    justify-content: flex-start;
    width: 100%;
  }
  .locker-filters .carrier-logo {
    width: 112px;
    height: 34px;
  }
  .locker-filters .neutral-logo {
    width: 38px;
  }
  .locker-filter-menu-actions {
    grid-template-columns: 1fr;
  }
  .sameday-picker-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .sameday-picker-card .button {
    width: 100%;
  }
  .locker-result {
    grid-template-columns: 1fr auto;
  }
  .locker-result .carrier-logo {
    grid-column: 1 / -1;
    width: 126px;
  }
  .locker-status {
    max-width: none;
  }
  .locker-map {
    min-height: 300px;
    border-radius: 22px;
  }
  .locker-results {
    max-height: 260px;
  }
  .shipping-method {
    grid-template-columns: auto 1fr;
  }
  .shipping-method em {
    grid-column: 2;
  }
  .easybox-panel .button {
    width: 100%;
  }
  .cart-page-line { grid-template-columns: 76px 1fr; }
  .cart-page-line img { width: 76px; height: 76px; }
  .account-nudge {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .cart-line { grid-template-columns: 64px 1fr; }
  .cart-line img { width: 64px; height: 64px; }
  .cart-drawer .cart-line-actions { grid-column: 1 / 3; flex-direction: row; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer small { grid-column: auto; }
  .auth-page,
  .account-page {
    padding: 110px 20px 70px;
  }
  .admin-page {
    padding: 110px 20px 70px;
  }
  .admin-stats {
    grid-template-columns: 1fr;
  }
  .admin-card-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-product-line {
    grid-template-columns: 58px 1fr;
  }
  .admin-product-line span {
    grid-column: 2;
  }
}

.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
}
.chat-fab {
  position: relative;
  border: 0;
  border-radius: 999px;
  padding: 16px 20px;
  min-width: 92px;
  background: #221b17;
  color: #fffaf2;
  font-weight: 800;
  box-shadow: 0 20px 50px rgba(52, 37, 25, .28);
  cursor: pointer;
}
.chat-unread {
  position: absolute;
  top: -8px;
  right: -4px;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #0d0b09;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: 2px solid #f7efe5;
}
.chat-panel {
  width: min(380px, calc(100vw - 28px));
  height: min(560px, calc(100vh - 110px));
  border-radius: 30px;
  background: rgba(255,250,243,.96);
  border: 1px solid rgba(123,85,61,.14);
  box-shadow: 0 30px 80px rgba(67,46,31,.28);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.chat-panel header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(123,85,61,.12);
}
.chat-panel header strong,
.chat-panel header span {
  display: block;
}
.chat-panel header span {
  color: #8b7c70;
  font-size: 13px;
  margin-top: 3px;
}
.chat-panel header button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(123,85,61,.16);
  background: #fffaf2;
  cursor: pointer;
  font-weight: 900;
}
.chat-log {
  overflow: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-empty {
  margin: auto;
  text-align: center;
  color: #786a5f;
  max-width: 260px;
}
.chat-message {
  max-width: 86%;
  align-self: flex-start;
  display: grid;
  gap: 5px;
}
.chat-message span {
  display: block;
  border-radius: 18px 18px 18px 6px;
  background: #fff;
  border: 1px solid rgba(123,85,61,.12);
  padding: 11px 13px;
  color: #302822;
  line-height: 1.45;
}
.chat-message.own {
  align-self: flex-end;
}
.chat-message.own span {
  border-radius: 18px 18px 6px 18px;
  background: #9c6b52;
  color: #fff;
  border-color: transparent;
}
.chat-message.system span {
  background: #f3eadf;
  color: #6f594b;
}
.chat-message small {
  color: #a19286;
  font-size: 11px;
}
.chat-compose {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(123,85,61,.12);
}
.chat-compose input {
  flex: 1;
  border: 1px solid rgba(123,85,61,.18);
  background: #fff;
  border-radius: 999px;
  padding: 0 14px;
  min-width: 0;
}
.chat-compose button {
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  min-height: 44px;
  background: #221b17;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.chat-new-jump {
  justify-self: center;
  margin: -44px 0 8px;
  z-index: 2;
  border: 0;
  border-radius: 999px;
  background: #0d0b09;
  color: #fff;
  padding: 8px 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(34,27,23,.24);
}
.chat-closed {
  padding: 16px;
  color: #7e6f63;
  text-align: center;
  display: grid;
  gap: 10px;
}
.chat-closed button {
  border: 0;
  border-radius: 999px;
  background: #221b17;
  color: #fff;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
}
.admin-chat-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 18px;
}
.admin-chat-item {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(123,85,61,.14);
  background: rgba(255,255,255,.42);
  border-radius: 20px;
  padding: 14px;
  margin-top: 10px;
  cursor: pointer;
}
.admin-chat-item.active {
  border-color: #221b17;
  background: #fffaf2;
}
.admin-chat-item strong,
.admin-chat-item span,
.admin-chat-item small {
  display: block;
}
.admin-chat-item span,
.admin-chat-item small {
  color: #827266;
  margin-top: 4px;
}
.admin-chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.admin-chat-log {
  max-height: 480px;
  overflow: auto;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255,250,243,.56);
  display: grid;
  gap: 10px;
}
.admin-chat-message {
  border: 1px solid rgba(123,85,61,.12);
  border-radius: 18px;
  padding: 12px 14px;
  background: #fff;
}
.admin-chat-message.admin {
  background: #241d19;
  color: #fffaf2;
}
.admin-chat-message.system {
  background: #f1e7db;
}
.admin-chat-message p {
  margin: 6px 0;
}
.admin-chat-message small {
  color: #9a8b7e;
}
.admin-chat-compose {
  margin-top: 14px;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.admin-chat-compose .form-note {
  grid-column: 1 / -1;
}
.admin-search {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}
.admin-search span {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  color: #9a6b54;
  font-weight: 800;
}
.admin-search input {
  border: 1px solid rgba(88,61,45,.16);
  border-radius: 999px;
  background: #fffaf2;
  padding: 14px 18px;
  font: inherit;
}
.admin-order-row {
  cursor: pointer;
}
.admin-order-detail-row td {
  background: rgba(255,250,243,.68);
}
.admin-order-detail {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) 1.2fr;
  gap: 18px;
  padding: 16px;
}
.admin-order-detail h3 {
  margin: 0 0 10px;
}
.admin-order-product {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(88,61,45,.1);
}
.admin-order-product img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 14px;
}
.admin-order-product span,
.admin-order-product small {
  display: block;
}
.admin-order-total {
  margin-top: 12px;
}
.admin-gift-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #8a4f36;
  color: #fffaf2;
  font-size: 11px;
  font-weight: 900;
}
.admin-order-special {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0;
  padding: 12px 14px;
  border: 1px solid rgba(138, 79, 54, .22);
  border-radius: 14px;
  background: rgba(154, 102, 75, .1);
  color: var(--clay-dark);
  font-weight: 800;
}
.admin-order-note {
  margin-top: 12px;
  padding: 12px 14px;
  border-left: 3px solid var(--clay-dark);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, .52);
}
.admin-order-note p {
  margin: 5px 0 0;
  white-space: pre-wrap;
}
.admin-order-gift-line {
  grid-template-columns: 1fr auto;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(154, 102, 75, .08);
}

@media (max-width: 760px) {
  .chat-widget {
    right: 14px;
    bottom: 14px;
  }
  .admin-chat-layout {
    grid-template-columns: 1fr;
  }
  .admin-order-detail {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

body.admin-app-mode {
  min-width: 0;
  overflow-x: hidden;
  background: linear-gradient(145deg, #f7efe4 0%, #ead9c9 100%);
}

body.admin-app-mode .site-header {
  left: 10px;
  right: 10px;
  top: max(8px, env(safe-area-inset-top));
  min-height: 58px;
  padding: 8px 10px;
  border-radius: 24px;
}

body.admin-app-mode .brand-mark {
  width: 34px;
  height: 34px;
}

body.admin-app-mode .brand-text {
  font-size: 17px;
}

body.admin-app-mode .site-header .nav {
  display: none;
}

body.admin-app-mode .account-link {
  min-height: 42px;
  padding: 0 12px;
  font-size: 12px;
}

body.admin-app-mode .admin-page {
  width: 100%;
  padding: calc(84px + env(safe-area-inset-top)) 10px calc(88px + env(safe-area-inset-bottom));
}

body.admin-app-mode .admin-hero {
  margin-bottom: 12px;
}

body.admin-app-mode .admin-hero.compact h1,
body.admin-app-mode .admin-hero h1 {
  font-size: clamp(38px, 13vw, 58px);
  line-height: .9;
  letter-spacing: -.055em;
}

body.admin-app-mode .admin-hero .lead {
  font-size: 15px;
  line-height: 1.45;
}

body.admin-app-mode .admin-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

body.admin-app-mode .admin-stats article {
  padding: 12px;
  border-radius: 18px;
}

body.admin-app-mode .admin-stats strong {
  font-size: 26px;
}

body.admin-app-mode .admin-stats span {
  font-size: 12px;
}

body.admin-app-mode .admin-tabs {
  position: sticky;
  top: calc(74px + env(safe-area-inset-top));
  z-index: 20;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(86px, 1fr);
  gap: 7px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  margin: 0 -10px 12px;
  padding: 8px 10px;
  border-width: 1px 0;
  border-radius: 0;
  background: rgba(247, 239, 228, .92);
  box-shadow: 0 12px 28px rgba(68, 45, 32, .08);
}

body.admin-app-mode .admin-tabs::-webkit-scrollbar {
  display: none;
}

body.admin-app-mode .admin-tabs button {
  min-height: 42px;
  padding: 0 12px;
  white-space: nowrap;
  font-size: 12px;
}

body.admin-app-mode .admin-card {
  border-radius: 22px;
  padding: 16px;
}

body.admin-app-mode .admin-card h2 {
  font-size: clamp(25px, 8vw, 36px);
  margin-bottom: 12px;
}

body.admin-app-mode .admin-card-head {
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

body.admin-app-mode .admin-card-head .button,
body.admin-app-mode .admin-chat-actions .button {
  min-height: 40px;
  padding: 0 12px;
  font-size: 12px;
}

body.admin-app-mode .admin-two-col,
body.admin-app-mode .admin-vault,
body.admin-app-mode .admin-chat-layout,
body.admin-app-mode .admin-order-detail,
body.admin-app-mode .admin-client-history {
  grid-template-columns: 1fr;
  gap: 12px;
}

body.admin-app-mode .admin-vault {
  min-height: auto;
  padding-top: 24px;
}

body.admin-app-mode .admin-vault h1 {
  font-size: clamp(48px, 15vw, 72px);
}

body.admin-app-mode .admin-gate-form {
  max-width: none;
  margin: 0;
}

body.admin-app-mode .admin-form input,
body.admin-app-mode .admin-form textarea,
body.admin-app-mode .admin-table select {
  min-height: 46px;
  border-radius: 16px;
  font-size: 15px;
}

body.admin-app-mode .admin-table-wrap {
  overflow: visible;
}

body.admin-app-mode .admin-table {
  min-width: 0;
  border-collapse: separate;
  border-spacing: 0 10px;
}

body.admin-app-mode .admin-table thead {
  display: none;
}

body.admin-app-mode .admin-table tbody,
body.admin-app-mode .admin-table tr,
body.admin-app-mode .admin-table td {
  display: block;
  width: 100%;
}

body.admin-app-mode .admin-table tr {
  padding: 12px;
  border: 1px solid rgba(88, 61, 45, .12);
  border-radius: 18px;
  background: rgba(255, 250, 242, .7);
}

body.admin-app-mode .admin-table td {
  padding: 7px 0;
  border: 0;
}

body.admin-app-mode .admin-order-detail-row {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.admin-app-mode .admin-order-detail-row td {
  padding: 0;
}

body.admin-app-mode .admin-order-detail {
  padding: 12px;
  border-radius: 18px;
}

body.admin-app-mode .admin-order-product {
  grid-template-columns: 48px 1fr;
  gap: 10px;
}

body.admin-app-mode .admin-order-product strong {
  grid-column: 2;
}

body.admin-app-mode .admin-product-line {
  grid-template-columns: 58px 1fr;
  border-radius: 18px;
}

body.admin-app-mode .admin-product-line img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
}

body.admin-app-mode .admin-product-line > span {
  grid-column: 1 / -1;
}

body.admin-app-mode .admin-access-list span,
body.admin-app-mode .admin-mini-record {
  border-radius: 16px;
  padding: 12px;
}

body.admin-app-mode .admin-chat-list {
  max-height: 42vh;
  overflow: auto;
}

body.admin-app-mode .admin-chat-item {
  padding: 12px;
  border-radius: 16px;
}

body.admin-app-mode .admin-chat-room {
  min-height: 55vh;
}

body.admin-app-mode .admin-chat-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 8px;
}

body.admin-app-mode .admin-chat-log {
  height: min(52vh, 460px);
  max-height: none;
  padding: 10px;
  border-radius: 18px;
}

body.admin-app-mode .admin-chat-message {
  max-width: 92%;
  padding: 10px 12px;
  border-radius: 16px;
}

body.admin-app-mode .admin-chat-compose {
  position: sticky;
  bottom: env(safe-area-inset-bottom);
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding-top: 8px;
  background: rgba(247, 239, 228, .88);
}

body.admin-app-mode .admin-chat-compose input {
  min-width: 0;
}

body.admin-app-mode .admin-chat-compose .button {
  min-height: 46px;
  padding: 0 14px;
}

body.admin-app-mode .admin-search input {
  height: 48px;
}

body.admin-app-mode .admin-mobile-card {
  display: grid;
  gap: 12px;
}

body.admin-app-mode .admin-mobile-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

body.admin-app-mode .admin-mobile-head h2 {
  margin: 0;
}

body.admin-app-mode .admin-mobile-list {
  display: grid;
  gap: 10px;
}

body.admin-app-mode .admin-mobile-order,
body.admin-app-mode .admin-mobile-client {
  overflow: hidden;
  border: 1px solid rgba(88, 61, 45, .12);
  border-radius: 18px;
  background: rgba(255, 250, 242, .72);
}

body.admin-app-mode .admin-mobile-order-head {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  border: 0;
  background: transparent;
  padding: 12px;
  text-align: left;
  color: var(--ink);
}

body.admin-app-mode .admin-mobile-order-head span {
  min-width: 0;
}

body.admin-app-mode .admin-mobile-order-head strong,
body.admin-app-mode .admin-mobile-order-head small {
  display: block;
}

body.admin-app-mode .admin-mobile-order-head strong {
  overflow-wrap: anywhere;
  font-size: 15px;
}

body.admin-app-mode .admin-mobile-order-head small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

body.admin-app-mode .admin-mobile-order-head em {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 7px 9px;
  background: rgba(154, 102, 75, .12);
  color: var(--clay-dark);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

body.admin-app-mode .admin-mobile-order-head em small {
  margin: 2px 0 0;
  color: inherit;
  font-size: 9px;
  text-align: center;
  text-transform: uppercase;
}

body.admin-app-mode .admin-mobile-order-status {
  padding: 0 12px 12px;
}

body.admin-app-mode .admin-mobile-order-status select {
  width: 100%;
}

body.admin-app-mode .admin-payment {
  margin-top: 8px;
  min-width: 0;
}

body.admin-app-mode .admin-mobile-detail {
  display: grid;
  gap: 9px;
  padding: 12px;
  border-top: 1px solid rgba(88, 61, 45, .1);
  color: var(--muted);
  font-size: 13px;
}

body.admin-app-mode .admin-mobile-detail p {
  margin: 0;
}

body.admin-app-mode .admin-mobile-detail h3 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 14px;
}

body.admin-app-mode .admin-mobile-product {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 9px;
  align-items: center;
  padding: 9px;
  border-radius: 14px;
  background: rgba(255,255,255,.52);
}

body.admin-app-mode .admin-mobile-product img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 12px;
}

body.admin-app-mode .admin-mobile-product span,
body.admin-app-mode .admin-mobile-product small {
  display: block;
}

body.admin-app-mode .admin-mobile-product strong:last-child {
  grid-column: 2;
  color: var(--clay-dark);
  font-size: 12px;
}

body.admin-app-mode .admin-client-history {
  display: grid;
  gap: 10px;
}

body.admin-app-mode .admin-client-history section {
  min-width: 0;
}

body.admin-app-mode .admin-client-history h3 {
  margin: 0 0 8px;
  font-size: 14px;
}

body.admin-app-mode .admin-panel,
body.admin-app-mode .admin-card,
body.admin-app-mode .admin-mobile-order,
body.admin-app-mode .admin-mobile-client,
body.admin-app-mode .admin-chat-room,
body.admin-app-mode .admin-chat-list {
  max-width: 100%;
}

body.admin-app-mode * {
  box-sizing: border-box;
}

@media (orientation: landscape) and (max-height: 560px) {
  body.admin-app-mode .site-header {
    min-height: 50px;
    border-radius: 18px;
  }

  body.admin-app-mode .admin-page {
    padding-top: calc(66px + env(safe-area-inset-top));
  }

  body.admin-app-mode .admin-hero {
    display: none;
  }

  body.admin-app-mode .admin-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.admin-app-mode .admin-stats article {
    padding: 8px 10px;
  }

  body.admin-app-mode .admin-tabs {
    top: calc(58px + env(safe-area-inset-top));
    margin-bottom: 8px;
  }

  body.admin-app-mode .admin-chat-layout {
    grid-template-columns: minmax(210px, .42fr) minmax(0, .58fr);
    align-items: stretch;
  }

  body.admin-app-mode .admin-chat-list,
  body.admin-app-mode .admin-chat-room {
    max-height: calc(100vh - 142px);
    overflow: auto;
  }

  body.admin-app-mode .admin-chat-log {
    height: calc(100vh - 318px);
    min-height: 170px;
  }
}

@media (max-width: 430px) {
  body.admin-app-mode .brand-text {
    font-size: 15px;
  }

  body.admin-app-mode .account-link {
    padding: 0 10px;
  }

  body.admin-app-mode .admin-chat-actions {
    grid-template-columns: 1fr;
  }
}

/* Mobile-first public site polish.
   This layer intentionally changes only tablet/phone layouts, while leaving the desktop composition intact. */
@media (max-width: 920px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    background:
      radial-gradient(circle at 18% 0%, rgba(154,106,82,.13), transparent 28%),
      linear-gradient(180deg, #f5eee5 0%, #eadfD2 100%);
  }

  body::before {
    opacity: .12;
    background-size: 9px 9px;
  }

  .site-header {
    top: max(10px, env(safe-area-inset-top));
    left: 12px;
    right: 12px;
    height: 62px;
    padding: 0 58px 0 14px;
    gap: 8px;
    border-radius: 28px;
    background: rgba(255, 250, 242, .93);
    box-shadow: 0 14px 42px rgba(44, 33, 25, .12);
  }

  .brand {
    gap: 9px;
    min-width: 0;
    margin-right: auto;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
  }

  .brand-mark i {
    width: 13px;
    height: 13px;
  }

  .brand-text {
    font-size: 16px;
    letter-spacing: -.055em;
    white-space: nowrap;
  }

  .menu-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-grid;
    order: 3;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(33,31,28,.1);
    border-radius: 999px;
    background: rgba(255,250,242,.62);
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 96px 24px 32px;
    background: rgba(246, 239, 229, .98);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
  }

  .menu-open .nav {
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    padding: 16px 18px;
    border: 1px solid rgba(117,75,60,.12);
    border-radius: 24px;
    background: rgba(255,250,242,.7);
    font: 700 clamp(30px, 9vw, 46px)/1 "Playfair Display", Georgia, serif;
  }

  .nav a::after {
    display: none;
  }

  .header-actions {
    order: 2;
    margin-left: 0;
    gap: 6px;
    flex: 0 0 auto;
  }

  .account-link,
  .cart-toggle {
    min-height: 40px;
    padding: 0 10px;
    font-size: 12px;
  }

  .cart-toggle::after {
    display: none;
  }

  .cart-toggle span {
    min-width: 20px;
    height: 20px;
    margin-left: 5px;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .section {
    padding: 54px 18px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: .16em;
  }

  h1 {
    font-size: clamp(42px, 13.5vw, 68px);
    line-height: .95;
  }

  h2 {
    font-size: clamp(34px, 10vw, 52px);
    line-height: .98;
  }

  h3 {
    font-size: 25px;
  }

  .lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.55;
  }

  .button,
  .text-link {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
  }

  .hero {
    min-height: auto;
    padding: 92px 14px 20px;
    display: block;
  }

  .hero::before,
  .hero-image {
    inset: 92px 14px 20px;
    border-radius: 34px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(26,22,19,.82) 0%, rgba(26,22,19,.54) 48%, rgba(26,22,19,.18) 100%),
      radial-gradient(circle at 14% 82%, rgba(167,120,95,.34), transparent 36%);
  }

  .hero-image {
    position: relative;
    inset: auto;
    min-height: clamp(520px, 78svh, 720px);
    box-shadow: 0 24px 64px rgba(45,35,27,.18);
  }

  .hero-image img {
    min-height: clamp(520px, 78svh, 720px);
    object-position: 62% center;
  }

  .hero-copy {
    position: absolute;
    inset: auto 26px 48px;
    z-index: 2;
    width: calc(100% - 52px);
    max-width: none;
    padding: 0;
  }

  .hero .lead {
    max-width: 32rem;
    color: rgba(255,250,244,.86);
    font-size: 15.5px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
    max-width: 360px;
  }

  .home-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 18px 12px;
    border: 0;
  }

  .service-tile,
  .service-tile + .service-tile,
  .service-tile:nth-child(odd),
  .service-tile:nth-child(3) {
    padding: 20px;
    border: 1px solid rgba(33,31,28,.09);
    border-radius: 24px;
    background: rgba(255,250,242,.58);
  }

  .service-tile span {
    margin-bottom: 12px;
  }

  .service-tile p {
    max-width: none;
    font-size: 14px;
  }

  .home-section-head {
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
  }

  .home-featured-products {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .home-product-card,
  .home-product-card:first-child {
    border-radius: 22px;
  }

  .home-product-card img,
  .home-product-card:first-child img {
    aspect-ratio: 1 / 1;
  }

  .home-product-body {
    padding: 12px;
  }

  .home-product-body h3 {
    font-size: 19px;
    line-height: 1.02;
  }

  .home-product-body p {
    font-size: 13px;
  }

  .custom-panel {
    gap: 14px;
    padding: 24px;
    border-radius: 28px;
  }

  .custom-panel p:not(.eyebrow) {
    font-size: 15px;
  }

  .custom-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .price-row,
  .compact-prices {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .price-pill,
  .compact-prices .price-pill {
    padding: 18px;
    border-radius: 22px;
  }

  .price-pill strong {
    margin-top: 12px;
    font-size: 26px;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 52px 18px 76px;
  }

  .contact-copy p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 15.5px;
  }

  .contact-note {
    margin-top: 20px;
  }

  .contact-form {
    gap: 14px;
    padding: 18px;
    border-radius: 26px;
    box-shadow: 0 18px 54px rgba(45,35,27,.08);
  }

  .field-row,
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-form input,
  .contact-form textarea,
  .checkout-panel input,
  .checkout-panel textarea,
  .detail-options select,
  .shop-toolbar select,
  .search-box input {
    min-height: 48px;
    padding: 13px 14px;
    border-radius: 16px;
    font-size: 16px;
  }

  .file-drop {
    grid-template-columns: 40px 1fr;
    padding: 14px;
  }

  .file-drop span {
    width: 40px;
    height: 40px;
  }

  .page-hero {
    padding: 104px 18px 34px;
    text-align: left;
  }

  .page-hero h1 {
    margin: 0;
    font-size: clamp(40px, 12vw, 62px);
  }

  .page-hero .lead {
    margin-inline: 0;
  }

  .shop-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    padding: 0 14px 76px;
  }

  .shop-sidebar {
    position: static;
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: 28px;
    box-shadow: 0 16px 45px rgba(45,35,27,.08);
  }

  .category-filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .category-filters::-webkit-scrollbar {
    display: none;
  }

  .category-filters button {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 14px;
    scroll-snap-align: start;
    white-space: nowrap;
    transform: none !important;
  }

  .category-filters button::after {
    display: none;
  }

  .shop-toolbar {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
  }

  .shop-toolbar p {
    margin: 0;
  }

  .shop-toolbar select {
    width: 100%;
    max-width: none;
  }

  .product-catalog {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .shop-card {
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(45,35,27,.07);
  }

  .shop-card:hover {
    transform: none;
  }

  .shop-media {
    margin: 6px;
    border-radius: 18px;
  }

  .shop-card-body {
    gap: 8px;
    padding: 8px 10px 12px;
  }

  .shop-card-body strong {
    max-width: 100%;
    min-height: 2.15em;
    font-size: 19px;
    line-height: 1.03;
    overflow-wrap: anywhere;
  }

  .product-tag {
    font-size: 9px;
    letter-spacing: .1em;
  }

  .product-price {
    display: block;
    padding-top: 9px;
    font-size: 13px;
  }

  .product-price::after {
    display: none;
  }

  .product-detail,
  .cart-page,
  .checkout-page {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 96px 14px 72px;
  }

  .detail-gallery,
  .order-summary,
  .checkout-summary,
  .auth-copy {
    position: static;
  }

  .detail-gallery {
    padding: 8px;
    border-radius: 28px;
  }

  .detail-gallery img {
    height: auto;
    max-height: none;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    object-fit: contain;
    background: #f8f1e8;
  }

  .detail-info,
  .order-summary,
  .checkout-panel {
    padding: 20px;
    border-radius: 28px;
  }

  .detail-info h1,
  .cart-page h1,
  .checkout-panel h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .detail-buy {
    display: grid;
    gap: 14px;
    padding: 14px;
    border-radius: 22px;
  }

  .detail-buy strong {
    font-size: 30px;
  }

  .detail-meta {
    gap: 7px;
    margin-top: 22px;
    font-size: 14px;
  }

  .cart-page-line {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
    border-radius: 22px;
  }

  .cart-page-line img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }

  .cart-page-line strong {
    font-size: 21px;
  }

  .cart-line-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    width: 100%;
    border-radius: 18px;
  }

  .cart-line-actions button {
    flex: 1;
    min-height: 38px;
  }

  .order-summary h2 {
    font-size: 34px;
  }

  .order-summary p,
  .delivery-choice {
    gap: 10px;
  }

  .order-summary p span,
  .order-summary p strong {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .account-nudge {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 16px 0 4px;
    padding: 14px;
    border-radius: 20px;
  }

  .account-nudge a {
    width: 100%;
    min-height: 40px;
  }

  .auth-page,
  .account-page {
    padding: 96px 14px 70px;
  }

  .auth-shell,
  .account-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .auth-copy {
    padding: 8px 4px 0;
  }

  .auth-copy h1,
  .account-hero h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .auth-copy p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 16px;
  }

  .auth-panels {
    gap: 14px;
  }

  .auth-form h2,
  .account-card h2 {
    font-size: 34px;
  }

  .account-hero {
    margin-bottom: 18px;
  }

  .account-order-head {
    align-items: flex-start;
    padding: 12px;
  }

  .account-order-head strong {
    overflow-wrap: anywhere;
  }

  .account-order-head em {
    padding: 6px 8px;
    font-size: 11px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 34px 18px 86px;
    text-align: left;
  }

  .site-footer small {
    grid-column: auto;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-links a {
    padding: 10px 12px;
    border: 1px solid rgba(33,31,28,.1);
    border-radius: 999px;
    background: rgba(255,250,242,.48);
  }

  .chat-widget {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    max-width: calc(100vw - 24px);
  }

  .chat-fab {
    min-width: 70px;
    padding: 13px 16px;
  }

  .chat-panel {
    width: calc(100vw - 24px);
    height: min(72svh, 560px);
    max-height: calc(100svh - 92px);
    border-radius: 24px;
  }

  .chat-panel header {
    padding: 14px 16px;
  }

  .chat-log {
    padding: 12px;
  }

  .chat-message {
    max-width: 88%;
  }

  .chat-compose {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 10px;
  }

  .chat-compose input {
    min-width: 0;
    height: 44px;
    padding: 0 14px;
    font-size: 16px;
  }

  .chat-compose button {
    height: 44px;
    padding: 0 14px;
  }
}

@media (max-width: 520px) {
  .account-link {
    display: none;
  }

  .site-header {
    height: 58px;
    padding-right: 54px;
  }

  .hero {
    padding-inline: 10px;
  }

  .hero::before,
  .hero-image {
    border-radius: 28px;
  }

  .hero-copy {
    inset: auto 22px 42px;
  }

  .hero h1 {
    max-width: 7.2em;
    font-size: clamp(38px, 11vw, 52px);
    overflow-wrap: normal;
  }

  .hero h1 span {
    display: block;
  }

  .hero .lead {
    max-width: 310px;
    font-size: 14.5px;
  }

  .home-featured-products,
  .product-catalog {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .shop-card-body strong,
  .home-product-body h3 {
    font-size: 17px;
  }

  .product-price,
  .home-product-body p {
    font-size: 12px;
  }

  .section,
  .contact {
    padding-left: 14px;
    padding-right: 14px;
  }

  .shop-layout,
  .product-detail,
  .cart-page,
  .checkout-page,
  .auth-page,
  .account-page {
    padding-left: 10px;
    padding-right: 10px;
  }

  .detail-info,
  .order-summary,
  .checkout-panel,
  .contact-form,
  .custom-panel {
    padding: 16px;
  }
}

@media (max-width: 360px) {
  .brand-text {
    font-size: 14px;
  }

  .cart-toggle {
    padding-inline: 10px;
  }

  .product-catalog,
  .home-featured-products {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 921px) and (max-width: 1180px) {
  .product-catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-featured-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-layout {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 24px;
  }
}

@media (orientation: landscape) and (max-height: 540px) and (max-width: 920px) {
  .site-header {
    height: 54px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-image,
  .hero-image img {
    min-height: calc(100svh - 92px);
  }

  .hero-copy {
    left: 26px;
    right: auto;
    bottom: 30px;
    max-width: min(520px, 58vw);
  }

  .hero h1 {
    font-size: clamp(34px, 7vw, 56px);
  }

  .hero .lead {
    display: none;
  }

  .hero-actions {
    grid-template-columns: 1fr 1fr;
    max-width: 440px;
    margin-top: 18px;
  }

  .page-hero {
    padding-top: 78px;
  }

  .product-detail,
  .cart-page,
  .checkout-page,
  .auth-page,
  .account-page {
    padding-top: 78px;
  }

  .chat-panel {
    height: calc(100svh - 72px);
  }
}

/* Emergency mobile fixes: reliable hero image + clean compact navigation. */
.hero-image {
  background:
    linear-gradient(180deg, rgba(26,22,19,.2), rgba(26,22,19,.2)),
    url("/assets/home-design-hero-banner.png") center right / cover no-repeat,
    #d9c9b7;
}

/* Hero stability fix: avoid negative z-index because some mobile/embedded
   browsers paint that layer behind the section background. */
.hero {
  overflow: hidden;
}

.hero-direct {
  margin: 118px 3vw 28px;
  min-height: calc(100svh - 146px);
  padding: clamp(42px, 6vw, 88px);
  align-items: flex-end;
  border-radius: 48px;
  background-color: #d9c9b7;
  background-image:
    linear-gradient(90deg, rgba(28,24,21,.86) 0%, rgba(28,24,21,.58) 38%, rgba(28,24,21,.16) 76%),
    var(--hero-bg-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  box-shadow: 0 38px 110px rgba(39, 30, 22, .18);
}

.hero-direct::before,
.hero-direct .hero-image {
  display: none !important;
}

.hero-direct .hero-copy {
  position: relative;
  inset: auto;
  width: min(760px, 100%);
  max-width: 760px;
  padding: 0;
}

.hero-image {
  z-index: 0 !important;
  pointer-events: none;
}

.hero::before {
  z-index: 1 !important;
}

.hero-copy {
  z-index: 2 !important;
}

.hero-image img {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: transparent;
  font-size: 0;
}

@media (max-width: 920px) {
  .site-header {
    z-index: 80;
  }

  .nav {
    inset: auto 14px auto 14px;
    top: calc(max(10px, env(safe-area-inset-top)) + 70px);
    z-index: 70;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-content: stretch;
    width: auto;
    max-height: calc(100svh - 100px);
    padding: 10px;
    border: 1px solid rgba(117,75,60,.13);
    border-radius: 28px;
    background: rgba(255,250,242,.96);
    box-shadow: 0 22px 70px rgba(52, 36, 26, .2);
    backdrop-filter: blur(20px);
    transform: translateY(-8px) scale(.98);
    overflow: auto;
  }

  .menu-open .nav {
    transform: translateY(0) scale(1);
  }

  .nav a {
    max-width: none;
    margin: 0;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(247,239,228,.74);
    color: var(--ink);
    font: 900 16px/1.1 "Inter", system-ui, sans-serif;
    letter-spacing: -.02em;
  }

  .nav a:hover {
    background: rgba(154,106,82,.12);
  }

  body.menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(43, 31, 23, .18);
    backdrop-filter: blur(2px);
  }

  .menu-open .site-header {
    background: rgba(255,250,242,.98);
  }

  .hero-image {
    background-image:
      linear-gradient(180deg, rgba(26,22,19,.2), rgba(26,22,19,.2)),
      url("/assets/home-design-hero-banner.png");
    background-position: 62% center;
  }

  .hero-direct {
    margin: 92px 14px 20px;
    min-height: clamp(560px, 82svh, 740px);
    padding: 0 26px 48px;
    border-radius: 34px;
    background-image:
      linear-gradient(180deg, rgba(26,22,19,.82) 0%, rgba(26,22,19,.56) 50%, rgba(26,22,19,.2) 100%),
      var(--hero-bg-image) !important;
    background-size: cover !important;
    background-position: 62% center !important;
  }

  .hero-direct .hero-copy {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .hero-image img {
    color: transparent;
    font-size: 0;
  }
}

@media (max-width: 520px) {
  .nav {
    left: 12px;
    right: 12px;
    top: calc(max(10px, env(safe-area-inset-top)) + 66px);
    border-radius: 24px;
  }

  .hero-direct {
    margin: 86px 10px 18px;
    min-height: calc(100svh - 104px);
    padding: 0 22px 42px;
    border-radius: 28px;
  }
}

@media (max-width: 920px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, auto) 1fr 42px;
    column-gap: 6px;
    align-items: center;
    padding: 0 8px 0 14px;
  }

  .brand {
    grid-column: 1;
    margin-right: 0;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    position: fixed;
    right: 20px;
    top: calc(max(10px, env(safe-area-inset-top)) + 8px);
    z-index: 100;
    transform: none;
    display: inline-grid !important;
    opacity: 1 !important;
    visibility: visible !important;
    place-items: center;
    min-width: 42px;
    min-height: 42px;
  }

  .mobile-cart-link { display: block; }
}

@media (max-width: 360px) {
  .brand-text {
    display: none;
  }
}

/* Shared page transition, built in CSS so it loads faster than a video. */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: env(safe-area-inset-top) 24px env(safe-area-inset-bottom);
  background: rgba(244, 239, 231, .98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .26s ease, visibility 0s linear .26s;
}

html.page-loading .page-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity .18s ease;
}

.page-loader-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-loader-dots i {
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: #a9755b;
  box-shadow: 0 7px 15px rgba(124, 78, 54, .16);
  animation: page-loader-dot 1.05s cubic-bezier(.45, 0, .25, 1) infinite;
}

.page-loader-dots i:nth-child(2) { animation-delay: .12s; background: #b88467; }
.page-loader-dots i:nth-child(3) { animation-delay: .24s; background: #cc9a77; }

.page-loader-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@keyframes page-loader-dot {
  0%, 100% { transform: translateY(7px) scale(.76); opacity: .5; }
  42% { transform: translateY(0) scale(1); opacity: 1; }
  70% { transform: translateY(3px) scale(.83); opacity: .67; }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader,
  html.page-loading .page-loader { transition: none; }
  .page-loader-dots i { animation: none; }
}

/* Responsive layout v3: a separate compact composition for phones and tablets. */
@media (max-width: 1180px) {
  .site-header {
    left: 18px;
    right: 18px;
  }

  .product-detail,
  .cart-page,
  .checkout-page {
    grid-template-columns: minmax(0, 1fr);
    max-width: 920px;
    margin-inline: auto;
  }

  .order-summary,
  .checkout-summary,
  .detail-gallery {
    position: static;
  }
}

@media (max-width: 780px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    min-width: 0;
  }

  main,
  section,
  article,
  form,
  aside,
  div {
    min-width: 0;
  }

  .site-header {
    top: calc(8px + env(safe-area-inset-top));
    left: 10px;
    right: 10px;
    height: 58px;
    display: flex;
    gap: 8px;
    padding: 0 8px 0 13px;
    border-radius: 22px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand-mark {
    width: 26px;
    height: 26px;
  }

  .brand-mark i {
    width: 12px;
    height: 12px;
  }

  .brand-text {
    font-size: 16px;
  }

  .header-actions {
    display: none !important;
  }

  .menu-toggle {
    position: static !important;
    display: inline-grid !important;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    margin-left: auto;
    transform: none !important;
  }

  .nav {
    position: fixed !important;
    inset: calc(70px + env(safe-area-inset-top)) 10px auto !important;
    z-index: 90;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: auto;
    max-height: min(430px, calc(100svh - 90px));
    padding: 10px;
    overflow-y: auto;
    border: 1px solid rgba(117,75,60,.14);
    border-radius: 22px;
    background: rgba(255,250,242,.98);
    box-shadow: 0 22px 56px rgba(42,31,23,.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(.98);
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  }

  .menu-open .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav a,
  .mobile-cart-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 12px !important;
    border: 1px solid rgba(117,75,60,.1);
    border-radius: 15px;
    background: rgba(247,239,228,.72);
    color: var(--ink);
    font: 800 14px/1 "Inter", system-ui, sans-serif !important;
    text-align: center;
  }

  .nav a::after { display: none !important; }
  .mobile-cart-link { display: flex; }
  body.menu-open::after { z-index: 75; }

  .hero-direct {
    min-height: min(680px, calc(100svh - 82px));
    margin: 76px 10px 18px;
    padding: 36px 20px 28px;
    border-radius: 26px;
    align-items: end;
  }

  .hero-direct .hero-copy {
    align-self: end;
  }

  .hero h1,
  .hero-direct h1 {
    max-width: 9.5ch;
    font-size: clamp(42px, 13vw, 60px);
    line-height: .93;
  }

  .hero .lead,
  .hero-direct .lead {
    max-width: 34rem;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-actions {
    width: 100%;
    max-width: none;
    margin-top: 20px;
  }

  .section,
  .contact {
    padding: 42px 14px;
  }

  .home-services {
    padding: 12px 14px 26px;
  }

  .service-tile,
  .service-tile + .service-tile,
  .service-tile:nth-child(odd),
  .service-tile:nth-child(3) {
    padding: 18px;
    border-radius: 20px;
  }

  .home-featured-products,
  .product-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .shop-layout {
    padding: 84px 10px 50px;
  }

  .shop-sidebar {
    padding: 12px;
    border-radius: 22px;
  }

  .category-filters {
    display: flex;
    padding-bottom: 2px;
  }

  .category-filters button {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 13px;
  }

  .shop-card {
    border-radius: 18px;
  }

  .shop-media {
    margin: 5px;
    border-radius: 14px;
  }

  .shop-card-body {
    padding: 8px 9px 11px;
  }

  .shop-card-body strong {
    min-height: 2.25em;
    font-size: 16px;
    line-height: 1.1;
  }

  .product-tag { font-size: 8px; }
  .product-price { padding-top: 7px; font-size: 12px; }

  .product-detail,
  .cart-page,
  .checkout-page,
  .auth-page,
  .account-page,
  .admin-page {
    gap: 14px;
    padding: 82px 10px 54px;
  }

  .detail-gallery,
  .detail-info,
  .cart-page > *,
  .checkout-panel,
  .order-summary,
  .auth-form,
  .account-card,
  .admin-card {
    border-radius: 22px;
  }

  .detail-gallery,
  .detail-info,
  .checkout-panel,
  .order-summary {
    padding: 16px;
  }

  .detail-info h1,
  .cart-page h1,
  .checkout-panel h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .detail-buy,
  .cart-line-actions {
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
  }

  .detail-buy strong { font-size: 27px; }

  .cart-page-line {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 10px;
    padding: 9px;
    border-radius: 18px;
  }

  .cart-page-line img {
    width: 66px;
    height: 66px;
    border-radius: 13px;
  }

  .cart-page-line strong { font-size: 19px; }
  .cart-line-actions { grid-column: 1 / -1; }

  .shipping-methods,
  .payment-methods,
  .checkout-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .shipping-method,
  .payment-method {
    padding: 13px;
    border-radius: 18px;
  }

  .easybox-panel {
    gap: 12px;
    padding: 12px;
    border-radius: 20px;
  }

  .locker-panel-head,
  .locker-search,
  .locker-filter-menu,
  .locker-manual-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .locker-status {
    max-width: none;
    padding: 9px 11px;
    border-radius: 14px;
  }

  .locker-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .locker-actions .button,
  .locker-search .button,
  .locker-filter-menu-actions .button {
    width: 100%;
    min-height: 44px;
    padding-inline: 10px;
  }

  .locker-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .locker-filters button {
    min-width: 0;
    min-height: 42px;
    justify-content: center;
    padding: 5px 8px;
  }

  .locker-filters .carrier-logo {
    width: 100px;
    max-width: 100%;
    height: 30px;
  }

  .locker-map {
    min-height: 260px;
    border-radius: 18px;
  }

  .locker-results {
    max-height: 320px;
    gap: 7px;
  }

  .locker-result {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 10px;
    border-radius: 16px;
  }

  .locker-result .carrier-logo {
    grid-column: 1 / -1;
    width: 94px;
    height: 30px;
  }

  .locker-result b { font-size: 14px; }
  .locker-result small { font-size: 11px; }

  .account-nudge,
  .contact-form,
  .custom-panel {
    padding: 16px;
    border-radius: 22px;
  }

  .admin-tabs {
    gap: 7px;
    padding: 7px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .admin-tabs button {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .admin-order-tabs button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .admin-table-wrap { overflow-x: auto; }

  .chat-widget {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
  }

  .chat-fab {
    min-height: 48px;
    min-width: 70px;
    padding: 11px 15px;
  }

  .chat-panel {
    right: 0;
    bottom: 0;
    width: min(100vw - 20px, 430px);
    height: min(68svh, 540px);
    border-radius: 22px;
  }
}

@media (max-width: 390px) {
  .brand-text { font-size: 15px; }

  .home-featured-products,
  .product-catalog {
    grid-template-columns: 1fr;
  }

  .shop-card-body strong { min-height: auto; font-size: 18px; }
  .locker-actions,
  .locker-filters { grid-template-columns: 1fr; }
  .hero h1,
  .hero-direct h1 { font-size: clamp(38px, 12.5vw, 50px); }
}

@media (orientation: landscape) and (max-width: 780px) and (max-height: 540px) {
  .site-header { height: 52px; }
  .nav { inset: 62px 10px auto !important; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-direct { min-height: calc(100svh - 70px); margin-top: 60px; padding: 24px 28px; }
  .hero-direct .lead { display: none; }
  .hero-actions { grid-template-columns: 1fr 1fr; max-width: 420px; }
}

/* Catalog pagination and saved products. */
.shop-card-link {
  display: block;
  color: inherit;
}

.site-icon {
  display: block;
  width: 1.12em;
  height: 1.12em;
  flex: 0 0 auto;
}

.product-favorite,
.detail-favorite,
.header-favorites-link {
  border: 1px solid rgba(117,75,60,.18);
  background: rgba(255,250,242,.88);
  color: var(--clay-dark);
  cursor: pointer;
}

.product-favorite {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(45,35,27,.1);
  font-size: 27px;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.product-favorite:hover { transform: translateY(-2px) scale(1.04); }
.product-favorite.active { color: #b24747; background: #fff8f4; }
.product-svg-icon { width: 1.08em; height: 1.08em; pointer-events: none; }
.product-favorite.active .product-svg-icon { fill: currentColor; }

.detail-favorite {
  float: right;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 12px;
}

.detail-favorite.active { color: #a83f42; border-color: rgba(168,63,66,.34); }

.header-favorites-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 46px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease;
}

.header-favorites-link:hover { transform: translateY(-2px); border-color: rgba(117,75,60,.42); }
.header-heart { color: #a7474b; font-size: 22px; line-height: 1; }
.header-favorites-link b {
  display: grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  border-radius: 999px;
  color: var(--white);
  background: var(--clay-dark);
  font-size: 10px;
}

.product-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.product-pagination[hidden] { display: none; }
.product-pagination span { color: var(--muted); font-size: 13px; font-weight: 800; }
.product-pagination .button { min-width: 138px; }
.product-pagination button:disabled { opacity: .42; cursor: not-allowed; transform: none; box-shadow: none; }
.catalog-empty { padding: 30px; border-radius: 22px; background: rgba(255,250,242,.68); color: var(--muted); }

@media (max-width: 780px) {
  .site-header {
    padding-right: 7px;
  }

  .header-actions {
    display: inline-flex !important;
    order: initial;
    margin-left: auto;
    gap: 4px;
  }

  .account-link { display: none; }

  .header-favorites-link,
  .cart-toggle {
    display: grid;
    place-items: center;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
  }

  .header-favorites-label { display: none; }
  .header-heart { font-size: 23px; }
  .header-favorites-link b { position: absolute; top: -3px; right: -2px; min-width: 16px; height: 16px; font-size: 9px; }
  .cart-toggle { position: relative; font-size: 0; }
  .cart-toggle::before { content: "Cos"; font-size: 11px; font-weight: 900; }
  .cart-toggle span { position: absolute; top: -3px; right: -2px; margin: 0; min-width: 16px; height: 16px; font-size: 9px; }

  .menu-toggle { margin-left: 0; }

  .mobile-favorites-link { display: flex !important; }

  .product-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px;
  }

  .shop-card { border-radius: 17px; }
  .shop-media { margin: 5px; border-radius: 13px; }
  .shop-card-body { gap: 6px; padding: 7px 9px 10px; }
  .shop-card-body strong { min-height: 2.2em; font-size: 16px; line-height: 1.08; }
  .product-price { padding-top: 7px; font-size: 11px; }
  .product-price::after { display: none; }
  .product-favorite { top: 11px; right: 11px; width: 34px; height: 34px; font-size: 23px; }

  .product-pagination {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .product-pagination span {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
  }

  .product-pagination .button {
    min-width: 0;
    min-height: 46px;
    padding-inline: 12px;
  }
}

@media (max-width: 390px) {
  .product-catalog { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .shop-card-body strong { min-height: 2.25em; font-size: 15px; }
  .product-tag { font-size: 8px; }
}

/* Mobile composition v4. Kept last deliberately: it normalizes older responsive rules. */
@media (max-width: 780px) {
  :root { --mobile-gutter: 12px; }

  body { padding-bottom: env(safe-area-inset-bottom); }
  body.menu-open { overflow: hidden; }

  .site-header {
    box-sizing: border-box;
    height: 60px;
    padding: 0 8px 0 13px;
  }

  .brand { flex: 1 1 auto; }
  .brand { order: 1; }
  .brand-text { white-space: nowrap; font-size: 15px; }
  .header-actions {
    display: flex !important;
    order: 2;
    flex: 0 0 auto;
    align-items: center;
    gap: 5px;
    margin-left: auto;
  }

  .header-favorites-link,
  .cart-toggle,
  .menu-toggle {
    box-sizing: border-box;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .menu-toggle {
    order: 3;
    margin-left: 0 !important;
  }

  .header-favorites-link {
    position: relative;
    display: grid !important;
    padding: 0;
  }

  .header-favorites-link b {
    position: absolute;
    top: 3px !important;
    right: 3px !important;
    min-width: 14px;
    height: 14px;
    font-size: 8px;
    line-height: 14px;
  }

  .cart-toggle {
    position: static;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 7px !important;
    font-size: 11px !important;
    line-height: 1;
    white-space: nowrap;
  }

  .cart-toggle::before { display: none !important; }
  .cart-toggle span {
    position: static !important;
    display: grid;
    place-items: center;
    min-width: 16px;
    height: 16px;
    margin: 0 !important;
    font-size: 9px !important;
  }

  .nav {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-height: calc(100svh - 84px);
  }

  .nav a,
  .mobile-cart-link,
  .mobile-favorites-link {
    min-width: 0;
    min-height: 46px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-direct {
    min-height: 680px;
    margin: 76px var(--mobile-gutter) 16px;
    padding: 34px 20px 28px;
    background-position: 62% center;
  }

  .hero-direct .hero-copy {
    display: flex;
    max-width: none;
    flex-direction: column;
  }
  .hero h1,
  .hero-direct h1 {
    max-width: 9ch;
    font-size: clamp(42px, 13.2vw, 56px);
    letter-spacing: -.055em;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .hero-actions .button { width: 100%; min-height: 48px; }

  .section,
  .contact,
  .home-services,
  .shop-layout,
  .product-detail,
  .cart-page,
  .checkout-page,
  .auth-page,
  .account-page,
  .admin-page {
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
  }

  .home-services,
  .services-grid,
  .showcase-grid,
  .price-grid,
  .contact-grid,
  .footer-grid,
  .account-grid,
  .admin-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .service-tile,
  .price-card,
  .custom-panel,
  .contact-form,
  .account-card,
  .admin-card {
    padding: 18px;
    border-radius: 20px;
  }

  .shop-layout { padding-top: 82px; }
  .shop-sidebar { position: static; padding: 12px; }
  .shop-toolbar { align-items: stretch; gap: 10px; }
  .shop-toolbar > * { min-width: 0; }

  .product-catalog,
  .home-featured-products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  .shop-card { min-width: 0; overflow: hidden; }
  .shop-card-link { min-width: 0; }
  .shop-media { aspect-ratio: 1 / 1; overflow: hidden; }
  .shop-media img { width: 100%; height: 100%; object-fit: cover; }
  .shop-card-body { min-width: 0; }
  .shop-card-body strong {
    display: -webkit-box;
    min-height: 2.25em;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: clamp(14px, 4.1vw, 16px);
  }

  .product-favorite { top: 10px; right: 10px; }
  .product-pagination { margin: 20px 0 4px; }
  .product-pagination .button { font-size: 12px; }

  .product-detail,
  .cart-page,
  .checkout-page,
  .auth-page,
  .account-page,
  .admin-page { padding-top: 82px; }

  .detail-gallery img,
  .detail-gallery > img { aspect-ratio: 1 / 1; object-fit: cover; }
  .detail-info h1,
  .cart-page h1,
  .checkout-panel h1,
  .auth-copy h1,
  .account-heading h1 { overflow-wrap: anywhere; }

  .checkout-summary,
  .order-summary { order: 2; }
  .checkout-panel { order: 1; }
  .shipping-methods,
  .payment-methods,
  .field-row,
  .checkout-grid { grid-template-columns: 1fr !important; }
  .shipping-method,
  .payment-method { min-height: 0; }

  .easybox-panel { margin-inline: 0; }
  .locker-map { min-height: 248px; height: 248px; }
  .locker-results { max-height: 300px; }
  .locker-result { align-items: start; }
  .locker-result em { align-self: center; }

  .cart-page-line { align-items: start; }
  .cart-line-actions { grid-template-columns: 1fr 1fr; }

  .chat-panel {
    width: calc(100vw - 20px);
    max-width: none;
    height: min(70svh, 560px);
  }
}

@media (max-width: 360px) {
  .brand-text { font-size: 14px; }
  .header-favorites-link,
  .cart-toggle,
  .menu-toggle { width: 38px; min-width: 38px; height: 38px; }
  .cart-toggle { width: 48px; min-width: 48px; padding-inline: 5px !important; }
  .site-header { gap: 4px; padding-left: 10px; }
  .hero-direct { min-height: 620px; padding: 30px 18px 24px; }
  .hero h1,
  .hero-direct h1 { font-size: clamp(39px, 12.8vw, 48px); }
  .shop-card-body { padding: 7px 8px 10px; }
  .shop-card-body strong { font-size: 14px; }
  .product-price { font-size: 10px; }
}

/* Mobile header and hero finishing pass. */
@media (max-width: 780px) {
  .header-favorites-link [data-favorite-count] { display: none !important; }

  .header-favorites-link,
  .cart-toggle,
  .menu-toggle {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    border-radius: 999px;
  }

  .cart-toggle {
    position: relative;
    padding: 0 !important;
    color: var(--ink);
  }

  .header-cart-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.85;
  }

  .cart-toggle span[data-cart-count] {
    position: absolute !important;
    top: -4px;
    right: -4px;
    display: grid;
    min-width: 17px;
    height: 17px;
    place-items: center;
    margin: 0 !important;
    border: 2px solid #fffaf2;
    border-radius: 999px;
    background: var(--clay-dark);
    color: var(--white);
    font-size: 9px !important;
    font-weight: 900;
    line-height: 1;
  }

  .hero-direct {
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .hero-direct .hero-copy {
    position: static;
    align-self: stretch;
    min-height: 100%;
  }

  .hero-direct .hero-actions {
    position: absolute;
    right: 20px;
    bottom: 28px;
    left: 20px;
    z-index: 3;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 360px) {
  .header-favorites-link,
  .cart-toggle,
  .menu-toggle {
    width: 39px;
    min-width: 39px;
    height: 39px;
    min-height: 39px;
  }

  .hero-direct .hero-actions { right: 18px; bottom: 22px; left: 18px; }
}

/* Final mobile header and home hero composition. */
@media (max-width: 780px) {
  .site-header {
    display: flex;
    gap: 7px;
    min-height: 62px;
    padding: 8px 10px 8px 15px;
  }

  .header-actions {
    display: flex !important;
    order: 2;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    margin-left: auto;
  }

  .brand { flex: 1 1 0; min-width: 0; }

  .account-link {
    display: none !important;
  }

  .header-favorites-link,
  .cart-toggle,
  .menu-toggle {
    display: inline-grid;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    place-items: center;
    padding: 0 !important;
    border: 1px solid rgba(117, 75, 60, .2);
    border-radius: 50%;
    background: rgba(255, 250, 242, .76);
    color: var(--clay-dark);
  }

  .header-favorites-link {
    order: 2;
    text-decoration: none;
  }

  .cart-toggle {
    order: 3;
    font-size: 0;
  }

  .menu-toggle {
    order: 4;
    margin: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    display: none !important;
  }

  .header-favorites-label {
    display: none !important;
  }

  .header-favorites-link [data-favorite-count] {
    display: none !important;
  }

  .header-fa-icon {
    font-size: 18px;
    line-height: 1;
  }

  .site-icon {
    width: 1.08em;
    height: 1.08em;
    flex: 0 0 auto;
  }

  .header-favorites-link .header-fa-icon {
    font-size: 19px;
  }

  .cart-toggle .header-fa-icon {
    font-size: 18px;
  }

  /* The icon itself must keep a measurable box on small screens. */
  .menu-toggle .header-fa-icon,
  .header-favorites-link .header-fa-icon,
  .cart-toggle .header-fa-icon {
    display: grid !important;
    width: 1em !important;
    height: 1em !important;
    place-items: center;
    line-height: 1 !important;
  }

  .cart-toggle::before {
    display: none !important;
    content: none !important;
  }

  .cart-toggle span[data-cart-count] {
    top: -5px;
    right: -5px;
    min-width: 17px;
    height: 17px;
    border-color: #fffaf2;
    background: var(--clay-dark);
    color: var(--white);
  }

  /* Mobile header badges sit above the icon so the count stays readable. */
  .header-actions { overflow: visible; }
  .header-favorites-link,
  .cart-toggle {
    position: relative !important;
    overflow: visible !important;
  }
  .header-favorites-link [data-favorite-count],
  .cart-toggle [data-cart-count] {
    position: absolute !important;
    z-index: 4;
    top: -7px !important;
    right: -7px !important;
    display: grid !important;
    min-width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    padding: 0 4px;
    place-items: center;
    border: 2px solid #fffaf2;
    border-radius: 999px;
    background: var(--clay-dark);
    color: var(--white);
    font: 800 9px/1 Inter, sans-serif !important;
  }

  .hero-direct {
    min-height: 590px;
    height: 590px;
    padding: 30px 20px 18px;
    overflow: hidden;
    border-radius: 26px;
    background-position: 57% 44%;
  }

  .hero-direct .hero-copy {
    min-height: 0;
  }

  .hero-direct .hero-actions {
    right: 20px;
    bottom: 18px;
    left: 20px;
    display: grid;
    width: auto;
    max-width: none;
    gap: 10px;
  }

  .hero-direct .hero-actions .button {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding-inline: 14px;
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  .site-header { gap: 5px; padding-right: 8px; }
  .header-favorites-link,
  .cart-toggle,
  .menu-toggle { width: 39px; min-width: 39px; height: 39px; min-height: 39px; }
  .hero-direct { min-height: 570px; height: 570px; padding-inline: 18px; }
  .hero-direct .hero-actions { right: 18px; bottom: 16px; left: 18px; }
}

/* Admin catalog: tabs, categories and a focused product editor. */
.admin-catalog-shell { display: grid; gap: 20px; }
.admin-catalog-top { overflow: visible; }
.admin-catalog-tabs,
.admin-import-actions,
.admin-inline-form,
.admin-form-grid,
.admin-check-row,
.admin-form-actions,
.admin-pagination { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.admin-catalog-tabs { margin: 18px 0 14px; }
.admin-catalog-tabs button {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(117, 75, 60, .22);
  border-radius: 999px;
  background: #fffaf4;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.admin-catalog-tabs button.active { background: var(--ink); color: #fffaf4; border-color: var(--ink); }
.admin-tab-management { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; }
.admin-tab-management .button { min-height: 36px; padding-inline: 13px; font-size: .78rem; }
.admin-inline-form { margin-top: 12px; }
.admin-inline-form input { flex: 1 1 250px; min-width: 0; }
.admin-catalog-search { margin-top: 16px; }
.admin-category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 12px; }
.admin-category-card { display: flex; min-height: 112px; overflow: hidden; border: 1px solid rgba(117, 75, 60, .18); border-radius: 18px; background: rgba(255, 251, 245, .75); }
.admin-category-card.active { border-color: var(--clay); box-shadow: 0 10px 24px rgba(92, 51, 36, .09); }
.admin-category-card > button { flex: 1; padding: 17px; border: 0; background: transparent; color: var(--ink); text-align: left; cursor: pointer; }
.admin-category-card strong, .admin-category-card span { display: block; }
.admin-category-card span { margin-top: 5px; color: var(--muted); font-size: .82rem; }
.admin-category-card > div { display: flex; flex-direction: column; border-left: 1px solid rgba(117, 75, 60, .14); }
.admin-category-card > div button { width: 38px; flex: 1; border: 0; border-bottom: 1px solid rgba(117, 75, 60, .12); background: transparent; color: var(--clay-dark); font: 700 .72rem/1 Inter, sans-serif; cursor: pointer; }
.admin-category-card > div button:last-child { border-bottom: 0; font-size: 1.2rem; }
.admin-catalog-products { display: grid; gap: 10px; }
.admin-catalog-product { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; gap: 12px; padding: 9px; border: 1px solid rgba(117, 75, 60, .15); border-radius: 16px; background: rgba(255, 251, 245, .68); }
.admin-catalog-product.is-hidden { opacity: .62; }
.admin-catalog-product-main { display: flex; min-width: 0; align-items: center; gap: 13px; border: 0; background: transparent; color: var(--ink); text-align: left; cursor: pointer; }
.admin-catalog-product-main img { width: 60px; height: 60px; flex: 0 0 auto; border-radius: 12px; object-fit: cover; background: #eee4d7; }
.admin-catalog-product-main span { min-width: 0; }
.admin-catalog-product-main strong, .admin-catalog-product-main small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-catalog-product-main small { margin-top: 4px; color: var(--muted); }
.admin-product-state { color: var(--clay-dark); font-size: .78rem; font-weight: 800; }
.admin-icon-button { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(117, 75, 60, .18); border-radius: 50%; background: #fffaf4; color: var(--clay-dark); font-size: 1.3rem; cursor: pointer; }
.admin-pagination { justify-content: space-between; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(117, 75, 60, .12); }
.admin-product-editor { border: 1px solid rgba(149, 91, 66, .35); }
.admin-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
.admin-form-grid > label { min-width: 0; }
.admin-check-row { margin-top: 4px; }
.admin-form-actions { justify-content: flex-start; margin-top: 2px; }
.admin-form-actions .form-note { margin: 0; }
.admin-import-card { max-width: 820px; }
.admin-import-actions { margin: 18px 0; }

@media (max-width: 720px) {
  .admin-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .admin-category-card { min-height: 94px; border-radius: 15px; }
  .admin-category-card > button { padding: 13px; }
  .admin-category-card > div button { width: 32px; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-catalog-product { grid-template-columns: minmax(0, 1fr) auto; }
  .admin-product-state { display: none; }
  .admin-inline-form { align-items: stretch; }
  .admin-inline-form .button { width: 100%; }
  .admin-pagination { gap: 8px; }
  .admin-pagination span { width: 100%; order: -1; text-align: center; color: var(--muted); font-size: .85rem; }
}

/* Public catalogue controls and product media. */
.catalog-public-tabs { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 18px; }
.catalog-public-tabs a { padding: 9px 15px; border: 1px solid rgba(117, 75, 60, .2); border-radius: 999px; color: var(--clay-dark); font-size: .86rem; font-weight: 800; text-decoration: none; }
.catalog-public-tabs a.active { border-color: var(--ink); background: var(--ink); color: #fffaf4; }
.catalog-showcase {
  position: relative;
  z-index: 2;
  padding: 126px 6vw 0;
}
.catalog-showcase-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 1380px;
  margin: 0 auto;
  padding: 14px 18px;
  border: 1px solid rgba(117, 75, 60, .14);
  border-radius: 24px;
  background: rgba(255, 250, 244, .72);
  box-shadow: 0 18px 42px rgba(45, 35, 27, .07);
}
.catalog-showcase .eyebrow {
  flex: 0 0 auto;
  margin: 0;
  color: var(--clay-dark);
}
.catalog-showcase .catalog-public-tabs {
  justify-content: flex-end;
  margin: 0;
}
.catalog-showcase .catalog-public-tabs a {
  min-width: 132px;
  padding: 12px 18px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.catalog-showcase .catalog-public-tabs a:hover { transform: translateY(-2px); border-color: var(--clay-dark); }
.shop-card { display: flex; flex-direction: column; }
.shop-card-link { flex: 1; }
.product-quick-add { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: calc(100% - 24px); min-height: 38px; margin: 0 12px 12px; border: 1px solid rgba(117, 75, 60, .18); border-radius: 999px; background: rgba(255, 250, 244, .86); color: var(--ink); font: 700 .8rem/1 Inter, sans-serif; cursor: pointer; transition: transform .18s ease, background .18s ease; }
.product-quick-add:hover { background: var(--ink); color: #fffaf4; transform: translateY(-2px); }
.product-favorite.active { color: #b24747; }
.shop-feedback { position: fixed; z-index: 80; right: 24px; bottom: 24px; max-width: min(330px, calc(100vw - 32px)); margin: 0; padding: 12px 16px; border-radius: 14px; background: var(--ink); color: #fffaf4; font-weight: 700; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .2s ease, transform .2s ease; }
.shop-feedback.visible { opacity: 1; transform: translateY(0); }
.detail-thumbnails { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 12px; }
.detail-thumbnails button { width: 74px; height: 74px; padding: 0; overflow: hidden; border: 1px solid rgba(117,75,60,.2); border-radius: 12px; background: #fffaf4; cursor: pointer; }
.detail-thumbnails button.active { border: 2px solid var(--clay-dark); }
.detail-thumbnails img { width: 100%; height: 100%; object-fit: cover; }
.product-description { margin: 16px 0; padding: 14px 16px; border-left: 3px solid var(--clay); border-radius: 0 12px 12px 0; background: rgba(255,250,244,.7); color: var(--muted); }
.product-description p { margin: 0; white-space: pre-line; }
.product-mentions { display: grid; gap: 5px; margin-top: 24px; padding: 16px 18px; border: 1px solid rgba(154,106,82,.22); border-radius: 18px; background: linear-gradient(135deg, rgba(255,250,244,.92), rgba(239,225,207,.62)); color: var(--muted); }
.product-mentions strong { color: var(--clay-dark); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.product-mentions p { margin: 0; white-space: pre-line; font-size: 14px; line-height: 1.55; }

.gift-wrap-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin: 18px 0;
  padding: 15px 16px;
  border: 1px solid rgba(154, 106, 82, .2);
  border-radius: 18px;
  background: rgba(255, 253, 249, .72);
  cursor: pointer;
}
.gift-wrap-option input { width: 18px; height: 18px; accent-color: var(--clay-dark); }
.gift-wrap-option strong,
.gift-wrap-option small { display: block; }
.gift-wrap-option small { margin-top: 3px; color: var(--muted); }
.gift-wrap-option em { color: var(--clay-dark); font-style: normal; font-weight: 900; white-space: nowrap; }
.locker-map-wrap { position: relative; }
.locker-map-close,
.locker-map-trigger { display: none; }

@media (min-width: 781px) {
  .catalog-showcase-inner {
    display: block;
    max-width: 1380px;
    padding: 0 0 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .catalog-showcase .eyebrow { display: none; }
  .catalog-showcase .catalog-public-tabs {
    justify-content: center;
    gap: 34px;
    margin: 0;
    padding: 0 0 11px;
    border-bottom: 1px solid rgba(117, 75, 60, .2);
  }
  .catalog-showcase .catalog-public-tabs a {
    position: relative;
    min-width: 0;
    padding: 3px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--muted);
    font-size: .95rem;
  }
  .catalog-showcase .catalog-public-tabs a.active {
    background: transparent;
    color: var(--ink);
  }
  .catalog-showcase .catalog-public-tabs a.active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -12px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--clay-dark);
  }
  .catalog-showcase .catalog-public-tabs a:hover {
    transform: none;
    border-color: transparent;
    color: var(--ink);
  }
}

@media (max-width: 780px) {
  .catalog-showcase { padding: 82px 14px 0; }
  .catalog-showcase-inner {
    display: block;
    padding: 0 4px 6px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .catalog-showcase .eyebrow { display: none; }
  .catalog-showcase .catalog-public-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    overflow: visible;
    margin: 0;
    padding: 0 0 8px;
    border-bottom: 1px solid rgba(117, 75, 60, .2);
  }
  .catalog-showcase .catalog-public-tabs a {
    position: relative;
    min-width: 0;
    padding: 2px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--muted);
    font-size: .8rem;
    line-height: 1.2;
  }
  .catalog-showcase .catalog-public-tabs a.active { background: transparent; color: var(--ink); }
  .catalog-showcase .catalog-public-tabs a.active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--clay-dark);
  }
  .shop-layout { padding-top: 18px; }
  .product-quick-add { width: calc(100% - 16px); min-height: 34px; margin: 0 8px 9px; font-size: .72rem; }
  .shop-feedback { right: 14px; bottom: 90px; }
  .detail-thumbnails button { width: 58px; height: 58px; }

  .gift-wrap-option { grid-template-columns: auto minmax(0, 1fr); padding: 13px 14px; }
  .gift-wrap-option em { grid-column: 2; }

  .locker-map-trigger { display: inline-flex; }
  .locker-map-wrap .locker-map { display: none !important; min-height: 0; height: 0; margin: 0; border: 0; }
  .checkout-page.locker-map-open .locker-map-wrap {
    position: fixed;
    inset: max(10px, env(safe-area-inset-top)) 10px max(10px, env(safe-area-inset-bottom));
    z-index: 1200;
    display: block;
    min-height: 0;
    padding: 54px 10px 10px;
    overflow: hidden;
    border: 1px solid rgba(154, 106, 82, .26);
    border-radius: 24px;
    background: #fffaf4;
    box-shadow: 0 28px 80px rgba(35, 31, 28, .3);
  }
  .checkout-page.locker-map-open .locker-map-wrap::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(35, 31, 28, .44);
    content: "";
  }
  .checkout-page.locker-map-open .locker-map-wrap .locker-map {
    display: block !important;
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    border: 1px solid rgba(154, 106, 82, .18);
    border-radius: 18px;
  }
  .checkout-page.locker-map-open .locker-map-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(154, 106, 82, .2);
    border-radius: 999px;
    background: #fffaf4;
    color: var(--ink);
    font: 800 12px/1 Inter, sans-serif;
    cursor: pointer;
  }
}

/* Final product-page and catalog controls override responsive legacy rules. */
.detail-buy { margin-top: 22px; padding: 0; border: 0; border-radius: 0; background: transparent; align-items: center; }
.detail-buy .button { min-height: 48px; padding-inline: 22px; }
.detail-favorite { display: inline-grid; float: right; place-items: center; width: 42px; min-height: 42px; padding: 0; border-radius: 999px; color: var(--clay-dark); }
.detail-favorite .product-svg-icon { width: 20px; height: 20px; }
.detail-favorite.active .product-svg-icon { fill: currentColor; }
.back-link { width: 42px; min-height: 42px; padding: 0; justify-content: center; }
.back-link .product-svg-icon { width: 20px; height: 20px; }
.product-quick-add .product-svg-icon { width: 1em; height: 1em; stroke-width: 2.15; }

@media (max-width: 780px) {
  .product-favorite { width: 34px; height: 34px; font-size: 19px; }
  .product-favorite .product-svg-icon { width: 19px; height: 19px; }
  .product-quick-add { gap: 7px; }
  .detail-buy { display: flex; padding: 0; }
  .detail-buy strong { font-size: 28px; }
  .detail-buy .button { min-height: 44px; padding-inline: 17px; font-size: 12px; }
  .back-link { margin-bottom: 16px; }
  .product-mentions { margin-top: 20px; padding: 14px 15px; }
}

/* Product page v17 */
.pd-page {
  width: min(100% - 108px, 1785px);
  max-width: none;
  margin: 0 auto;
  padding: 88px 0 44px;
}
.pd-hero-grid {
  display: grid;
  grid-template-columns: minmax(720px, 830px) minmax(520px, 1fr);
  gap: 26px;
  align-items: start;
}
.pd-gallery-card,
.pd-info-card,
.pd-tabs,
.pd-benefits article {
  border: 1px solid rgba(154, 106, 82, .18);
  background: rgba(255, 253, 249, .82);
  box-shadow: 0 20px 50px rgba(77, 54, 40, .08);
}
.pd-gallery-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  border-radius: 18px;
}
.pd-thumbs {
  display: grid;
  gap: 12px;
  align-content: start;
}
.pd-thumbs button {
  width: 82px;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(154, 106, 82, .22);
  border-radius: 10px;
  background: #fffaf4;
  cursor: pointer;
}
.pd-thumbs button.active { border: 2px solid var(--clay-dark); }
.pd-thumbs img,
.pd-main-media img {
  width: 100%;
  height: 100%;
}
.pd-thumbs img { object-fit: cover; }
.pd-main-media img { object-fit: contain; }
.pd-main-media {
  position: relative;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #f4ece1;
  cursor: zoom-in;
}
.pd-modal-open { overflow: hidden; }
.pd-image-modal[hidden] { display: none !important; }
.pd-image-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
}
.pd-image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 31, 28, .66);
  backdrop-filter: blur(6px);
}
.pd-image-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: min(94vw, 1120px);
  height: min(92vh, 880px);
  overflow: hidden;
  border: 1px solid rgba(255, 250, 244, .36);
  border-radius: 18px;
  background: #fffaf4;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
}
.pd-image-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(154, 106, 82, .2);
  border-radius: 50%;
  background: rgba(255, 250, 244, .94);
  color: var(--ink);
  cursor: pointer;
}
.pd-image-modal-stage {
  display: grid;
  min-height: 0;
  overflow: auto;
  place-items: center;
  background: #f4ece1;
}
.pd-image-modal-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform-origin: center;
  transition: transform .16s ease;
}
.pd-image-modal-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid rgba(154, 106, 82, .16);
  background: rgba(255, 250, 244, .94);
}
.pd-image-modal-controls button {
  min-width: 46px;
  min-height: 40px;
  border: 1px solid rgba(154, 106, 82, .22);
  border-radius: 999px;
  background: #fffdf9;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}
.detail-favorite {
  border: 1px solid rgba(154, 106, 82, .16);
  background: rgba(255, 253, 249, .92);
  box-shadow: 0 10px 25px rgba(77, 54, 40, .1);
}
.pd-info-card {
  position: relative;
  padding: 34px 34px 24px;
  border-radius: 18px;
}
.pd-info-card .eyebrow { margin: 0 0 8px; color: var(--clay-dark); }
.pd-info-card h1 {
  max-width: 85%;
  margin: 0;
  color: var(--ink);
  font: 700 clamp(40px, 3.55vw, 58px)/.98 "Playfair Display", serif;
  letter-spacing: 0;
}
.pd-short {
  max-width: 680px;
  margin: 15px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.pd-info-card .detail-favorite {
  position: absolute;
  top: 28px;
  right: 28px;
  float: none;
  width: 46px;
  height: 46px;
  min-height: 46px;
  color: var(--clay-dark);
}
.pd-info-card .detail-favorite.active { color: #b24747; }
.pd-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}
.pd-stars {
  display: inline-flex;
  gap: 2px;
  color: rgba(154, 106, 82, .35);
}
.pd-stars .filled,
.pd-review span .filled { color: var(--clay-dark); }
.pd-rating i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(117, 75, 60, .42);
}
.pd-rule {
  height: 1px;
  margin: 25px 0 23px;
  background: rgba(154, 106, 82, .2);
}
.pd-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.pd-options label,
.pd-review-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
}
.pd-options select,
.pd-review-form input,
.pd-review-form select,
.pd-review-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(154, 106, 82, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  color: var(--ink);
  font: 600 14px/1.2 Inter, sans-serif;
}
.pd-options select { padding: 0 14px; }
.pd-price {
  display: block;
  margin: 25px 0 14px;
  color: var(--clay-dark);
  font: 900 36px/1 Inter, sans-serif;
}
.pd-buy-row {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 16px;
}
.pd-qty {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  min-height: 50px;
  overflow: hidden;
  border: 1px solid rgba(154, 106, 82, .2);
  border-radius: 10px;
  background: rgba(255, 255, 255, .76);
}
.pd-qty button {
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.pd-qty output {
  text-align: center;
  font: 900 18px/1 Inter, sans-serif;
}
.pd-buy-row .button {
  min-height: 50px;
  border-radius: 10px;
  gap: 10px;
  background: linear-gradient(180deg, #9a5a34, #854725);
  box-shadow: none;
}
.pd-feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(154, 106, 82, .16);
  border-radius: 10px;
  background: rgba(250, 242, 232, .7);
}
.pd-feature-strip span {
  display: flex;
  gap: 11px;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 10px;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
  line-height: 1.35;
}
.pd-feature-strip span + span { border-left: 1px solid rgba(154, 106, 82, .15); }
.pd-feature-strip i { color: var(--clay-dark); font-size: 20px; }
.pd-mentions {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(154, 106, 82, .15);
  border-radius: 10px;
  background: rgba(255, 253, 249, .64);
}
.pd-mentions strong {
  color: var(--clay-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pd-mentions p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
  white-space: pre-line;
}
.pd-lower-grid {
  display: grid;
  grid-template-columns: minmax(720px, 830px) minmax(520px, 1fr);
  gap: 26px;
  margin-top: 18px;
}
.pd-tabs {
  min-height: 210px;
  border-radius: 12px;
  padding: 0 26px 22px;
}
.pd-tab-buttons {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(154, 106, 82, .18);
}
.pd-tab-buttons button {
  position: relative;
  min-height: 56px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 900 13px/1 Inter, sans-serif;
  white-space: nowrap;
  cursor: pointer;
}
.pd-tab-buttons button.active { color: var(--ink); }
.pd-tab-buttons button.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--clay-dark);
}
.pd-tab-panel {
  display: none;
  padding-top: 20px;
  color: var(--muted);
  line-height: 1.7;
}
.pd-tab-panel.active { display: block; }
.pd-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}
.pd-specs div {
  padding: 14px;
  border: 1px solid rgba(154, 106, 82, .14);
  border-radius: 8px;
  background: rgba(255, 250, 244, .62);
}
.pd-specs dt { color: var(--clay-dark); font-weight: 900; }
.pd-specs dd { margin: 4px 0 0; }
.pd-review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 22px;
  align-items: start;
}
.pd-review-list {
  display: grid;
  gap: 12px;
}
.pd-review,
.pd-review-form {
  padding: 16px;
  border: 1px solid rgba(154, 106, 82, .14);
  border-radius: 8px;
  background: rgba(255, 250, 244, .64);
}
.pd-review div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  justify-content: space-between;
}
.pd-review span {
  display: inline-flex;
  gap: 2px;
  align-items: center;
  color: rgba(154, 106, 82, .35);
}
.pd-review p {
  margin: 10px 0 0;
  color: var(--muted);
}
.pd-review aside {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  padding: 12px;
  border-left: 3px solid var(--clay-dark);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, .7);
}
.pd-review-form {
  display: grid;
  gap: 12px;
}
.pd-review-form h3 {
  margin: 0;
  color: var(--ink);
  font: 900 20px/1.15 Inter, sans-serif;
}
.pd-review-form input,
.pd-review-form select,
.pd-review-form textarea { padding: 11px 12px; }
.pd-review-form textarea { min-height: 110px; resize: vertical; }
.pd-empty { margin: 0; color: var(--muted); }
.pd-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}
.pd-benefits article {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 18px;
  border-radius: 8px;
}
.pd-benefits i {
  color: var(--clay-dark);
  font-size: 28px;
}
.pd-benefits strong,
.pd-benefits span { display: block; }
.pd-benefits strong { color: var(--ink); font-size: 13px; }
.pd-benefits span { margin-top: 4px; color: var(--muted); font-size: 12px; }
.admin-review-list {
  display: grid;
  gap: 16px;
}
.admin-review-item {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(154, 106, 82, .16);
  border-radius: 8px;
  background: rgba(255, 250, 244, .68);
}
.admin-review-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  justify-content: space-between;
}
.admin-review-head span { color: var(--muted); font-size: 13px; }

@media (max-width: 1040px) {
  .pd-page {
    width: min(100% - 32px, 980px);
    padding-top: 88px;
  }
  .pd-hero-grid,
  .pd-lower-grid {
    grid-template-columns: 1fr;
  }
  .pd-info-card h1 { max-width: calc(100% - 60px); }
}

@media (max-width: 780px) {
  .pd-page {
    width: calc(100% - 24px);
    padding: 88px 0 32px;
  }
  .pd-gallery-card {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 12px;
  }
  .pd-thumbs {
    order: 2;
    display: flex;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .pd-thumbs button {
    flex: 0 0 66px;
    width: 66px;
  }
  .pd-main-media {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }
  .pd-info-card { padding: 20px; }
  .pd-info-card h1 {
    max-width: calc(100% - 52px);
    font-size: 34px;
  }
  .pd-info-card .detail-favorite {
    top: 18px;
    right: 18px;
  }
  .pd-options,
  .pd-buy-row,
  .pd-feature-strip,
  .pd-specs,
  .pd-review-layout,
  .pd-benefits {
    grid-template-columns: 1fr;
  }
  .pd-feature-strip span + span {
    border-top: 1px solid rgba(154, 106, 82, .15);
    border-left: 0;
  }
  .pd-tabs {
    padding: 0 16px 18px;
  }
  .pd-tab-buttons {
    gap: 20px;
  }
}

/* Header v23 */
.site-header.header-v2 {
  top: 18px;
  left: 3vw;
  right: 3vw;
  height: 64px;
  min-height: 64px;
  padding: 0 18px 0 22px;
  border-radius: 999px;
  background: rgba(255, 253, 249, .94);
  box-shadow: 0 14px 38px rgba(65, 46, 34, .09);
}
.header-v2 .brand { gap: 9px; }
.header-v2 .brand-mark {
  width: 27px;
  height: 27px;
}
.header-v2 .brand-mark i {
  width: 12px;
  height: 12px;
  border-width: 1.5px;
}
.header-v2 .brand-text {
  font-size: 17px;
  letter-spacing: 0;
}
.header-v2 .nav {
  gap: clamp(24px, 3vw, 46px);
  font-size: 12px;
}
.header-v2 .nav a {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
}
.header-v2 .nav a::after {
  right: 0;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--clay-dark);
}
.header-v2 .nav a.active {
  color: var(--clay-dark);
}
.header-v2 .nav a.active::after {
  transform: scaleX(1);
}
.header-v2 .nav .mobile-cart-link,
.header-v2 .nav .mobile-favorites-link {
  display: none !important;
}
.header-v2 .header-actions {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  overflow: visible;
}
.header-v2 .header-icon-action,
.header-v2 .account-link,
.header-v2 .header-favorites-link,
.header-v2 .cart-toggle,
.header-v2 .header-search-toggle {
  position: relative;
  display: grid !important;
  width: 38px;
  min-width: 38px;
  height: 38px;
  min-height: 38px;
  place-items: center;
  padding: 0 !important;
  overflow: visible !important;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  font-size: 0;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.header-v2 .header-icon-action:hover {
  transform: translateY(-1px);
  background: rgba(154, 106, 82, .08);
}
.header-v2 .header-icon-action.active {
  color: var(--clay-dark);
}
.header-v2 .header-icon-action.active::before {
  content: "" !important;
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: -3px;
  display: block !important;
  height: 2px;
  border-radius: 999px;
  background: var(--clay-dark);
  pointer-events: none;
}

/* Catalog v58: compact editorial listing based on the approved reference. */
.catalog-page {
  background: #f4eee6;
}
.catalog-page .site-header {
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 86px;
  padding: 0 4vw;
  border: 0;
  border-bottom: 1px solid rgba(117, 75, 60, .12);
  border-radius: 0;
  background: rgba(255, 253, 249, .96);
  box-shadow: none;
}
.catalog-page .site-header .brand-text { font-size: 20px; }
.catalog-page .shop-layout {
  grid-template-columns: 244px minmax(0, 1fr);
  gap: 42px;
  width: min(1190px, calc(100vw - 60px));
  margin: 0 auto;
  padding: 128px 0 90px;
}
.catalog-page .shop-sidebar {
  top: 104px;
  gap: 0;
  padding: 18px;
  border: 1px solid rgba(117, 75, 60, .16);
  border-radius: 12px;
  background: rgba(255, 253, 249, .72);
  box-shadow: 0 10px 28px rgba(67, 46, 33, .045);
}
.catalog-page .sidebar-divider {
  height: 1px;
  margin: 16px 0;
  background: rgba(117, 75, 60, .12);
}
.catalog-page .sidebar-heading,
.catalog-page .price-filter > label,
.catalog-page .material-filter legend {
  display: block;
  margin: 0 0 10px;
  color: var(--ink);
  font: 800 11px/1.2 Inter, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.catalog-page .search-box span {
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: .08em;
}
.catalog-page .search-box input {
  height: 42px;
  padding: 0 40px 0 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  font-size: 12px;
}
.catalog-page .search-box::before {
  content: "";
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 14px;
  left: auto;
  top: auto;
  width: 11px;
  height: 11px;
  border: 1.5px solid var(--clay-dark);
  border-radius: 50%;
  transform: none;
}
.catalog-page .search-box::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  left: auto;
  top: auto;
  width: 6px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--clay-dark);
  transform: rotate(45deg);
}
.catalog-page .category-filters { gap: 1px; }
.catalog-page .category-filters button {
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #5f554e;
  font-size: 11px;
  font-weight: 500;
  transform: none;
}
.catalog-page .category-filters button::after { content: none; }
.catalog-page .category-filters button span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.catalog-page .category-filters button small {
  color: #8b817a;
  font-size: 10px;
}
.catalog-page .category-filters button.active,
.catalog-page .category-filters button:hover {
  transform: none;
}
.catalog-page .category-filters button.active {
  background: var(--clay-dark);
  color: #fff;
}
.catalog-page .category-filters button.active small { color: rgba(255,255,255,.85); }
.catalog-page .price-filter input {
  width: 100%;
  height: 18px;
  margin: 2px 0 4px;
  accent-color: var(--clay-dark);
}
.catalog-page .price-filter div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
}
.catalog-page .price-filter strong { font-weight: 500; }
.catalog-page .material-filter {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.catalog-page .material-filter label {
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  min-height: 28px;
  color: #5f554e;
  font-size: 10px;
  cursor: pointer;
}
.catalog-page .material-filter input {
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: var(--clay-dark);
}
.catalog-page .material-filter small { color: #8b817a; }
.catalog-page .catalog-delivery-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px -1px -1px;
  padding: 16px;
  border: 1px solid rgba(117, 75, 60, .13);
  border-radius: 10px;
  background: rgba(239, 225, 207, .54);
  color: var(--clay-dark);
}
.catalog-page .catalog-delivery-note i { font-size: 20px; }
.catalog-page .catalog-delivery-note strong,
.catalog-page .catalog-delivery-note small { display: block; }
.catalog-page .catalog-delivery-note strong { color: var(--ink); font-size: 11px; }
.catalog-page .catalog-delivery-note small { margin-top: 2px; color: var(--muted); font-size: 9px; }
.catalog-page .catalog-public-tabs {
  justify-content: flex-start;
  gap: 18px;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}
.catalog-page .catalog-public-tabs a {
  position: relative;
  min-width: 0;
  padding: 3px 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  font-size: 11px;
}
.catalog-page .catalog-public-tabs a.active {
  background: transparent;
  color: var(--ink);
}
.catalog-page .catalog-public-tabs a.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--clay-dark);
}
.catalog-page .catalog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 11px;
}
.catalog-page .catalog-breadcrumb a { color: inherit; text-decoration: none; }
.catalog-page .catalog-heading h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0;
}
.catalog-page .catalog-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
}
.catalog-page .catalog-category-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 10px;
  align-items: center;
  margin: 26px 0 30px;
}
.catalog-page .catalog-category-chips {
  display: flex;
  gap: 10px;
  overflow: hidden;
  scroll-behavior: smooth;
}
.catalog-page .catalog-category-chips button,
.catalog-page .catalog-chip-next {
  min-height: 38px;
  border: 1px solid rgba(117, 75, 60, .14);
  border-radius: 7px;
  background: rgba(255, 253, 249, .68);
  color: var(--ink);
  font: 600 10px/1 Inter, sans-serif;
  cursor: pointer;
}
.catalog-page .catalog-category-chips button {
  flex: 0 0 auto;
  padding: 0 17px;
  white-space: nowrap;
}
.catalog-page .catalog-category-chips button.active {
  border-color: var(--clay-dark);
  background: var(--clay-dark);
  color: #fff;
}
.catalog-page .catalog-chip-next { display: grid; padding: 0; place-items: center; }
.catalog-page .shop-toolbar {
  margin: 0 0 18px;
  padding: 0;
}
.catalog-page .shop-toolbar p { font-size: 11px; }
.catalog-page .shop-toolbar select {
  width: 200px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 10px;
}
.catalog-page .product-catalog {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 0;
}
.catalog-page .shop-card {
  overflow: hidden;
  border: 1px solid rgba(117, 75, 60, .13);
  border-radius: 12px;
  background: rgba(255, 253, 249, .74);
  box-shadow: 0 5px 15px rgba(67, 46, 33, .035);
}
.catalog-page .shop-card::before { content: none; }
.catalog-page .shop-card:hover {
  transform: translateY(-3px);
  border-color: rgba(117, 75, 60, .26);
  box-shadow: 0 12px 28px rgba(67, 46, 33, .08);
}
.catalog-page .shop-media {
  aspect-ratio: 1 / 1.04;
  margin: 0;
  border-radius: 0;
  background: #e7ddd1;
}
.catalog-page .shop-card-body {
  gap: 7px;
  min-height: 117px;
  padding: 12px 11px 10px;
}
.catalog-page .shop-card-body strong {
  max-width: 100%;
  min-height: 2.25em;
  font-size: 16px;
  line-height: 1.08;
  letter-spacing: 0;
}
.catalog-page .product-tag {
  font-size: 7px;
  letter-spacing: .14em;
}
.catalog-page .product-price {
  display: block;
  margin-top: auto;
  padding: 5px 0 0;
  border: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
}
.catalog-page .product-price::after { content: none; }
.catalog-page .product-favorite {
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(117, 75, 60, .12);
  background: rgba(255, 253, 249, .94);
  box-shadow: none;
}
.catalog-page .shop-card-actions {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 6px;
  padding: 0 8px 8px;
}
.catalog-page .product-quick-add,
.catalog-page .shop-card-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin: 0;
  border: 1px solid rgba(117, 75, 60, .14);
  border-radius: 7px;
  background: rgba(255, 253, 249, .82);
  color: var(--ink);
  text-decoration: none;
}
.catalog-page .product-quick-add { width: auto; padding: 0; }
.catalog-page .product-quick-add:hover {
  background: var(--ink);
  color: #fff;
  transform: none;
}
.catalog-page .shop-card-view {
  background: #efe4d8;
  font: 700 9px/1 Inter, sans-serif;
}
.catalog-page .shop-card-view:hover { background: var(--clay-dark); color: #fff; }

@media (max-width: 1040px) {
  .catalog-page .shop-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 24px;
    width: min(100% - 32px, 960px);
  }
  .catalog-page .product-catalog { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  .catalog-page .site-header {
    top: 8px;
    left: 10px;
    width: calc(100% - 20px);
    height: 60px;
    padding: 0 8px 0 13px;
    border: 1px solid rgba(154, 106, 82, .14);
    border-radius: 30px;
    box-shadow: 0 12px 30px rgba(45, 35, 27, .09);
  }
  .catalog-page .site-header .brand-text { font-size: 15px; }
  .catalog-page .shop-layout {
    display: flex;
    width: 100%;
    padding: 88px 12px 70px;
  }
  .catalog-page .shop-main { width: 100%; }
  .catalog-page .catalog-public-tabs { margin-bottom: 18px; }
  .catalog-page .catalog-breadcrumb { margin-bottom: 10px; }
  .catalog-page .catalog-heading h1 { font-size: 30px; }
  .catalog-page .catalog-heading p { max-width: 330px; font-size: 10px; line-height: 1.5; }
  .catalog-page .catalog-category-strip { margin: 20px 0; }
  .catalog-page .catalog-category-chips { overflow-x: auto; scrollbar-width: none; }
  .catalog-page .catalog-category-chips::-webkit-scrollbar { display: none; }
  .catalog-page .shop-sidebar {
    position: static;
    display: block;
    order: 2;
    width: 100%;
    margin-top: 24px;
    padding: 12px;
    border-radius: 10px;
  }
  .catalog-page .shop-layout { flex-wrap: wrap; }
  .catalog-page .shop-sidebar .sidebar-heading,
  .catalog-page .shop-sidebar .sidebar-divider,
  .catalog-page .price-filter,
  .catalog-page .material-filter,
  .catalog-page .catalog-delivery-note { display: none; }
  .catalog-page .search-box span { margin-bottom: 8px; }
  .catalog-page .category-filters {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    margin-top: 10px;
    scrollbar-width: none;
  }
  .catalog-page .category-filters::-webkit-scrollbar { display: none; }
  .catalog-page .category-filters button {
    flex: 0 0 auto;
    padding: 0 12px;
    border: 1px solid rgba(117, 75, 60, .12);
  }
  .catalog-page .category-filters button small { margin-left: 8px; }
  .catalog-page .shop-toolbar { margin-top: 0; }
  .catalog-page .shop-toolbar select { width: 155px; }
  .catalog-page .product-catalog { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 9px; }
  .catalog-page .shop-card { border-radius: 9px; }
  .catalog-page .shop-card-body { min-height: 102px; padding: 9px 8px 8px; }
  .catalog-page .shop-card-body strong { min-height: 2.2em; font-size: 14px; }
  .catalog-page .shop-card-actions { grid-template-columns: 38px minmax(0, 1fr); padding: 0 6px 6px; }
  .catalog-page .product-quick-add,
  .catalog-page .shop-card-view { min-height: 34px; }
  .catalog-page .product-favorite { top: 7px; right: 7px; width: 30px; height: 30px; }
}

/* Home v64: remove oversized gaps while preserving clear section rhythm. */
.home-page .home-services { padding-top: 34px; padding-bottom: 24px; }
.home-page .home-products { padding-top: 34px; padding-bottom: 34px; }
.home-page .home-custom { padding-top: 0; padding-bottom: 24px; }
.home-page .home-prices { padding-top: 34px; padding-bottom: 42px; }
.home-page .contact { padding-top: 44px; padding-bottom: 58px; }

/* Catalog v64: clearer left-aligned sort control. */
.catalog-page .shop-toolbar {
  justify-content: flex-start;
  align-items: flex-end;
  gap: 18px;
}
.catalog-page .catalog-sort {
  display: grid;
  gap: 7px;
  width: min(260px, 100%);
  color: var(--ink);
  font: 800 12px/1 Inter, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.catalog-page .catalog-sort select,
.catalog-page .shop-toolbar .catalog-sort select {
  width: 100%;
  max-width: none;
  height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(117, 75, 60, .28);
  border-radius: 10px;
  background-color: rgba(255, 253, 249, .94);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 7px 18px rgba(67, 46, 33, .06);
  cursor: pointer;
}
.catalog-page .shop-toolbar p { padding-bottom: 14px; }

@media (max-width: 780px) {
  .home-page .home-services { padding-top: 20px; padding-bottom: 12px; }
  .home-page .home-products { padding-top: 28px; padding-bottom: 28px; }
  .home-page .home-custom { padding-top: 0; padding-bottom: 20px; }
  .home-page .home-prices { padding-top: 28px; padding-bottom: 36px; }
  .home-page .contact { padding-top: 36px; padding-bottom: 58px; }
  .catalog-page .shop-toolbar { align-items: stretch; gap: 9px; }
  .catalog-page .catalog-sort { width: 100%; }
  .catalog-page .shop-toolbar p { padding: 0; }
}

/* Catalog v65: compact count and sort control on one line. */
.catalog-page .shop-toolbar {
  display: flex;
  flex-direction: row !important;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 14px;
}
.catalog-page .shop-toolbar p {
  flex: 0 0 auto;
  margin: 0;
  padding: 0 0 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}
.catalog-page .shop-toolbar p strong { font: inherit; }
.catalog-page .catalog-sort {
  flex: 0 1 240px;
  width: 240px;
}

@media (max-width: 780px) {
  .catalog-page .shop-toolbar {
    align-items: flex-end;
    gap: 10px;
  }
  .catalog-page .shop-toolbar p {
    padding-bottom: 13px;
    font-size: 12px;
  }
  .catalog-page .catalog-sort {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
  }
  .catalog-page .catalog-sort select,
  .catalog-page .shop-toolbar .catalog-sort select {
    height: 44px;
    min-width: 0;
    font-size: 12px;
  }
}

/* Hide scrollbar chrome site-wide while preserving wheel, touch and keyboard scrolling. */
html,
body,
* {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
.header-v2 .header-image-icon {
  width: 23px;
  height: 23px;
  object-fit: contain;
}
.header-v2 .header-image-icon-account { width: 21px; height: 21px; }
.header-v2 .header-image-icon-heart { width: 22px; height: 22px; }
.header-v2 .header-image-icon-cart { width: 24px; height: 24px; }
.header-v2 .header-image-icon-search { width: 21px; height: 21px; }
.header-v2 .header-search-toggle { margin-right: 15px; }
.header-v2 .cart-toggle::before,
.header-v2 .cart-toggle::after,
.header-v2 .header-favorites-label {
  display: none !important;
  content: none !important;
}
.header-v2 .header-action-badge,
.header-v2 [data-cart-count],
.header-v2 [data-favorite-count] {
  position: absolute !important;
  z-index: 3;
  top: -2px !important;
  right: -3px !important;
  display: grid !important;
  min-width: 18px !important;
  width: auto !important;
  height: 18px !important;
  margin: 0 !important;
  padding: 0 5px !important;
  place-items: center;
  border: 2px solid #fffdf9;
  border-radius: 999px;
  background: var(--clay-dark) !important;
  color: #fff !important;
  font: 800 9px/1 Inter, sans-serif !important;
}
.header-v2 .header-action-badge[hidden],
.header-v2 [data-cart-count][hidden],
.header-v2 [data-favorite-count][hidden] {
  display: none !important;
}
.header-search-panel[hidden] { display: none !important; }
.header-search-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 12px;
  z-index: 40;
  width: min(560px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid rgba(117, 75, 60, .16);
  border-radius: 12px;
  background: rgba(255, 253, 249, .98);
  box-shadow: 0 26px 70px rgba(48, 34, 25, .2);
}
.header-search-form {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 10px;
}
.header-search-scope,
.header-search-field {
  display: grid;
  align-items: center;
  border: 1px solid rgba(117, 75, 60, .16);
  border-radius: 8px;
  background: #fff;
}
.header-search-scope {
  grid-template-columns: auto 1fr;
  gap: 7px;
  padding-left: 10px;
}
.header-search-scope span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}
.header-search-scope select {
  min-width: 0;
  height: 46px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
}
.header-search-field {
  grid-template-columns: 25px minmax(0, 1fr) 34px;
  padding: 0 8px 0 11px;
}
.header-search-field .header-image-icon {
  width: 19px;
  height: 19px;
}
.header-search-field input {
  width: 100%;
  height: 46px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}
.header-search-field input::-webkit-search-cancel-button {
  display: none;
}
.header-search-field button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.header-search-results { margin-top: 10px; }
.header-search-hint {
  margin: 0;
  padding: 13px 10px;
  color: var(--muted);
  font-size: 13px;
}
.header-search-result-list {
  display: grid;
  gap: 3px;
}
.header-search-result-list a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  min-height: 58px;
  padding: 5px 8px;
  border-radius: 8px;
}
.header-search-result-list a:hover { background: rgba(154, 106, 82, .08); }
.header-search-result-list img {
  width: 48px;
  height: 48px;
  border-radius: 7px;
  object-fit: cover;
  background: var(--paper);
}
.header-search-result-list strong,
.header-search-result-list small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header-search-result-list strong { font-size: 13px; }
.header-search-result-list small { color: var(--muted); font-size: 11px; }
.header-search-result-list b {
  color: var(--clay-dark);
  font-size: 12px;
  white-space: nowrap;
}
.header-search-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  margin-top: 8px;
  padding: 0 12px;
  border-top: 1px solid rgba(117, 75, 60, .12);
  color: var(--clay-dark);
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 780px) {
  .site-header.header-v2 {
    top: 10px;
    left: 10px;
    right: 10px;
    height: 58px;
    min-height: 58px;
    padding: 0 8px 0 14px;
  }
  .header-v2 .brand-text { font-size: 14px; }
  .header-v2 .brand-mark { width: 23px; height: 23px; }
  .header-v2 .header-actions { gap: 1px; }
  .header-v2 .header-icon-action,
  .header-v2 .account-link,
  .header-v2 .header-favorites-link,
  .header-v2 .cart-toggle,
  .header-v2 .header-search-toggle,
  .header-v2 .menu-toggle {
    width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
  }
  .header-v2 .header-image-icon { width: 20px; height: 20px; }
  .header-v2 .menu-toggle { order: 5; }
  .header-v2 .nav {
    top: 68px;
  }
  .header-v2 .nav .mobile-cart-link,
  .header-v2 .nav .mobile-favorites-link {
    display: flex !important;
  }
  .header-search-panel {
    position: fixed;
    top: 76px;
    right: 12px;
    left: 12px;
    width: auto;
  }
  .header-search-form {
    grid-template-columns: 1fr;
  }
}


/* Product page v26: reference-matched gallery, pricing and review stars. */
.pd-page { width: min(100% - 64px, 1500px); padding-top: 108px; }
.pd-breadcrumbs { display: flex; gap: 10px; align-items: center; margin: 0 8px 28px; color: var(--muted); font-size: 13px; }
.pd-breadcrumbs a { color: inherit; text-decoration: none; }
.pd-breadcrumbs i { font-size: 9px; }
.pd-hero-grid { grid-template-columns: minmax(0, 1.48fr) minmax(420px, .82fr); gap: 54px; }
.pd-gallery-card { display: block; padding: 0; overflow: hidden; border-radius: 22px; background: #fff; }
.pd-main-media { aspect-ratio: 1 / .82; border-radius: 0; background: #fff; cursor: default; }
.pd-main-media img { display: block; object-fit: cover; }
.pd-media-zoom { position: absolute; top: 20px; right: 20px; z-index: 2; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(117,75,60,.18); border-radius: 50%; background: rgba(255,255,255,.94); color: var(--clay-dark); cursor: zoom-in; box-shadow: 0 8px 24px rgba(70,45,30,.1); }
.pd-media-zoom i { font-size: 20px; }
.pd-discount-badge { position: absolute; top: 24px; left: 24px; z-index: 2; padding: 10px 14px; border-radius: 999px; background: var(--clay-dark); color: #fff; font: 800 17px/1 Inter,sans-serif; }
.pd-thumbs-shell { display: grid; grid-template-columns: 48px minmax(0,1fr) 48px; gap: 14px; align-items: center; padding: 18px 14px; border-top: 1px solid rgba(154,106,82,.12); background: #fff; }
.pd-thumbs { display: flex; gap: 12px; min-width: 0; overflow-x: auto; align-content: initial; scrollbar-width: none; }
.pd-thumbs::-webkit-scrollbar { display: none; }
.pd-thumbs button { flex: 0 0 88px; width: 88px; border-radius: 8px; background: #fff; }
.pd-thumbs img { object-fit: cover; }
.pd-thumb-arrow { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(117,75,60,.18); border-radius: 50%; background: #fff; color: var(--ink); cursor: pointer; }
.pd-info-card { padding: 16px 0 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.pd-info-card h1 { max-width: 100%; font-size: clamp(44px,4vw,68px); line-height: .98; }
.pd-short { font-size: 15px; }
.pd-rating { flex-wrap: nowrap; gap: 8px; }
.pd-stars { flex: 0 0 auto; gap: 5px; white-space: nowrap; }
.pd-stars span, .pd-review span > span { display: inline-grid; width: 16px; height: 18px; flex: 0 0 16px; place-items: center; }
.pd-stars i, .pd-review span > span i { display: inline-block !important; width: auto !important; height: auto !important; color: inherit; background: none !important; font-size: 16px; line-height: 1; }
.pd-options { grid-template-columns: 1fr; gap: 18px; }
.pd-options select { min-height: 54px; border-radius: 12px; }
.pd-price-row { display: flex; gap: 15px; align-items: baseline; margin-top: 26px; }
.pd-price { display: inline; margin: 0; font-size: 40px; }
.pd-price-row del { color: #9c9893; font-size: 22px; font-weight: 700; }
.pd-stock { margin-left: auto; padding: 9px 14px; border-radius: 999px; background: #f5f7f0; color: #568450; font-size: 13px; font-weight: 800; }
.pd-stock i { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: #55a051; }
.pd-delivery-line { margin: 10px 0 18px; color: var(--muted); font-size: 13px; }
.pd-add-full { width: 100%; min-height: 60px; border-radius: 14px; font-size: 16px; }
.pd-qty-favorite-row { display: grid; grid-template-columns: 132px minmax(0,1fr); gap: 12px; margin-top: 12px; }
.pd-favorite-wide { display: flex; gap: 10px; align-items: center; justify-content: center; min-height: 52px; border: 1px solid rgba(154,90,52,.58); border-radius: 14px; background: transparent; color: var(--ink); font-weight: 800; cursor: pointer; }
.pd-favorite-wide.active { color: #a64747; }
.pd-feature-strip { display: none; }
.pd-lower-grid { grid-template-columns: minmax(0,1.48fr) minmax(420px,.82fr); gap: 54px; margin-top: 28px; }
.pd-benefits { grid-template-columns: repeat(2,minmax(0,1fr)); }
.pd-image-modal-stage { position: relative; background: #fff; }
.pd-image-modal-nav { position: absolute; top: 50%; z-index: 4; display: grid; width: 52px; height: 52px; place-items: center; transform: translateY(-50%); border: 1px solid rgba(117,75,60,.18); border-radius: 50%; background: rgba(255,255,255,.94); color: var(--ink); cursor: pointer; }
.pd-image-modal-nav.previous { left: 18px; }
.pd-image-modal-nav.next { right: 18px; }

@media (max-width: 1040px) {
  .pd-page { width: min(100% - 32px,980px); }
  .pd-hero-grid, .pd-lower-grid { grid-template-columns: 1fr; gap: 26px; }
  .pd-info-card { padding: 10px 8px; }
}
@media (max-width: 780px) {
  .pd-page { width: calc(100% - 20px); padding-top: 92px; }
  .pd-breadcrumbs { margin-bottom: 16px; overflow: hidden; white-space: nowrap; }
  .pd-gallery-card { padding: 0; }
  .pd-main-media { aspect-ratio: 1; }
  .pd-thumbs-shell { grid-template-columns: 38px minmax(0,1fr) 38px; gap: 8px; padding: 12px 8px; }
  .pd-thumb-arrow { width: 36px; height: 36px; }
  .pd-thumbs { order: initial; }
  .pd-thumbs button { flex-basis: 64px; width: 64px; }
  .pd-info-card h1 { font-size: 42px; }
  .pd-rating { flex-wrap: wrap; }
  .pd-qty-favorite-row { grid-template-columns: 112px minmax(0,1fr); }
  .pd-favorite-wide span { font-size: 12px; }
  .pd-image-modal { padding: 8px; }
  .pd-image-modal-nav { width: 42px; height: 42px; }
}


/* Product page v30: only the requested mobile/back/cart refinements. */
.pd-back-button {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  margin-right: 4px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(117, 75, 60, .2);
  border-radius: 50%;
  background: rgba(255, 253, 249, .92);
  box-shadow: 0 8px 22px rgba(77, 54, 40, .08);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.pd-back-button:hover { transform: translateX(-2px); border-color: rgba(117, 75, 60, .48); background: #fff; }
.pd-back-button img { display: block; width: 25px; height: 25px; object-fit: contain; }
.pd-add-full { display: inline-flex; gap: 10px; align-items: center; justify-content: center; padding-inline: 24px; text-align: center; }
.pd-add-full::after { display: none !important; content: none !important; }
.pd-add-full i { flex: 0 0 auto; margin: 0; font-size: 16px; }

@media (max-width: 780px) {
  .pd-breadcrumbs { gap: 7px; }
  .pd-back-button { flex-basis: 38px; width: 38px; height: 38px; }
  .pd-back-button img { width: 23px; height: 23px; }
  .pd-price-row { display: grid; grid-template-columns: max-content max-content minmax(0, 1fr); gap: 8px; align-items: baseline; }
  .pd-price { font-size: 34px; white-space: nowrap; }
  .pd-price-row del { align-self: center; font-size: 15px; line-height: 1; white-space: nowrap; }
  .pd-stock { align-self: center; justify-self: end; margin-left: 0; padding: 8px 10px; font-size: 11px; white-space: nowrap; }
}

.admin-commerce-shell { display: grid; gap: 18px; }
.commerce-rule-form { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(154,106,82,.16); }
.commerce-existing { border-left: 4px solid var(--clay-dark); }
.checkout-coupon { margin: 18px 0; padding: 16px 0; border-top: 1px solid rgba(154,106,82,.16); border-bottom: 1px solid rgba(154,106,82,.16); }
.checkout-coupon label { display: block; margin-bottom: 8px; color: var(--ink); font-weight: 800; }
.checkout-coupon > div { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 8px; }
.checkout-coupon input { min-width: 0; min-height: 44px; padding: 0 12px; border: 1px solid rgba(154,106,82,.24); border-radius: 8px; background: #fff; text-transform: uppercase; }

/* Branding v32: wordmark only, without the old square symbol. */
.brand-mark,
.shop-panel-brand .brand-mark,
body.admin-app-mode .brand-mark,
.header-v2 .brand-mark {
  display: none !important;
}
.brand,
.header-v2 .brand {
  gap: 0;
}
.site-header.header-v2 {
  padding-left: 16px;
}
@media (max-width: 780px) {
  .site-header.header-v2 { padding-left: 10px; }
}

/* Branding v33: transparent logo supplied for the wordmark. */
.brand-logo {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  object-fit: contain;
}
.brand,
.header-v2 .brand {
  gap: 8px;
}
@media (max-width: 780px) {
  .brand-logo {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }
}

/* Product recommendations v38. */
.pd-related {
  margin: 54px 0 24px;
  padding-top: 38px;
  border-top: 1px solid rgba(122, 78, 57, .18);
}
.pd-related-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.pd-related-head .eyebrow { margin: 0 0 5px; }
.pd-related-head h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: 0;
}
.pd-related-controls {
  display: flex;
  gap: 9px;
  flex: 0 0 auto;
}
.pd-related-controls button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 78, 57, .25);
  border-radius: 50%;
  background: #fffdf9;
  color: var(--clay-dark);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
}
.pd-related-controls button:hover:not(:disabled) {
  background: var(--clay-dark);
  color: #fff;
}
.pd-related-controls button:disabled {
  opacity: .32;
  cursor: default;
}
.pd-related-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(220px, 21vw, 286px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding: 2px 2px 12px;
}
.pd-related-track::-webkit-scrollbar { display: none; }
.pd-related-card {
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(122, 78, 57, .15);
  border-radius: 8px;
  background: rgba(255, 253, 249, .82);
  box-shadow: 0 14px 34px rgba(74, 49, 37, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}
.pd-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(74, 49, 37, .14);
}
.pd-related-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f3ece3;
}
.pd-related-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}
.pd-related-card:hover .pd-related-media img { transform: scale(1.025); }
.pd-related-body {
  min-height: 126px;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 15px 16px 17px;
}
.pd-related-body small {
  color: var(--clay);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.pd-related-body strong {
  min-height: 42px;
  font-size: 15px;
  line-height: 1.35;
}
.pd-related-body b {
  color: var(--clay-dark);
  font-size: 18px;
}
@media (max-width: 780px) {
  .pd-related { margin-top: 38px; padding-top: 28px; }
  .pd-related-head { align-items: center; gap: 14px; }
  .pd-related-head h2 { font-size: 21px; white-space: nowrap; }
  .pd-related-controls button { width: 40px; height: 40px; }
  .pd-related-track { grid-auto-columns: min(36vw, 150px); gap: 10px; }
  .pd-related-body { min-height: 102px; gap: 5px; padding: 11px 10px 12px; }
  .pd-related-body small { font-size: 8px; }
  .pd-related-body strong { min-height: 36px; font-size: 12px; line-height: 1.3; }
  .pd-related-body b { font-size: 15px; }

  .pd-description-copy.is-collapsible {
    position: relative;
    max-height: 8.5em;
    overflow: hidden;
    transition: max-height .28s ease;
  }
  .pd-description-copy.is-collapsible:not(.expanded)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2.8em;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255, 253, 249, 0), #fffdf9 88%);
  }
  .pd-description-copy.is-collapsible.expanded { max-height: 80em; }
  .pd-description-text { margin: 0; }
  .pd-description-toggle {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    margin-top: 8px;
    padding: 0 11px;
    border: 1px solid rgba(122, 78, 57, .28);
    border-radius: 999px;
    background: #fffdf9;
    color: var(--clay-dark);
    font: 700 11px/1 Inter, sans-serif;
    cursor: pointer;
  }
}

@media (min-width: 781px) {
  .pd-description-toggle { display: none; }
}

/* Image modal gestures v44. */
.pd-image-modal-stage { overflow: hidden; }
.pd-image-modal-stage img {
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
  cursor: default;
  will-change: transform;
}
.pd-image-modal-stage img.is-zoomed { cursor: grab; }
.pd-image-modal-stage img.is-interacting { cursor: grabbing; transition: none; }
.pd-image-modal-stage .pd-modal-transition-image {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  object-fit: contain;
  pointer-events: none;
}
@media (max-width: 780px) {
  .pd-image-modal-controls { display: none; }
  .pd-image-modal-panel { grid-template-rows: minmax(0, 1fr); }
}

/* Mobile header and menu v49. */
@media (max-width: 780px) {
  .site-header.header-v2 {
    top: 10px;
    right: 10px;
    left: 10px;
    height: 58px;
    min-height: 58px;
    padding: 0 8px 0 11px;
    border: 1px solid rgba(80, 55, 42, .1);
    border-radius: 29px;
    background: rgba(255, 253, 249, .97);
    box-shadow: 0 12px 30px rgba(67, 47, 35, .12);
    backdrop-filter: blur(14px);
  }
  .header-v2 .brand { min-width: 0; gap: 6px; }
  .header-v2 .brand-logo { width: 25px; height: 25px; flex-basis: 25px; }
  .header-v2 .brand-text { font-size: 14px; white-space: nowrap; }
  .header-v2 .header-actions { gap: 0; }
  .header-v2 .header-icon-action,
  .header-v2 .account-link,
  .header-v2 .header-favorites-link,
  .header-v2 .cart-toggle,
  .header-v2 .header-search-toggle {
    width: 32px;
    min-width: 32px;
    height: 36px;
    min-height: 36px;
    border: 0;
    border-radius: 50%;
    background: transparent;
  }
  .header-v2 .header-image-icon { width: 19px; height: 19px; }
  .header-v2 .menu-toggle {
    box-sizing: border-box;
    width: 36px !important;
    min-width: 36px !important;
    max-width: 36px;
    height: 36px !important;
    min-height: 36px !important;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    margin: 0 0 0 3px;
    padding: 0;
    border: 1px solid rgba(122, 78, 57, .24);
    border-radius: 50% !important;
    background: #fffaf4;
    color: var(--clay-dark);
    transition: background .12s ease, color .12s ease, transform .12s ease;
  }
  .header-v2 .menu-toggle:active { transform: scale(.94); }
  .header-v2 .menu-toggle.is-open {
    background: var(--clay-dark);
    color: #fff;
  }
  .header-v2 .menu-toggle .header-menu-icon { font-size: 16px; }
  .header-v2 .nav {
    position: fixed;
    top: 76px;
    right: 12px;
    left: 12px;
    z-index: 90;
    width: auto;
    height: auto;
    max-height: calc(100vh - 92px);
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    overflow-y: auto;
    padding: 7px;
    border: 1px solid rgba(80, 55, 42, .1);
    border-radius: 14px;
    background: rgba(255, 253, 249, .985);
    box-shadow: 0 18px 44px rgba(55, 38, 29, .16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-5px);
    transition: opacity .12s ease, transform .12s ease, visibility 0s linear .12s;
  }
  .menu-open .header-v2 .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .header-v2 .nav a {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 13px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
    color: #4f4741;
    font-size: 13px;
    font-weight: 700;
  }
  .header-v2 .nav a + a { border-top: 0; }
  .header-v2 .nav a::after { display: none; }
  .header-v2 .nav a.active {
    background: rgba(154, 106, 82, .1);
    color: var(--clay-dark);
  }
  .header-v2 .nav .mobile-cart-link,
  .header-v2 .nav .mobile-favorites-link { display: flex !important; }
  body.menu-open::after { display: none !important; }
}

/* Keep the catalog composition authoritative after legacy header/mobile rules. */
.catalog-page .category-filters button i {
  width: 14px;
  flex: 0 0 14px;
  color: #8b817a;
  text-align: center;
  font-size: 10px;
}
.catalog-page .category-filters button span {
  flex: 1 1 auto;
  text-align: left;
}
.catalog-page .category-filters button.active i { color: #fff; }
.catalog-page .site-header.header-v2 {
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 86px;
  padding: 0 4vw;
  border: 0;
  border-bottom: 1px solid rgba(117, 75, 60, .12);
  border-radius: 0;
  background: rgba(255, 253, 249, .96);
  box-shadow: none;
}
.catalog-page .shop-layout {
  width: auto;
  max-width: none;
  margin-inline: 0;
  padding-right: 4vw;
  padding-left: 4vw;
}
.catalog-page .product-favorite {
  display: grid !important;
  padding: 0 !important;
  place-items: center;
  line-height: 1;
}
.catalog-page .product-favorite .product-svg-icon,
.catalog-page .product-favorite svg {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0;
}
.catalog-page .catalog-category-strip { display: none; }
.catalog-page .catalog-public-tabs a,
.catalog-page .catalog-breadcrumb,
.catalog-page .catalog-heading p,
.catalog-page .shop-toolbar p { font-size: 12px; }
.catalog-page .search-box span,
.catalog-page .sidebar-heading,
.catalog-page .price-filter > label,
.catalog-page .material-filter legend { font-size: 12px; }
.catalog-page .search-box input { font-size: 13px; }
.catalog-page .category-filters button { font-size: 12px; }
.catalog-page .category-filters button small { font-size: 11px; }
.catalog-page .price-filter div,
.catalog-page .material-filter label { font-size: 11px; }
.catalog-page .product-tag { font-size: 8px; }
.catalog-page .product-price { font-size: 12px; }
.catalog-page .shop-card-view { font-size: 10px; }
@media (min-width: 781px) {
  .catalog-page .shop-sidebar {
    position: sticky;
    top: 104px;
    max-height: calc(100vh - 122px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-color: rgba(117, 75, 60, .38) transparent;
    scrollbar-width: thin;
  }
  .catalog-page .shop-sidebar::-webkit-scrollbar { width: 6px; }
  .catalog-page .shop-sidebar::-webkit-scrollbar-track { background: transparent; }
  .catalog-page .shop-sidebar::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(117, 75, 60, .38);
  }
}
@media (max-width: 780px) {
  .catalog-page .site-header.header-v2 {
    top: 8px;
    left: 10px;
    width: calc(100% - 20px);
    height: 60px;
    padding: 0 8px 0 13px;
    border: 1px solid rgba(154, 106, 82, .14);
    border-radius: 30px;
    box-shadow: 0 12px 30px rgba(45, 35, 27, .09);
  }
  .catalog-page .shop-layout {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }
  .catalog-page .catalog-category-strip { display: grid; }
  .catalog-page .shop-sidebar {
    max-height: none;
    overflow: visible;
  }
}

/* Final scrollbar rule: scrolling stays enabled, only the visual bars are hidden. */
html,
body,
* {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

/* Catalog v63: capped desktop width and slightly stronger supporting typography. */
.catalog-page .shop-layout {
  box-sizing: border-box;
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(22px, 3vw, 44px);
  padding-left: clamp(22px, 3vw, 44px);
}
.catalog-page .catalog-public-tabs a,
.catalog-page .catalog-breadcrumb,
.catalog-page .catalog-heading p,
.catalog-page .shop-toolbar p { font-size: 13px; }
.catalog-page .search-box span,
.catalog-page .sidebar-heading,
.catalog-page .price-filter > label,
.catalog-page .material-filter legend { font-size: 13px; }
.catalog-page .search-box input { font-size: 14px; }
.catalog-page .category-filters button { font-size: 13px; }
.catalog-page .category-filters button small { font-size: 12px; }
.catalog-page .category-filters button i { font-size: 12px; }
.catalog-page .price-filter div,
.catalog-page .material-filter label { font-size: 12px; }
.catalog-page .product-tag { font-size: 9px; }
.catalog-page .product-price { font-size: 15px; }
.catalog-page .shop-card-view { font-size: 11px; }
.catalog-page .product-favorite { width: 36px; height: 36px; }
.catalog-page .product-favorite .product-svg-icon,
.catalog-page .product-favorite svg { width: 20px; height: 20px; }
.catalog-page .product-quick-add .product-svg-icon,
.catalog-page .product-quick-add svg { width: 17px; height: 17px; }

@media (max-width: 780px) {
  .catalog-page .shop-layout {
    max-width: none;
    padding-right: 12px;
    padding-left: 12px;
  }
  .catalog-page .catalog-public-tabs a,
  .catalog-page .catalog-breadcrumb,
  .catalog-page .catalog-heading p,
  .catalog-page .shop-toolbar p { font-size: 12px; }
  .catalog-page .product-price { font-size: 14px; }
  .catalog-page .shop-card-view { font-size: 10px; }
  .catalog-page .product-favorite { width: 32px; height: 32px; }
  .catalog-page .product-favorite .product-svg-icon,
  .catalog-page .product-favorite svg { width: 18px; height: 18px; }
}

/* Keep the compact v65 toolbar authoritative after earlier catalog overrides. */
.catalog-page .shop-toolbar p { font-size: 14px; }
@media (max-width: 780px) {
  .catalog-page .shop-toolbar p { font-size: 12px; }
}

/* Mega menu v66. */
.mega-menu {
  --mega-top: 82px;
  position: fixed;
  top: calc(var(--mega-top) + 10px);
  left: 50%;
  z-index: 1;
  width: min(calc(100vw - 32px), 1440px);
  max-height: min(560px, calc(100vh - var(--mega-top) - 20px));
  overflow: auto;
  border: 1px solid rgba(117, 75, 60, .13);
  border-radius: 22px;
  background: rgba(255, 253, 249, .985);
  box-shadow: 0 24px 50px rgba(48, 34, 26, .16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity .18s linear, transform .18s ease, visibility 0s linear .18s;
  backdrop-filter: blur(18px);
}
.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}
.mega-menu:not(.is-open),
.mega-menu:not(.is-open) * {
  pointer-events: none !important;
}
.mega-menu-inner {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  width: 100%;
  min-height: 360px;
  margin: 0 auto;
  padding: 0 28px;
}
.mega-category-tabs {
  padding: 34px 28px 38px 0;
  border-right: 1px solid rgba(117, 75, 60, .13);
}
.mega-category-tabs > p {
  margin: 0 0 16px;
  color: var(--clay-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mega-category-tabs button {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #544b45;
  font: 750 15px/1.25 Inter, sans-serif;
  text-align: left;
  cursor: pointer;
  transition: background .16s linear, color .16s linear;
}
.mega-category-tabs button i {
  color: #a39a94;
  font-size: 11px;
  transition: transform .16s ease;
}
.mega-category-tabs button:hover,
.mega-category-tabs button.is-active {
  background: #f3ebe2;
  color: var(--clay-dark);
}
.mega-category-tabs button.is-active i { transform: translateX(3px); color: var(--clay-dark); }
.mega-content { position: relative; min-height: 360px; }
.mega-content-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(180px, .65fr) minmax(0, 1.6fr);
  grid-template-rows: auto 1fr;
  gap: 20px 34px;
  padding: 34px 0 38px 34px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(5px);
  transition: opacity .16s linear, transform .16s ease, visibility 0s linear .16s;
}
.mega-content-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}
.mega-panel-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 34px;
}
.mega-panel-heading p { margin: 0; color: var(--muted); font-size: 14px; }
.mega-panel-heading a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--clay-dark);
  font-size: 13px;
  font-weight: 850;
}
.mega-panel-heading a i { font-size: 11px; }
.mega-subcategory-list { display: flex; flex-direction: column; gap: 2px; }
.mega-subcategory-list a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 1px solid rgba(117, 75, 60, .1);
  color: #332f2c;
  font-size: 14px;
  font-weight: 750;
  transition: color .16s linear, padding-left .16s ease;
}
.mega-subcategory-list a:hover { padding-left: 17px; color: var(--clay-dark); }
.mega-subcategory-list a.is-preview-active {
  padding-left: 17px;
  border-radius: 7px;
  background: #f5eee6;
  color: var(--clay-dark);
}
.mega-subcategory-list i { color: #aaa19a; font-size: 9px; }
.mega-featured-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}
.mega-featured-products > a {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(117, 75, 60, .11);
  border-radius: 6px;
  background: #fff;
  transition: border-color .18s linear, transform .18s ease, box-shadow .18s ease;
}
.mega-featured-products > a:hover {
  border-color: rgba(117, 75, 60, .28);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(59, 42, 31, .08);
}
.mega-featured-products img {
  display: block;
  width: 100%;
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
  background: #f1ebe4;
}
.mega-featured-products span { display: block; padding: 12px 13px 14px; }
.mega-featured-products small,
.mega-featured-products strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mega-featured-products small {
  margin-bottom: 5px;
  color: var(--clay-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mega-featured-products strong { color: var(--ink); font-size: 14px; }
.mobile-mega-accordion { display: none; }

@media (max-width: 780px) {
  .mega-menu { display: none !important; }
  .header-v2 .nav > a[href="produse.html"] { position: relative; padding-right: 42px; }
  .header-v2 .nav > a[href="produse.html"]::before {
    content: "\f078";
    position: absolute;
    top: 50%;
    right: 15px;
    display: block;
    transform: translateY(-50%);
    color: #9a6a52;
    font: 900 11px/1 "Font Awesome 6 Free";
    transition: transform .18s ease;
  }
  .header-v2 .nav > a.mega-mobile-open::before { transform: translateY(-50%) rotate(180deg); }
  .mobile-mega-accordion {
    display: block;
    margin: 0 4px 6px;
    overflow: hidden;
    border-top: 1px solid rgba(117, 75, 60, .1);
  }
  .mobile-mega-accordion[hidden] { display: none !important; }
  .mobile-mega-all a,
  .mobile-mega-section > button,
  .mobile-mega-links a {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    border: 0;
    background: transparent;
    color: #4f4741;
    font: 750 12px/1.25 Inter, sans-serif;
    text-decoration: none;
  }
  .mobile-mega-all a { padding: 0 14px; color: var(--clay-dark); }
  .mobile-mega-section > button {
    justify-content: space-between;
    padding: 0 14px;
    cursor: pointer;
  }
  .mobile-mega-section > button i { color: #9a6a52; font-size: 10px; transition: transform .18s ease; }
  .mobile-mega-section > button[aria-expanded="true"] i { transform: rotate(180deg); }
  .mobile-mega-links {
    padding: 3px 8px 7px 20px;
    animation: megaMobileReveal .18s linear;
  }
  .mobile-mega-links[hidden] { display: none !important; }
  .header-v2 .nav .mobile-mega-links a {
    min-height: 38px;
    padding: 0 12px;
    border-left: 2px solid #e7d8ca;
    border-radius: 0;
    color: #746b65;
    font-size: 12px;
    font-weight: 650;
  }
  @keyframes megaMobileReveal {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* Account experience v72. Header styles intentionally remain untouched. */
.auth-page-v72 {
  min-height: 100vh;
  background: #f5ebe1;
}
.auth-page-v72 .auth-page {
  min-height: 100svh;
  margin: 0;
  padding: clamp(128px, 16vh, 154px) 32px 26px;
  background-color: #f5ebe1;
  background-image: url("assets/auth-background-v72.png");
  background-position: left bottom;
  background-size: auto 100%;
  background-repeat: no-repeat;
}
.auth-page-v72 .auth-shell {
  display: grid;
  grid-template-columns: minmax(340px, .78fr) minmax(760px, 1.72fr);
  grid-template-areas: "copy panels" ". benefits";
  gap: 26px 44px;
  width: min(100%, 1420px);
  min-height: calc(100svh - 180px);
  margin: 0 auto;
}
.auth-page-v72 .auth-copy {
  grid-area: copy;
  position: static;
  align-self: start;
  padding: 34px 0 0 28px;
}
.auth-page-v72 .auth-copy .eyebrow,
.auth-page-v72 .auth-reset-dialog .eyebrow {
  margin: 0 0 28px;
  color: #935b3d;
  font: 800 13px/1.2 Inter, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.auth-page-v72 .auth-copy h1 {
  max-width: none;
  margin: 0;
  color: #221c18;
  font: 400 clamp(46px, 4.1vw, 62px)/1.04 Georgia, serif;
  letter-spacing: 0;
}
.auth-title-rule {
  display: block;
  width: 52px;
  height: 2px;
  margin: 28px 0 34px;
  background: #8c5234;
}
.auth-page-v72 .auth-copy p:not(.eyebrow) {
  max-width: 390px;
  margin: 0;
  color: #514a45;
  font: 400 19px/1.75 Inter, sans-serif;
}
.auth-page-v72 .auth-panels {
  grid-area: panels;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.auth-page-v72 .auth-card {
  display: flex;
  min-width: 0;
  min-height: 672px;
  flex-direction: column;
  padding: 44px 42px 38px;
  border: 1px solid rgba(120, 88, 69, .1);
  border-radius: 22px;
  background: rgba(255, 253, 250, .93);
  box-shadow: 0 20px 55px rgba(80, 52, 36, .08);
  backdrop-filter: blur(12px);
}
.auth-card-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 34px;
}
.auth-card-title > span {
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  place-items: center;
  border-radius: 50%;
  background: #faead8;
  color: #804726;
  font-size: 27px;
}
.auth-page-v72 .auth-form h2,
.auth-page-v72 .auth-reset-dialog h2 {
  margin: 0;
  color: #231c18;
  font: 400 30px/1.1 Georgia, serif;
  letter-spacing: 0;
}
.auth-field {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  color: #544b46;
  font: 800 11px/1.2 Inter, sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.auth-field > span {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid rgba(104, 82, 69, .26);
  border-radius: 13px;
  background: rgba(255, 255, 255, .72);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.auth-field > span:focus-within {
  border-color: #9a6041;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(154, 96, 65, .1);
}
.auth-field > span > i { color: #9a9089; font-size: 17px; }
.auth-field input {
  min-width: 0;
  width: 100%;
  height: 50px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #29231f;
  font: 400 15px/1 Inter, sans-serif;
  letter-spacing: 0;
  text-transform: none;
}
.auth-field input::placeholder { color: #aaa19b; opacity: 1; }
.auth-field [data-password-toggle] {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #9b918a;
  cursor: pointer;
}
.auth-login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 32px;
  color: #413934;
  font: 400 14px/1.2 Inter, sans-serif;
}
.auth-login-options label,
.auth-terms {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.auth-login-options input,
.auth-terms input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #885033;
}
.auth-login-options button,
.auth-reset-back {
  padding: 0;
  border: 0;
  background: transparent;
  color: #844c2d;
  font: 600 14px/1.2 Inter, sans-serif;
  cursor: pointer;
}
.auth-primary-button,
.auth-secondary-button {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 28px;
  font: 800 15px/1 Inter, sans-serif;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.auth-primary-button {
  border: 1px solid #7d4021;
  background: linear-gradient(105deg, #a55c2c, #6e3519);
  color: #fff;
  box-shadow: 0 12px 24px rgba(112, 56, 27, .16);
}
.auth-secondary-button {
  margin-top: 28px;
  border: 1px solid #945233;
  background: transparent;
  color: #7d4327;
}
.auth-primary-button:hover,
.auth-secondary-button:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(112, 56, 27, .15); }
.auth-primary-button:disabled,
.auth-secondary-button:disabled { opacity: .6; cursor: wait; }
.auth-page-v72 .form-note {
  min-height: 18px;
  margin: 10px 0 0;
  font: 600 12px/1.4 Inter, sans-serif;
  text-align: center;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 22px 0 18px;
  color: #625b56;
  font: 500 13px/1 Inter, sans-serif;
}
.auth-divider::before,
.auth-divider::after { content: ""; height: 1px; flex: 1; background: rgba(107, 82, 67, .18); }
.auth-google-button {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(104, 82, 69, .28);
  border-radius: 11px;
  background: #fff;
}
.auth-google-button > div { width: 100% !important; }
.auth-google-button iframe { display: block; width: 100% !important; }
.auth-google-placeholder {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(107, 82, 67, .22);
  border-radius: 11px;
  background: rgba(255, 255, 255, .88);
  color: #302722;
  font: 600 15px/1 var(--font-sans);
  opacity: 1;
}
.auth-google-placeholder i { color: #4285f4; font-size: 18px; }
.auth-provider-note {
  min-height: 16px;
  margin: 6px 0 0;
  color: #837b75;
  font: 500 11px/1.4 Inter, sans-serif;
  text-align: center;
}
.auth-provider-note.error,
.auth-page-v72 .form-note.error { color: #b33d35; }
.auth-provider-note.success,
.auth-page-v72 .form-note.success { color: #39734b; }
.auth-terms {
  margin-top: 0;
  color: #514943;
  font: 400 13px/1.35 Inter, sans-serif;
}
.auth-support-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid rgba(107, 82, 67, .16);
  color: #774223;
}
.auth-support-note > i { margin-top: 2px; font-size: 23px; }
.auth-support-note strong,
.auth-support-note small { display: block; }
.auth-support-note strong { font: 800 13px/1.3 Inter, sans-serif; }
.auth-support-note small { margin-top: 5px; color: #4e4742; font: 400 12px/1.3 Inter, sans-serif; }
.auth-support-note button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid #8a4c2b;
  background: transparent;
  color: #7d4327;
  font: 700 12px/1.25 Inter, sans-serif;
  cursor: pointer;
}
.auth-page-v72 .chat-fab { display: none; }
.auth-benefits {
  grid-area: benefits;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-self: end;
  padding: 10px 14px 0;
}
.auth-benefits > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
}
.auth-benefits i { width: 42px; color: #8a4c2b; font-size: 34px; text-align: center; }
.auth-benefits strong,
.auth-benefits small { display: block; }
.auth-benefits strong { color: #754025; font: 800 12px/1.25 Inter, sans-serif; }
.auth-benefits small { margin-top: 5px; color: #665e59; font: 400 12px/1.25 Inter, sans-serif; }
.auth-reset-dialog {
  width: min(460px, calc(100vw - 32px));
  padding: 38px;
  border: 1px solid rgba(120, 88, 69, .15);
  border-radius: 20px;
  background: #fffdf9;
  color: #2b241f;
  box-shadow: 0 28px 80px rgba(45, 30, 20, .25);
}
.auth-reset-dialog::backdrop { background: rgba(37, 29, 24, .48); backdrop-filter: blur(4px); }
.auth-reset-dialog .eyebrow { margin-bottom: 14px; }
.auth-reset-dialog h2 { margin-bottom: 14px; }
.auth-reset-dialog form > p:not(.eyebrow):not(.form-note) { margin: 0 0 24px; color: #746c66; font: 400 14px/1.6 Inter, sans-serif; }
.auth-reset-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(120, 88, 69, .16);
  border-radius: 50%;
  background: #fff;
  color: #342a24;
  cursor: pointer;
}
.auth-reset-back { display: block; margin: 16px auto 0; }
.auth-reset-dialog [hidden] { display: none !important; }

@media (max-width: 1180px) {
  .auth-page-v72 .auth-page { padding: 118px 24px 24px; background-position: 30% bottom; background-size: cover; }
  .auth-page-v72 .auth-shell {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "panels" "benefits";
    min-height: 0;
  }
  .auth-page-v72 .auth-copy { padding: 10px 0 4px; text-align: center; }
  .auth-title-rule { margin-right: auto; margin-left: auto; }
  .auth-page-v72 .auth-copy p:not(.eyebrow) { margin: 0 auto; }
}
@media (max-width: 780px) {
  .auth-page-v72 .auth-page {
    min-height: 100vh;
    padding: 92px 12px 24px;
    background-position: 22% bottom;
  }
  .auth-page-v72 .auth-shell { gap: 22px; }
  .auth-page-v72 .auth-copy .eyebrow { margin-bottom: 14px; }
  .auth-page-v72 .auth-copy h1 { font-size: 40px; }
  .auth-title-rule { margin-top: 20px; margin-bottom: 22px; }
  .auth-page-v72 .auth-copy p:not(.eyebrow) { font-size: 15px; line-height: 1.6; }
  .auth-page-v72 .auth-copy p br { display: none; }
  .auth-page-v72 .auth-panels { grid-template-columns: 1fr; gap: 16px; }
  .auth-page-v72 .auth-card { min-height: 0; padding: 28px 20px; border-radius: 16px; }
  .auth-card-title { margin-bottom: 26px; }
  .auth-card-title > span { width: 52px; height: 52px; flex-basis: 52px; font-size: 22px; }
  .auth-page-v72 .auth-form h2 { font-size: 27px; }
  .auth-field { margin-bottom: 17px; }
  .auth-login-options { margin-bottom: 24px; }
  .auth-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 12px; padding: 12px 4px; }
  .auth-benefits i { width: 34px; font-size: 27px; }
  .auth-reset-dialog { padding: 34px 20px 26px; }
}

/* Account dashboard v74 */
body.account-dashboard-body {
  min-height: 100vh;
  background: #f7f3ed;
  color: #28231f;
}
body.account-dashboard-body::before { display: none; }
body.account-dashboard-body .chat-fab { display: none; }
.account-dashboard-body .account-page {
  min-height: 100vh;
  padding: 108px 0 0;
}
.account-dashboard-shell {
  width: min(100%, 1440px);
  min-height: calc(100vh - 108px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 232px minmax(520px, 1fr) 392px;
  gap: 28px;
  padding: 0 34px;
  background:
    radial-gradient(circle at 49% 7%, rgba(211, 181, 139, .13), transparent 29%),
    linear-gradient(90deg, rgba(255,255,255,.76), rgba(250,247,242,.94) 27%, rgba(248,245,240,.95));
  box-shadow: 0 0 38px rgba(72, 55, 42, .08);
}
.account-dashboard-sidebar {
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 108px);
  padding: 22px 16px 16px;
  border-right: 1px solid rgba(113, 94, 77, .13);
  border-left: 1px solid rgba(113, 94, 77, .08);
  background: rgba(255,255,255,.38);
}
.account-sidebar-person {
  display: grid;
  justify-items: center;
  padding: 0 4px 24px;
  border-bottom: 1px solid rgba(104, 83, 65, .14);
  text-align: center;
}
.account-avatar {
  display: grid;
  width: 74px;
  height: 74px;
  margin-bottom: 15px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3e5d2, #e7d2b4);
  color: #2f2924;
  font: 500 25px/1 Georgia, serif;
}
.account-sidebar-person strong {
  font: 600 17px/1.25 "Playfair Display", Georgia, serif;
}
.account-sidebar-person span {
  max-width: 100%;
  margin-top: 7px;
  overflow: hidden;
  color: #7c746d;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-sidebar-nav {
  display: grid;
  gap: 3px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(104, 83, 65, .14);
}
.account-sidebar-nav button,
.account-sidebar-nav a,
.account-sidebar-logout {
  display: flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  gap: 13px;
  border: 0;
  border-radius: 7px;
  padding: 0 13px;
  background: transparent;
  color: #3e3833;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.account-sidebar-nav button:hover,
.account-sidebar-nav a:hover,
.account-sidebar-logout:hover { color: #7d583e; transform: translateX(2px); }
.account-sidebar-nav button.active { background: #efe2cf; color: #4e3a2b; }
.account-sidebar-nav i,
.account-sidebar-logout i { width: 17px; color: #a98556; font-size: 16px; text-align: center; }
.account-sidebar-logout { margin: 12px 0 18px; }
.account-sidebar-inspiration {
  overflow: hidden;
  margin-top: auto;
  border: 1px solid rgba(105, 82, 62, .13);
  border-radius: 8px;
  background: #fffdfa;
  box-shadow: 0 8px 20px rgba(54, 40, 30, .08);
}
.account-sidebar-inspiration img { width: 100%; height: 118px; object-fit: cover; }
.account-sidebar-inspiration div { padding: 14px; }
.account-sidebar-inspiration h2 { margin: 0; font: 600 14px/1.25 "Playfair Display", Georgia, serif; }
.account-sidebar-inspiration p { margin: 6px 0 12px; color: #7b746d; font-size: 10px; }
.account-sidebar-inspiration a {
  display: grid;
  min-height: 34px;
  place-items: center;
  border-radius: 6px;
  background: #efe2cf;
  font-size: 10px;
  font-weight: 800;
}
.account-dashboard-main { min-width: 0; min-height: calc(100vh - 108px); padding: 22px 0 24px; }
.account-dashboard-topline {
  display: flex;
  min-height: 84px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 10px;
}
.account-dashboard-greeting h1 {
  margin: 0;
  font: 600 clamp(34px, 3vw, 43px)/1.05 "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}
.account-dashboard-greeting p { margin: 8px 0 0; color: #756e68; font-size: 12px; }
.account-mobile-avatar,
.account-mobile-card-footer { display: none; }
.account-dashboard-stats { display: grid; grid-template-columns: repeat(3, 94px); gap: 6px; }
.account-dashboard-stats article {
  min-height: 82px;
  display: grid;
  grid-template-columns: 23px 1fr;
  grid-template-rows: 28px 1fr;
  align-items: center;
  border: 1px solid rgba(109, 87, 68, .11);
  border-radius: 8px;
  padding: 10px 11px;
  background: rgba(255,255,255,.77);
  box-shadow: 0 6px 15px rgba(55, 39, 28, .05);
}
.account-dashboard-stats i { color: #bd9256; font-size: 17px; }
.account-dashboard-stats strong { font: 600 19px/1 Georgia, serif; }
.account-dashboard-stats span { grid-column: 1 / -1; color: #4f4944; font-size: 9px; font-weight: 700; line-height: 1.35; }
.account-dashboard-card,
.account-dashboard-orders {
  border: 1px solid rgba(109, 87, 68, .11);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 22px rgba(55, 39, 28, .055);
}
.account-dashboard-card { margin-top: 10px; padding: 15px 16px; scroll-margin-top: 18px; }
.account-card-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 10px; }
.account-card-heading h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font: 600 18px/1.2 "Playfair Display", Georgia, serif;
}
.account-card-heading h2 i { width: 20px; color: #bd9256; font-size: 18px; text-align: center; }
.account-soft-button,
.account-primary-button {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 6px;
  padding: 0 14px;
  background: #f1e8db;
  color: #4a4038;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}
.account-primary-button { background: #342820; color: #fff; }
.account-profile-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 22px; }
.account-profile-grid label,
.account-address-form > label {
  display: grid;
  gap: 4px;
  color: #665f59;
  font-size: 9px;
  font-weight: 700;
}
.account-field-label i { display: none; }
.account-profile-grid input,
.account-address-form textarea {
  width: 100%;
  min-height: 31px;
  border: 1px solid rgba(104, 83, 65, .15);
  border-radius: 5px;
  padding: 6px 11px;
  background: rgba(255,255,255,.7);
  color: #302a26;
  font-size: 10px;
  font-weight: 700;
  outline: 0;
}
.account-profile-grid input:not([readonly]):not(:disabled),
.account-address-form textarea { border-color: #c6a678; background: #fff; box-shadow: 0 0 0 2px rgba(190,151,94,.09); }
.account-profile-grid input:disabled { color: #4f4944; opacity: 1; }
.account-profile-actions { display: flex; gap: 8px; margin-top: 12px; }
.account-profile-actions[hidden] { display: none; }
.account-dashboard-card .form-note { margin: 8px 0 0; font-size: 10px; }
.account-address-card { padding-bottom: 11px; }
.account-address-display {
  position: relative;
  display: grid;
  min-height: 80px;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(174, 132, 77, .18);
  border-radius: 7px;
  padding: 12px 16px;
  background:
    linear-gradient(110deg, rgba(249,242,232,.94), rgba(248,242,233,.78)),
    #f7eee2;
}
.account-address-display::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 100px;
  right: -18px;
  top: -25px;
  opacity: .16;
  transform: rotate(-8deg);
  background: repeating-linear-gradient(90deg, transparent 0 25px, #cba872 26px 28px), repeating-linear-gradient(0deg, transparent 0 24px, #cba872 25px 27px);
}
.account-address-icon { position: relative; z-index: 1; color: #bc945c; font-size: 19px; }
.account-address-display > div:nth-child(2) { position: relative; z-index: 1; min-width: 0; }
.account-address-title { display: flex; align-items: center; gap: 10px; }
.account-address-title strong { font: 600 14px/1.2 "Playfair Display", Georgia, serif; }
.account-address-title span { border-radius: 4px; padding: 3px 7px; background: #ead8b9; color: #765d3c; font-size: 8px; font-weight: 800; }
.account-address-display p { margin: 8px 0 2px; color: #68615b; font-size: 9px; line-height: 1.4; }
.account-address-display small { display: block; color: #756e68; font-size: 9px; }
.account-map-link {
  position: relative;
  z-index: 1;
  min-width: 88px;
  border-radius: 5px;
  padding: 9px 12px;
  background: #31261f;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-align: center;
}
.account-address-form { display: grid; gap: 10px; }
.account-address-form[hidden], .account-address-display[hidden] { display: none; }
.account-address-form textarea { resize: vertical; }
.account-quick-card { padding: 11px 16px 14px; }
.account-quick-card > h2 { margin: 0 0 9px; font-size: 11px; }
.account-quick-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 9px; }
.account-quick-grid button,
.account-quick-grid a {
  display: flex;
  min-width: 0;
  min-height: 49px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(154, 121, 79, .1);
  border-radius: 6px;
  padding: 8px 10px;
  background: #f7f0e7;
  color: #4f4842;
  text-align: left;
  cursor: pointer;
}
.account-quick-grid i { flex: 0 0 18px; color: #be9254; font-size: 17px; text-align: center; }
.account-quick-grid span { min-width: 0; display: grid; gap: 2px; }
.account-quick-grid strong { overflow: hidden; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.account-quick-grid small { overflow: hidden; color: #777069; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.account-dashboard-orders {
  min-width: 0;
  height: calc(100vh - 132px);
  min-height: 560px;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  padding: 15px 16px;
  scroll-margin-top: 18px;
}
.account-orders-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.account-orders-heading h2 { margin: 0; font: 600 18px/1.2 "Playfair Display", Georgia, serif; }
.account-orders-heading button {
  border: 0;
  border-radius: 5px;
  padding: 8px 12px;
  background: #f0e6d8;
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
}
.account-orders-list { min-height: 0; display: grid; grid-auto-rows: max-content; align-content: start; gap: 8px; overflow-y: auto; scrollbar-width: none; }
.account-orders-list::-webkit-scrollbar { display: none; }
.account-order-card {
  overflow: hidden;
  flex: 0 0 auto;
  min-height: 154px;
  border: 1px solid rgba(108, 86, 68, .12);
  border-radius: 7px;
  background: rgba(255,255,255,.62);
}
.account-order-extra { display: none; }
.account-dashboard-orders.show-all .account-order-extra { display: block; }
.account-order-summary { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 13px; padding: 11px 11px 7px; }
.account-order-summary > img { width: 92px; height: 94px; border-radius: 6px; object-fit: cover; background: #eee5da; }
.account-order-copy { min-width: 0; }
.account-order-meta { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 8px; }
.account-order-meta > strong { font-size: 10px; }
.account-order-meta time { color: #817a74; font-size: 8px; }
.account-order-meta em { border-radius: 4px; padding: 4px 7px; font-size: 7px; font-style: normal; font-weight: 800; }
.account-order-meta em.complete { background: #e8f1e2; color: #5b804d; }
.account-order-meta em.processing { background: #f2e8d4; color: #8b6735; }
.account-order-copy h3 { margin: 8px 0 4px; overflow: hidden; font-size: 11px; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.account-order-copy p { margin: 0 0 7px; overflow: hidden; color: #7a736d; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.account-order-line { display: flex; gap: 9px; color: #55504b; font-size: 9px; }
.account-order-total { display: flex; align-items: center; justify-content: space-between; margin-top: 7px; font-size: 9px; }
.account-order-total strong { font-size: 10px; }
.account-order-details-button {
  display: flex;
  width: 100%;
  min-height: 31px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid rgba(108, 86, 68, .1);
  padding: 0 12px;
  background: transparent;
  color: #5b544e;
  font-size: 9px;
  cursor: pointer;
}
.account-order-expanded { display: grid; gap: 6px; border-top: 1px solid rgba(108, 86, 68, .1); padding: 10px 12px; color: #655e58; font-size: 9px; }
.account-order-expanded[hidden] { display: none; }
.account-order-expanded p { margin: 0; }
.account-order-expanded > div { display: flex; justify-content: space-between; gap: 12px; }
.account-orders-footer {
  display: flex;
  min-height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  border: 0;
  border-radius: 6px;
  background: #efe2cf;
  color: #4a3b30;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}
.account-empty-orders { display: grid; justify-items: center; padding: 70px 18px; text-align: center; }
.account-empty-orders i { color: #bd9256; font-size: 30px; }
.account-empty-orders h3 { margin: 15px 0 4px; font: 600 20px/1.2 "Playfair Display", Georgia, serif; }
.account-empty-orders p { margin: 0 0 18px; color: #777069; font-size: 11px; }
.account-empty-orders a { border-radius: 6px; padding: 9px 16px; background: #efe2cf; font-size: 10px; font-weight: 800; }
.account-load-error { max-width: 700px; margin: 0 auto; padding: 20vh 24px; text-align: center; }
.account-load-error h1 { font: 600 48px/1.1 "Playfair Display", Georgia, serif; }
.account-load-error a { display: inline-block; margin-top: 16px; border-radius: 6px; padding: 11px 18px; background: #342820; color: #fff; }

@media (max-width: 1180px) {
  .account-dashboard-shell { grid-template-columns: 210px minmax(0, 1fr); gap: 22px; padding-right: 24px; padding-left: 24px; }
  .account-dashboard-orders { grid-column: 2; height: auto; min-height: 0; margin: 0 0 28px; }
  .account-dashboard-main { padding-bottom: 0; }
  .account-dashboard-sidebar { grid-row: 1 / span 2; }
  .account-orders-list { grid-template-columns: repeat(2, minmax(0, 1fr)); max-height: 560px; overflow-y: auto; }
}
@media (max-width: 820px) {
  .account-dashboard-body .account-page { padding-top: 84px; }
  .account-dashboard-shell { display: block; padding: 0 12px 24px; }
  .account-dashboard-sidebar { display: none; }
  .account-dashboard-main { min-height: 0; padding: 18px 0 0; }
  .account-dashboard-topline { position: relative; display: grid; min-height: 0; gap: 15px; margin-bottom: 5px; }
  .account-dashboard-greeting { padding-right: 64px; }
  .account-mobile-avatar {
    position: absolute;
    top: 0;
    right: 5px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f3e5d2, #e7d2b4);
    font: 500 17px/1 Georgia, serif;
  }
  .account-dashboard-stats { width: 100%; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .account-dashboard-stats article { min-height: 66px; grid-template-columns: 22px 1fr; padding: 9px 10px; }
  .account-dashboard-stats span { font-size: 8px; }
  .account-dashboard-card { margin-top: 8px; }
  .account-card-heading { margin-bottom: 8px; }
  .account-card-heading h2 { gap: 10px; }
  .account-profile-card,
  .account-address-card { padding-bottom: 0; overflow: hidden; }
  .account-profile-grid { display: block; }
  .account-profile-grid label {
    display: grid;
    min-height: 31px;
    grid-template-columns: minmax(0, 1fr) minmax(120px, 58%);
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(104,83,65,.09);
  }
  .account-profile-grid label:nth-child(n+4) { display: none; }
  .account-profile-grid .account-field-label { display: flex; align-items: center; gap: 8px; }
  .account-profile-grid .account-field-label i { display: inline-block; width: 13px; color: #bd9256; font-size: 10px; text-align: center; }
  .account-profile-grid input {
    min-height: 30px;
    border: 0;
    padding: 5px 0;
    background: transparent;
    box-shadow: none;
    text-align: right;
  }
  .account-profile-grid input:not([readonly]):not(:disabled) { border: 1px solid #c6a678; padding: 5px 8px; background: #fff; text-align: left; }
  .account-profile-card form.show-details .account-profile-grid label,
  .account-profile-card form.editing .account-profile-grid label { display: grid; }
  .account-mobile-card-footer {
    display: flex;
    width: calc(100% + 24px);
    min-height: 33px;
    align-items: center;
    justify-content: space-between;
    margin: 4px -12px 0;
    border: 0;
    border-top: 1px solid rgba(104,83,65,.1);
    padding: 0 12px;
    background: transparent;
    color: #423c37;
    font-size: 9px;
    cursor: pointer;
  }
  .account-profile-card form.editing .account-mobile-card-footer { display: none; }
  .account-address-display { min-height: 74px; grid-template-columns: 22px minmax(0, 1fr); border: 0; padding: 5px 0 8px; background: transparent; }
  .account-address-display::after, .account-map-link { display: none; }
  .account-address-display p { margin-top: 5px; }
  .account-address-card > .account-mobile-card-footer { width: calc(100% + 24px); }
  .account-address-card:has(.account-address-form:not([hidden])) > .account-mobile-card-footer { display: none; }
  .account-quick-card { padding-top: 9px; }
  .account-quick-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; }
  .account-quick-grid button, .account-quick-grid a { min-height: 58px; display: grid; justify-items: center; align-content: center; gap: 5px; padding: 6px 4px; text-align: center; }
  .account-quick-grid i { font-size: 15px; }
  .account-quick-grid strong { white-space: normal; font-size: 8px; line-height: 1.2; }
  .account-quick-grid small { display: none; }
  .account-dashboard-orders { margin-top: 8px; border: 0; padding: 0; background: transparent; box-shadow: none; }
  .account-orders-heading { margin: 0 3px 7px; }
  .account-orders-heading h2 { font-size: 14px; }
  .account-orders-heading button { padding: 5px 0; background: transparent; color: #4c453f; }
  .account-orders-heading button { font-size: 0; }
  .account-orders-heading button::before { content: "Vezi toate"; font-size: 9px; }
  .account-orders-list { grid-template-columns: 1fr; max-height: 520px; }
  .account-order-card { min-height: 0; background: rgba(255,255,255,.8); }
  .account-order-summary { grid-template-columns: 72px minmax(0, 1fr); gap: 10px; padding: 8px 9px 4px; }
  .account-order-summary > img { width: 72px; height: 76px; }
  .account-order-copy h3 { margin-top: 4px; }
  .account-order-copy p { margin-bottom: 4px; }
  .account-order-total { margin-top: 3px; }
  .account-order-details-button { min-height: 24px; border-top: 0; justify-content: flex-end; padding-right: 9px; }
  .account-order-details-button span { display: none; }
  .account-orders-footer { display: none; }
}
@media (max-width: 560px) {
  .account-dashboard-greeting h1 { font-size: 34px; }
  .account-dashboard-greeting p { font-size: 11px; }
  .account-dashboard-card, .account-dashboard-orders { padding: 14px 12px; }
  .account-profile-grid { grid-template-columns: 1fr; gap: 0; }
  .account-address-display { grid-template-columns: 24px minmax(0, 1fr); }
  .account-map-link { grid-column: 2; justify-self: start; margin-top: 5px; }
  .account-card-heading h2 { font-size: 16px; }
  .account-order-summary { grid-template-columns: 84px minmax(0, 1fr); }
  .account-order-summary > img { width: 84px; height: 92px; }
}

/* v78: luminous editorial homepage, matched to the approved visual concept. */
body.home-redesign-v78 {
  --home-accent: #b9552d;
  --home-accent-dark: #8f3f22;
  --home-ink: #201c19;
  --home-muted: #6f6963;
  --home-line: rgba(54, 43, 34, .12);
  --home-paper: #fffdf9;
  background: var(--home-paper);
  color: var(--home-ink);
}

body.home-redesign-v78 main {
  overflow: hidden;
  background: var(--home-paper);
}

body.home-redesign-v78 .hero-direct {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: min(820px, calc(100svh - 76px));
  margin: 76px 0 0;
  padding: 86px max(6vw, calc((100vw - 1440px) / 2 + 54px)) 76px;
  border: 0;
  border-radius: 0;
  background-color: #fff;
  background-image: var(--hero-bg-image) !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  box-shadow: none;
}

body.home-redesign-v78 .hero-direct::before,
body.home-redesign-v78 .hero-direct::after { display: none !important; }

body.home-redesign-v78 .hero-direct .hero-copy {
  width: min(42%, 600px);
  max-width: 600px;
  padding: 0;
  color: var(--home-ink);
}

body.home-redesign-v78 .hero-direct .eyebrow {
  margin-bottom: 22px;
  color: var(--home-accent);
}

body.home-redesign-v78 .hero-direct h1 {
  max-width: 590px;
  color: var(--home-ink);
  font-size: clamp(62px, 6.2vw, 94px);
  line-height: .94;
  letter-spacing: -.045em;
  text-shadow: none;
}

body.home-redesign-v78 .hero-direct .lead {
  max-width: 460px;
  margin-top: 26px;
  color: #5e5852;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  text-shadow: none;
}

body.home-redesign-v78 .hero-actions { margin-top: 30px; }
body.home-redesign-v78 .hero-actions .button {
  min-height: 50px;
  padding: 0 23px;
  border-radius: 7px;
}
body.home-redesign-v78 .hero-actions .button-dark {
  border-color: var(--home-accent);
  background: var(--home-accent);
  color: #fff;
}
body.home-redesign-v78 .hero-actions .button-light {
  border-color: var(--home-line);
  background: rgba(255,255,255,.9);
  color: var(--home-ink);
  backdrop-filter: none;
}

body.home-redesign-v78 .section {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: 54px;
}

body.home-redesign-v78 .home-services {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 46px;
  padding-bottom: 48px;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  background: transparent;
}

body.home-redesign-v78 .service-tile {
  min-height: 170px;
  padding: 12px 46px 12px 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body.home-redesign-v78 .service-tile:first-child { padding-left: 0; }
body.home-redesign-v78 .service-tile:last-child { padding-right: 0; }
body.home-redesign-v78 .service-tile + .service-tile { border-left: 1px solid var(--home-line); }
body.home-redesign-v78 .service-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  color: var(--home-accent);
}
body.home-redesign-v78 .service-heading i { font-size: 27px; }
body.home-redesign-v78 .service-tile .service-heading span { margin: 0; }
body.home-redesign-v78 .service-tile h2 {
  font-size: clamp(24px, 2vw, 33px);
  line-height: 1.08;
  letter-spacing: -.025em;
}
body.home-redesign-v78 .service-tile p {
  max-width: 360px;
  margin-top: 12px;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.55;
}

body.home-redesign-v78 .home-products {
  padding-top: 62px;
  padding-bottom: 58px;
  background: transparent;
}
body.home-redesign-v78 .home-section-head { margin-bottom: 26px; }
body.home-redesign-v78 .home-section-head h2 {
  max-width: 980px;
  color: var(--home-ink);
  font-size: clamp(44px, 4.4vw, 68px);
  letter-spacing: -.04em;
}
body.home-redesign-v78 .text-link { color: var(--home-accent); }
body.home-redesign-v78 .home-featured-products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
body.home-redesign-v78 .home-product-card,
body.home-redesign-v78 .home-product-card:first-child {
  grid-row: auto;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(61, 46, 36, .045);
}
body.home-redesign-v78 .home-product-card img,
body.home-redesign-v78 .home-product-card:first-child img {
  aspect-ratio: 1 / 1;
  border-radius: 7px 7px 0 0;
}
body.home-redesign-v78 .home-product-body { padding: 18px 17px 20px; }
body.home-redesign-v78 .home-product-body > span { color: #8d7f73; }
body.home-redesign-v78 .home-product-body h3 {
  margin-top: 9px;
  color: var(--home-ink);
  font-size: clamp(20px, 1.55vw, 27px);
  line-height: 1.02;
}
body.home-redesign-v78 .home-product-body p {
  margin-top: 12px;
  color: var(--home-accent);
}

body.home-redesign-v78 .home-custom {
  padding-top: 18px;
  padding-bottom: 36px;
}
body.home-redesign-v78 .custom-panel {
  min-height: 480px;
  align-content: center;
  gap: 17px;
  padding: 58px 54% 58px 8px;
  border: 0;
  border-radius: 0;
  background: #fff url("/assets/home-custom-v78.png") center right / cover no-repeat;
  color: var(--home-ink);
  box-shadow: none;
}
body.home-redesign-v78 .custom-panel .eyebrow { color: var(--home-accent); }
body.home-redesign-v78 .custom-panel h2 {
  max-width: 630px;
  color: var(--home-ink);
  font-size: clamp(45px, 4.3vw, 68px);
  line-height: .98;
}
body.home-redesign-v78 .custom-panel p:not(.eyebrow) {
  max-width: 520px;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.55;
}
body.home-redesign-v78 .custom-points {
  gap: 18px;
  margin-top: 13px;
}
body.home-redesign-v78 .custom-points span {
  position: relative;
  padding: 0 0 0 25px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #6d625a;
  font-size: 12px;
}
body.home-redesign-v78 .custom-points span::before {
  content: "\f1b2";
  position: absolute;
  left: 0;
  color: #a79283;
  font-family: "Font Awesome 6 Free", "Piesa3D Icons";
  font-weight: 900;
}

body.home-redesign-v78 .home-prices {
  padding-top: 46px;
  padding-bottom: 72px;
  background: transparent;
  border-top: 1px solid var(--home-line);
}
body.home-redesign-v78 .compact-prices {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
body.home-redesign-v78 .compact-prices .price-pill {
  position: relative;
  min-height: 174px;
  padding: 24px;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: rgba(255,255,255,.74);
  box-shadow: none;
}
body.home-redesign-v78 .price-pill i {
  position: absolute;
  top: 25px;
  left: 24px;
  color: #9d8e83;
  font-size: 22px;
}
body.home-redesign-v78 .price-pill span { padding-left: 34px; }
body.home-redesign-v78 .price-pill strong {
  margin-top: 30px;
  color: var(--home-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 600;
}

body.home-redesign-v78 .contact {
  display: grid;
  grid-template-columns: minmax(180px, .58fr) minmax(280px, .9fr) minmax(480px, 1.7fr);
  align-items: stretch;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-top: 1px solid var(--home-line);
  background: #fff;
}
body.home-redesign-v78 .contact-visual {
  min-height: 560px;
  margin-left: -54px;
  background: url("/assets/home-custom-v78.png") 55% center / auto 100% no-repeat;
}
body.home-redesign-v78 .contact-copy {
  align-self: center;
  padding: 58px 34px;
}
body.home-redesign-v78 .contact-copy h2 {
  color: var(--home-ink);
  font-size: clamp(46px, 4vw, 66px);
  line-height: .98;
}
body.home-redesign-v78 .contact-copy > p:not(.eyebrow) {
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.55;
}
body.home-redesign-v78 .contact-form {
  align-self: center;
  margin: 46px 0 46px 16px;
  padding: 30px;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(61, 46, 36, .05);
}
body.home-redesign-v78 .contact-form input,
body.home-redesign-v78 .contact-form textarea {
  border-radius: 7px;
  background: #fff;
}
body.home-redesign-v78 .file-drop { border-radius: 7px; }
body.home-redesign-v78 .contact-form .button-dark {
  border-color: var(--home-accent);
  background: var(--home-accent);
}

body.home-redesign-v78 .site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .65fr .8fr;
  gap: 52px;
  width: min(100%, 1440px);
  margin-inline: auto;
  padding: 54px 54px 78px;
  border-top: 1px solid var(--home-line);
  background: #fffdf9;
}
body.home-redesign-v78 .site-footer p { max-width: 260px; line-height: 1.55; }
body.home-redesign-v78 .footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  color: var(--home-muted);
  font-size: 13px;
}
body.home-redesign-v78 .footer-column strong {
  margin-bottom: 8px;
  color: var(--home-ink);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
body.home-redesign-v78 .footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  font-size: 11px;
}
body.home-redesign-v78 .footer-copyright {
  position: absolute;
  bottom: 26px;
  left: 54px;
  color: #989089;
  font-size: 11px;
}

.mobile-response-note { display: none; }
body.home-redesign-v78 .footer-direct-contact {
  display: block;
  width: max-content;
  margin-top: 7px;
  color: #655e57;
  font-size: 13px;
  text-decoration: none;
}

@media (max-width: 900px) {
  body.home-redesign-v78 .hero-direct {
    align-items: flex-start;
    min-height: 850px;
    margin-top: 64px;
    padding: 42px 22px 380px;
    background-position: 68% bottom !important;
    background-size: auto 440px !important;
  }
  body.home-redesign-v78 .hero-direct .hero-copy,
  body.home-redesign-v78 .hero-direct .lead { width: 100%; max-width: 580px; }
  body.home-redesign-v78 .hero-direct h1 { font-size: clamp(48px, 12vw, 70px); }
  body.home-redesign-v78 .section { padding-inline: 22px; }
  body.home-redesign-v78 .home-services { grid-template-columns: 1fr; }
  body.home-redesign-v78 .service-tile,
  body.home-redesign-v78 .service-tile:first-child,
  body.home-redesign-v78 .service-tile:last-child { padding: 26px 0; }
  body.home-redesign-v78 .service-tile + .service-tile { border-top: 1px solid var(--home-line); border-left: 0; }
  body.home-redesign-v78 .home-featured-products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  body.home-redesign-v78 .home-product-body { padding: 13px 12px 15px; }
  body.home-redesign-v78 .home-product-body h3 { font-size: 19px; }
  body.home-redesign-v78 .custom-panel {
    min-height: 760px;
    padding: 30px 0 420px;
    background-position: 66% bottom;
    background-size: auto 430px;
  }
  body.home-redesign-v78 .compact-prices { grid-template-columns: repeat(2, 1fr); }
  body.home-redesign-v78 .contact { grid-template-columns: 1fr; }
  body.home-redesign-v78 .contact-visual { display: none; }
  body.home-redesign-v78 .contact-copy { padding: 48px 0 24px; }
  body.home-redesign-v78 .contact-form { margin: 0 0 48px; }
  body.home-redesign-v78 .site-footer { grid-template-columns: repeat(2, 1fr); gap: 34px 22px; padding: 44px 22px 80px; }
  body.home-redesign-v78 .footer-copyright { left: 22px; }
}

@media (max-width: 520px) {
  body.home-redesign-v78 .hero-direct { min-height: 760px; padding-top: 32px; padding-bottom: 330px; background-size: auto 360px !important; }
  body.home-redesign-v78 .hero-direct .lead { font-size: 15px; }
  body.home-redesign-v78 .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  body.home-redesign-v78 .hero-actions .button { min-width: 0; padding-inline: 10px; font-size: 11px; }
  body.home-redesign-v78 .home-section-head { align-items: flex-start; }
  body.home-redesign-v78 .home-section-head h2 { font-size: 37px; }
  body.home-redesign-v78 .home-section-head .text-link { font-size: 11px; }
  body.home-redesign-v78 .home-product-body h3 { font-size: 16px; }
  body.home-redesign-v78 .home-product-body p { font-size: 13px; }
  body.home-redesign-v78 .custom-panel { min-height: 680px; padding-bottom: 360px; background-size: auto 370px; }
  body.home-redesign-v78 .custom-panel h2,
  body.home-redesign-v78 .contact-copy h2 { font-size: 40px; }
  body.home-redesign-v78 .compact-prices { gap: 10px; }
  body.home-redesign-v78 .compact-prices .price-pill { min-height: 155px; padding: 18px; }
  body.home-redesign-v78 .price-pill i { top: 19px; left: 18px; }
  body.home-redesign-v78 .price-pill strong { font-size: 22px; }
  body.home-redesign-v78 .contact-form { padding: 20px; }
  body.home-redesign-v78 .site-footer { grid-template-columns: 1fr 1fr; }
}

/* v79: dedicated phone composition. Desktop and tablet layouts remain unchanged. */
@media (max-width: 640px) {
  body.home-redesign-v78 {
    overflow-x: hidden;
    background: #fffdf9;
  }

  body.home-redesign-v78 .site-header.header-v2 {
    top: 8px;
    right: 8px;
    left: 8px;
    z-index: 130;
    display: flex;
    width: auto;
    height: 56px;
    gap: 3px;
    padding: 7px 8px 7px 10px;
    border-radius: 28px;
  }
  body.home-redesign-v78 .site-header.header-v2 .brand {
    order: 1;
    flex: 1 1 auto;
    min-width: 92px;
    gap: 6px;
    overflow: visible;
  }
  body.home-redesign-v78 .site-header.header-v2 .brand-logo {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
  }
  body.home-redesign-v78 .site-header.header-v2 .brand-text {
    display: inline-flex !important;
    flex: 0 1 auto;
    overflow: visible;
    color: var(--home-ink);
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
  }
  body.home-redesign-v78 .site-header.header-v2 .header-actions {
    order: 2;
    display: flex;
    flex: 0 0 auto;
    width: auto;
    gap: 0;
    overflow: visible;
  }
  body.home-redesign-v78 .site-header.header-v2 .header-icon-action {
    width: 28px;
    min-width: 28px;
    height: 34px;
    padding: 0;
  }
  body.home-redesign-v78 .site-header.header-v2 .header-image-icon {
    width: 17px;
    height: 17px;
  }
  body.home-redesign-v78 .site-header.header-v2 .header-action-badge {
    top: 0;
    right: 0;
    min-width: 14px;
    height: 14px;
    padding: 0 3px;
    font-size: 8px;
  }
  body.home-redesign-v78 .site-header.header-v2 .menu-toggle {
    order: 3;
    width: 36px;
    min-width: 36px;
    height: 36px;
    margin-left: 2px;
    border-radius: 50%;
  }
  body.home-redesign-v78 .site-header.header-v2 .nav { order: 4; }
  body.home-redesign-v78 .mega-menu { display: none !important; }

  body.home-redesign-v78 .hero-direct {
    display: block;
    min-height: 0;
    margin-top: 72px;
    padding: 28px 18px 0;
    overflow: visible;
    background-color: #fffdf9;
    background-image: none !important;
  }
  body.home-redesign-v78 .hero-direct::after {
    content: "";
    position: relative;
    inset: auto;
    display: block !important;
    width: calc(100% + 36px);
    height: clamp(300px, 96vw, 380px);
    margin: 28px -18px 0;
    opacity: 1;
    background-color: #fff;
    background-image: var(--hero-bg-image);
    background-repeat: no-repeat;
    background-position: 67% center;
    background-size: auto 100%;
    pointer-events: none;
  }
  body.home-redesign-v78 .hero-direct .hero-copy,
  body.home-redesign-v78 .hero-direct .lead {
    width: 100%;
    max-width: none;
  }
  body.home-redesign-v78 .hero-direct .eyebrow { margin-bottom: 14px; }
  body.home-redesign-v78 .hero-direct h1 {
    max-width: 330px;
    font-size: 44px;
    line-height: .96;
    letter-spacing: 0;
  }
  body.home-redesign-v78 .hero-direct .lead {
    max-width: 340px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.55;
  }
  body.home-redesign-v78 .hero-direct .hero-actions {
    position: static !important;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 22px;
    gap: 9px;
    transform: none !important;
  }
  body.home-redesign-v78 .hero-direct .hero-actions .button {
    width: 100%;
    min-height: 47px;
    padding: 0 16px;
    border-radius: 6px;
    font-size: 12px;
  }

  body.home-redesign-v78 .section { padding-inline: 18px; }
  body.home-redesign-v78 .home-services {
    padding-top: 18px;
    padding-bottom: 24px;
  }
  body.home-redesign-v78 .service-tile,
  body.home-redesign-v78 .service-tile:first-child,
  body.home-redesign-v78 .service-tile:last-child {
    min-height: 0;
    padding: 22px 0;
  }
  body.home-redesign-v78 .service-heading { margin-bottom: 12px; }
  body.home-redesign-v78 .service-heading i { font-size: 22px; }
  body.home-redesign-v78 .service-tile h2 {
    font-size: 25px;
    letter-spacing: 0;
  }
  body.home-redesign-v78 .service-tile p {
    max-width: 320px;
    margin-top: 8px;
    font-size: 13px;
  }

  body.home-redesign-v78 .home-products {
    padding-top: 38px;
    padding-right: 0;
    padding-bottom: 42px;
    padding-left: 18px;
  }
  body.home-redesign-v78 .home-section-head {
    display: grid;
    gap: 16px;
    margin-right: 18px;
    margin-bottom: 20px;
  }
  body.home-redesign-v78 .home-section-head h2 {
    max-width: 325px;
    font-size: 36px;
    line-height: 1.02;
    letter-spacing: 0;
  }
  body.home-redesign-v78 .home-section-head .text-link {
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--home-line);
    border-radius: 6px;
    font-size: 11px;
  }
  body.home-redesign-v78 .home-featured-products {
    display: flex;
    gap: 12px;
    padding-right: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }
  body.home-redesign-v78 .home-featured-products::-webkit-scrollbar { display: none; }
  body.home-redesign-v78 .home-product-card,
  body.home-redesign-v78 .home-product-card:first-child {
    flex: 0 0 min(72vw, 280px);
    min-width: 0;
    scroll-snap-align: start;
  }
  body.home-redesign-v78 .home-product-body { min-height: 126px; padding: 14px 14px 17px; }
  body.home-redesign-v78 .home-product-body h3 {
    margin-top: 7px;
    font-size: 19px;
    line-height: 1.08;
  }
  body.home-redesign-v78 .home-product-body p { margin-top: 10px; font-size: 14px; }

  body.home-redesign-v78 .home-custom {
    padding-top: 4px;
    padding-bottom: 32px;
  }
  body.home-redesign-v78 .custom-panel {
    display: block;
    min-height: 0;
    padding: 34px 0 0;
    background: #fffdf9;
  }
  body.home-redesign-v78 .custom-panel::after {
    content: "";
    display: block;
    width: calc(100% + 36px);
    height: 310px;
    margin: 28px -18px 0;
    background: #fff url("/assets/home-custom-v78.png") 67% center / auto 100% no-repeat;
  }
  body.home-redesign-v78 .custom-panel h2 {
    max-width: 330px;
    font-size: 38px;
    line-height: 1;
    letter-spacing: 0;
  }
  body.home-redesign-v78 .custom-panel p:not(.eyebrow) {
    max-width: 335px;
    font-size: 14px;
  }
  body.home-redesign-v78 .custom-points {
    display: grid;
    gap: 12px;
    margin-top: 20px;
  }

  body.home-redesign-v78 .home-prices {
    padding-top: 36px;
    padding-bottom: 46px;
  }
  body.home-redesign-v78 .home-prices .home-section-head { margin-right: 0; }
  body.home-redesign-v78 .compact-prices {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  body.home-redesign-v78 .compact-prices .price-pill {
    min-height: 146px;
    padding: 16px 14px;
  }
  body.home-redesign-v78 .price-pill i { top: 17px; left: 14px; font-size: 18px; }
  body.home-redesign-v78 .price-pill span { padding-left: 27px; font-size: 10px; }
  body.home-redesign-v78 .price-pill strong {
    margin-top: 28px;
    font-size: 20px;
    line-height: 1.05;
  }
  body.home-redesign-v78 .price-pill small { font-size: 10px; line-height: 1.35; }

  body.home-redesign-v78 .contact {
    grid-template-columns: 1fr;
    padding: 0 18px 38px;
  }
  body.home-redesign-v78 .contact-visual {
    display: block;
    min-height: 230px;
    margin: 0 -18px;
    background-position: 58% center;
    background-size: auto 100%;
  }
  body.home-redesign-v78 .contact-copy { padding: 34px 0 24px; }
  body.home-redesign-v78 .contact-copy h2 {
    max-width: 330px;
    font-size: 38px;
    line-height: 1;
    letter-spacing: 0;
  }
  body.home-redesign-v78 .contact-copy > p:not(.eyebrow) {
    max-width: 335px;
    font-size: 14px;
  }
  body.home-redesign-v78 .contact-note { gap: 10px; margin-top: 18px; }
  body.home-redesign-v78 .contact-form {
    width: 100%;
    margin: 0;
    padding: 18px;
    border-radius: 7px;
  }
  body.home-redesign-v78 .contact-form .field-row { grid-template-columns: 1fr; gap: 14px; }
  body.home-redesign-v78 .contact-form input,
  body.home-redesign-v78 .contact-form textarea { font-size: 14px; }
  body.home-redesign-v78 .file-drop {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 86px;
    padding: 12px;
  }
  body.home-redesign-v78 .file-drop span { grid-row: 1 / span 2; }
  body.home-redesign-v78 .file-drop strong,
  body.home-redesign-v78 .file-drop small { min-width: 0; overflow-wrap: anywhere; }
  body.home-redesign-v78 .contact-form .button-dark { width: 100%; min-height: 48px; }

  body.home-redesign-v78 .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    padding: 38px 18px 74px;
  }
  body.home-redesign-v78 .site-footer .footer-brand-column { grid-column: 1 / -1; }
  body.home-redesign-v78 .site-footer .footer-contact-column { min-width: 0; }
  body.home-redesign-v78 .site-footer a,
  body.home-redesign-v78 .site-footer span,
  body.home-redesign-v78 .site-footer p { overflow-wrap: anywhere; }
  body.home-redesign-v78 .footer-copyright { right: 18px; bottom: 24px; left: 18px; }

  body.home-redesign-v78 .chat-widget { right: 10px; bottom: 10px; }
  body.home-redesign-v78 .chat-fab {
    min-width: 64px;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 12px;
  }
}

@media (max-width: 370px) {
  body.home-redesign-v78 .site-header.header-v2 .brand-text { font-size: 12px; }
  body.home-redesign-v78 .site-header.header-v2 .header-icon-action { width: 26px; min-width: 26px; }
  body.home-redesign-v78 .hero-direct h1 { font-size: 40px; }
  body.home-redesign-v78 .home-section-head h2,
  body.home-redesign-v78 .custom-panel h2,
  body.home-redesign-v78 .contact-copy h2 { font-size: 34px; }
}

/* v87: ecrane pliabile deschise si tablete mici. */
@media (min-width: 641px) and (max-width: 900px) {
  body.home-redesign-v78 .hero-direct {
    align-items: center;
    min-height: 640px;
    height: auto;
    margin-top: 64px;
    padding: 58px 34px;
    background-position: center center !important;
    background-size: cover !important;
  }

  body.home-redesign-v78 .hero-direct .hero-copy {
    width: 47%;
    max-width: 365px;
  }

  body.home-redesign-v78 .hero-direct .lead {
    width: 100%;
    max-width: 340px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.5;
  }

  body.home-redesign-v78 .hero-direct h1 {
    max-width: 360px;
    font-size: clamp(44px, 6.4vw, 56px);
    line-height: .95;
  }

  body.home-redesign-v78 .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
  }

  body.home-redesign-v78 .hero-actions .button {
    min-width: 142px;
    min-height: 44px;
    padding-inline: 14px;
    font-size: 11px;
  }

  body.home-redesign-v78 .section { padding-inline: 32px; }

  body.home-redesign-v78 .home-services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 28px;
    padding-bottom: 30px;
  }

  body.home-redesign-v78 .service-tile,
  body.home-redesign-v78 .service-tile:first-child,
  body.home-redesign-v78 .service-tile:last-child {
    min-height: 154px;
    padding: 16px 20px;
    border-top: 0;
  }

  body.home-redesign-v78 .service-tile:first-child { padding-left: 0; }
  body.home-redesign-v78 .service-tile:last-child { padding-right: 0; }
  body.home-redesign-v78 .service-tile + .service-tile {
    border-top: 0;
    border-left: 1px solid var(--home-line);
  }
  body.home-redesign-v78 .service-heading { margin-bottom: 13px; }
  body.home-redesign-v78 .service-heading i { font-size: 21px; }
  body.home-redesign-v78 .service-tile h2 { font-size: 21px; }
  body.home-redesign-v78 .service-tile p { font-size: 12px; }

  body.home-redesign-v78 .home-section-head h2 { font-size: 44px; }
  body.home-redesign-v78 .home-featured-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  body.home-redesign-v78 .custom-panel {
    min-height: 450px;
    padding: 44px 50% 44px 0;
    background-position: center right;
    background-size: cover;
  }
  body.home-redesign-v78 .custom-panel h2 { font-size: 42px; }
  body.home-redesign-v78 .custom-panel p:not(.eyebrow) { font-size: 14px; }

  body.home-redesign-v78 .compact-prices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-redesign-v78 .contact {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.2fr);
    padding-inline: 32px;
  }
  body.home-redesign-v78 .contact-visual { display: none; }
  body.home-redesign-v78 .contact-copy { padding: 42px 26px 42px 0; }
  body.home-redesign-v78 .contact-copy h2 { font-size: 42px; }
  body.home-redesign-v78 .contact-form { margin: 32px 0; padding: 24px; }

  body.home-redesign-v78 .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    padding-inline: 32px;
  }
}

/* v80: cohesive phone homepage composition. Desktop remains unchanged. */
@media (max-width: 640px) {
  body.home-redesign-v78,
  body.home-redesign-v78 main,
  body.home-redesign-v78 .section,
  body.home-redesign-v78 .site-footer {
    background-color: #fffdf9;
  }

  body.home-redesign-v78 main { overflow: clip; }

  body.home-redesign-v78 .hero-direct {
    position: relative;
    display: flex;
    align-items: flex-start;
    min-height: max(760px, calc(100svh - 4px));
    margin-top: 0;
    padding: 104px 18px 24px;
    overflow: hidden;
    background-color: #fffdf9;
    background-image: url("/assets/home-hero-mobile-v80.png") !important;
    background-position: center top !important;
    background-size: cover !important;
  }

  body.home-redesign-v78 .hero-direct::before,
  body.home-redesign-v78 .hero-direct::after {
    content: none !important;
    display: none !important;
  }

  body.home-redesign-v78 .hero-direct .hero-copy {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 355px;
    padding: 0;
  }

  body.home-redesign-v78 .hero-direct .eyebrow {
    margin-bottom: 13px;
    font-size: 10px;
  }

  body.home-redesign-v78 .hero-direct h1 {
    max-width: 330px;
    font-size: clamp(39px, 11.2vw, 46px);
    line-height: .94;
    letter-spacing: 0;
  }

  body.home-redesign-v78 .hero-direct .lead {
    max-width: 330px;
    margin-top: 16px;
    color: #615a54;
    font-size: 13px;
    line-height: 1.5;
  }

  body.home-redesign-v78 .hero-direct .hero-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-top: 18px;
  }

  body.home-redesign-v78 .hero-direct .hero-actions .button {
    width: auto;
    min-height: 43px;
    padding: 0 15px;
    border-radius: 7px;
    font-size: 10px;
    white-space: nowrap;
  }

  body.home-redesign-v78 .hero-direct .hero-actions .button:first-child { flex: 0 0 135px; }
  body.home-redesign-v78 .hero-direct .hero-actions .button:last-child { flex: 0 1 174px; }

  body.home-redesign-v78 .section { padding-inline: 18px; }

  body.home-redesign-v78 .home-services {
    display: flex;
    gap: 0;
    width: 100%;
    padding: 4px 18px 12px;
    overflow-x: auto;
    overflow-y: hidden;
    border-top: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  body.home-redesign-v78 .home-services::-webkit-scrollbar { display: none; }

  body.home-redesign-v78 .service-tile,
  body.home-redesign-v78 .service-tile:first-child,
  body.home-redesign-v78 .service-tile:last-child {
    flex: 0 0 78%;
    min-height: 190px;
    padding: 25px 24px 22px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    scroll-snap-align: start;
  }

  body.home-redesign-v78 .service-tile + .service-tile {
    margin-left: 24px;
    padding-left: 24px;
    border-left: 1px solid var(--home-line);
  }

  body.home-redesign-v78 .service-heading { margin-bottom: 16px; }
  body.home-redesign-v78 .service-heading i { font-size: 23px; }
  body.home-redesign-v78 .service-tile h2 {
    max-width: 250px;
    font-size: 24px;
    line-height: 1.05;
  }
  body.home-redesign-v78 .service-tile p {
    max-width: 260px;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.5;
  }

  body.home-redesign-v78 .home-products {
    padding-top: 42px;
    padding-right: 0;
    padding-bottom: 48px;
    padding-left: 18px;
  }

  body.home-redesign-v78 .home-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin: 0 18px 20px 0;
  }

  body.home-redesign-v78 .home-section-head > div { min-width: 0; }
  body.home-redesign-v78 .home-section-head h2 {
    max-width: 265px;
    font-size: 35px;
    line-height: .98;
  }

  body.home-redesign-v78 .home-section-head .text-link {
    flex: 0 0 auto;
    width: auto;
    min-height: 0;
    padding: 0 0 4px;
    border: 0;
    border-radius: 0;
    font-size: 9px;
  }

  body.home-redesign-v78 .home-featured-products {
    display: flex;
    gap: 12px;
    padding-right: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  body.home-redesign-v78 .home-featured-products::-webkit-scrollbar { display: none; }

  body.home-redesign-v78 .home-product-card,
  body.home-redesign-v78 .home-product-card:first-child {
    flex: 0 0 min(70vw, 270px);
    min-width: 0;
    border-radius: 7px;
    scroll-snap-align: start;
  }

  body.home-redesign-v78 .home-product-body { min-height: 122px; padding: 14px 14px 16px; }
  body.home-redesign-v78 .home-product-body h3 { font-size: 19px; }

  body.home-redesign-v78 .home-custom {
    padding-top: 0;
    padding-bottom: 26px;
  }

  body.home-redesign-v78 .custom-panel {
    display: block;
    min-height: 640px;
    padding: 40px 0 330px;
    border-top: 1px solid var(--home-line);
    background-color: #fffdf9;
    background-image: url("/assets/home-custom-v78.png");
    background-position: 69% bottom;
    background-size: auto 315px;
    background-repeat: no-repeat;
  }

  body.home-redesign-v78 .custom-panel::after {
    content: none !important;
    display: none !important;
  }

  body.home-redesign-v78 .custom-panel h2 {
    max-width: 340px;
    font-size: 37px;
    line-height: .98;
  }

  body.home-redesign-v78 .custom-panel p:not(.eyebrow) {
    max-width: 335px;
    font-size: 13px;
    line-height: 1.52;
  }

  body.home-redesign-v78 .custom-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 15px;
    margin-top: 17px;
  }

  body.home-redesign-v78 .custom-points span { font-size: 10px; }

  body.home-redesign-v78 .home-prices {
    padding-top: 38px;
    padding-bottom: 48px;
  }

  body.home-redesign-v78 .home-prices .home-section-head { margin-right: 0; }

  body.home-redesign-v78 .compact-prices {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
  }

  body.home-redesign-v78 .compact-prices .price-pill {
    min-height: 138px;
    padding: 18px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  body.home-redesign-v78 .compact-prices .price-pill:nth-child(even) { border-left: 1px solid var(--home-line); }
  body.home-redesign-v78 .compact-prices .price-pill:nth-child(n + 3) { border-top: 1px solid var(--home-line); }
  body.home-redesign-v78 .price-pill i { top: 19px; left: 14px; font-size: 18px; }
  body.home-redesign-v78 .price-pill span { padding-left: 27px; font-size: 9px; }
  body.home-redesign-v78 .price-pill strong { margin-top: 28px; font-size: 20px; }

  body.home-redesign-v78 .contact {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 18px 42px;
    border-top: 1px solid var(--home-line);
    background: #fffdf9;
  }

  body.home-redesign-v78 .contact-visual {
    display: block;
    min-height: 245px;
    margin: 0 -18px;
    background-color: #fffdf9;
    background-position: 59% center;
    background-size: auto 100%;
  }

  body.home-redesign-v78 .contact-copy { padding: 34px 0 24px; }
  body.home-redesign-v78 .contact-copy h2 {
    max-width: 340px;
    font-size: 37px;
    line-height: .98;
  }
  body.home-redesign-v78 .contact-copy > p:not(.eyebrow) { font-size: 13px; }

  body.home-redesign-v78 .contact-form {
    width: 100%;
    margin: 0;
    padding: 20px 0 0;
    border-width: 1px 0 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.home-redesign-v78 .contact-form .field-row { grid-template-columns: 1fr; gap: 14px; }
  body.home-redesign-v78 .contact-form input,
  body.home-redesign-v78 .contact-form textarea { background: rgba(255, 255, 255, .7); }
  body.home-redesign-v78 .contact-form .button-dark { min-height: 48px; }

  body.home-redesign-v78 .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    padding: 38px 18px 76px;
  }

  body.home-redesign-v78 .site-footer .footer-brand-column { grid-column: 1 / -1; }
  body.home-redesign-v78 .footer-copyright { right: 18px; bottom: 24px; left: 18px; }
}

@media (max-width: 370px) {
  body.home-redesign-v78 .hero-direct {
    min-height: 730px;
    padding-inline: 15px;
  }
  body.home-redesign-v78 .hero-direct h1 { font-size: 38px; }
  body.home-redesign-v78 .hero-direct .lead { max-width: 305px; font-size: 12px; }
  body.home-redesign-v78 .hero-direct .hero-actions .button { padding-inline: 10px; font-size: 9px; }
  body.home-redesign-v78 .hero-direct .hero-actions .button:first-child { flex-basis: 124px; }
  body.home-redesign-v78 .home-section-head h2,
  body.home-redesign-v78 .custom-panel h2,
  body.home-redesign-v78 .contact-copy h2 { font-size: 33px; }
}

/* v81: phone hero uses the exact desktop photograph, with copy over the image. */
@media (max-width: 640px) {
  body.home-redesign-v78 .hero-direct {
    display: flex;
    align-items: flex-start;
    width: 100%;
    min-height: 0;
    height: clamp(570px, 158vw, 650px);
    margin: 0;
    padding: 102px 16px 22px;
    overflow: hidden;
    background-color: #fffdf9;
    background-image: var(--hero-bg-image) !important;
    background-repeat: no-repeat !important;
    background-position: 44% center !important;
    background-size: auto 100% !important;
  }

  body.home-redesign-v78 .hero-direct::before,
  body.home-redesign-v78 .hero-direct::after {
    content: none !important;
    display: none !important;
  }

  body.home-redesign-v78 .hero-direct .hero-copy {
    position: relative;
    z-index: 1;
    width: min(78%, 292px);
    max-width: 292px;
    min-height: 0;
    padding: 0;
  }

  body.home-redesign-v78 .hero-direct .eyebrow {
    margin-bottom: 11px;
    font-size: 9px;
  }

  body.home-redesign-v78 .hero-direct h1 {
    max-width: 280px;
    font-size: clamp(35px, 10vw, 41px);
    line-height: .93;
    letter-spacing: 0;
  }

  body.home-redesign-v78 .hero-direct .lead {
    max-width: 278px;
    margin-top: 13px;
    font-size: 11.5px;
    line-height: 1.45;
  }

  body.home-redesign-v78 .hero-direct .hero-actions {
    display: flex;
    width: min(100%, 286px);
    gap: 7px;
    margin-top: 15px;
  }

  body.home-redesign-v78 .hero-direct .hero-actions .button {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 40px;
    padding: 0 9px;
    font-size: 8.5px;
  }

  body.home-redesign-v78 .hero-direct .hero-actions .button:first-child,
  body.home-redesign-v78 .hero-direct .hero-actions .button:last-child {
    flex: 1 1 0 !important;
    width: 0;
  }
}

@media (max-width: 370px) {
  body.home-redesign-v78 .hero-direct {
    height: 570px;
    padding-top: 96px;
    background-position: 43% center !important;
  }
  body.home-redesign-v78 .hero-direct h1 { font-size: 34px; }
  body.home-redesign-v78 .hero-direct .lead { max-width: 255px; font-size: 10.5px; }
  body.home-redesign-v78 .hero-direct .hero-actions { width: 274px; }
  body.home-redesign-v78 .hero-direct .hero-actions .button { min-height: 38px; font-size: 8px; }
}

/* v83: final compact phone composition. */
.mobile-home-copy { display: none; }

@media (max-width: 640px) {
  body.home-redesign-v78 .desktop-home-copy { display: none !important; }
  body.home-redesign-v78 .mobile-home-copy { display: block; }

  body.home-redesign-v78 .hero-direct {
    height: 570px;
    padding: 96px 14px 18px;
    background-position: 44% center !important;
  }

  body.home-redesign-v78 .hero-direct .hero-copy {
    position: static;
    width: 70%;
    max-width: 258px;
  }

  body.home-redesign-v78 .hero-direct .eyebrow {
    margin-bottom: 9px;
    font-size: 8px;
  }

  body.home-redesign-v78 .hero-direct h1 {
    max-width: 245px;
    font-size: clamp(29px, 8.4vw, 34px);
    line-height: .95;
  }

  body.home-redesign-v78 .hero-direct .lead.mobile-home-copy {
    max-width: 238px;
    margin-top: 10px;
    color: #544d47;
    font-size: 11px;
    line-height: 1.4;
  }

  body.home-redesign-v78 .hero-direct .hero-actions {
    position: absolute !important;
    right: 14px;
    bottom: 24px;
    left: 14px;
    width: auto;
    max-width: 330px;
    margin: 0;
  }

  body.home-redesign-v78 .hero-direct .hero-actions .button {
    min-height: 38px;
    padding-inline: 8px;
    font-size: 10.5px;
    font-weight: 900;
  }

  body.home-redesign-v78 .home-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 12px;
    overflow: visible;
    border-top: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
  }

  body.home-redesign-v78 .service-tile,
  body.home-redesign-v78 .service-tile:first-child,
  body.home-redesign-v78 .service-tile:last-child {
    min-width: 0;
    min-height: 112px;
    padding: 16px 9px 14px;
    border: 0;
  }

  body.home-redesign-v78 .service-tile + .service-tile {
    margin: 0;
    padding-left: 9px;
    border-left: 1px solid var(--home-line);
  }

  body.home-redesign-v78 .service-heading {
    margin-bottom: 9px;
  }

  body.home-redesign-v78 .service-heading i { font-size: 15px; }
  body.home-redesign-v78 .service-heading span { font-size: 7px; }
  body.home-redesign-v78 .service-tile h2 {
    max-width: none;
    font-size: 13px;
    line-height: 1.08;
  }
  body.home-redesign-v78 .service-tile p { display: none; }

  body.home-redesign-v78 .home-products {
    padding: 30px 0 34px 14px;
  }

  body.home-redesign-v78 .home-products .home-section-head {
    display: flex;
    flex-direction: row !important;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin: 0 14px 14px 0;
  }

  body.home-redesign-v78 .home-products .home-section-head > div {
    flex: 1 1 240px;
  }

  body.home-redesign-v78 .home-products .home-section-head .eyebrow { display: none; }
  body.home-redesign-v78 .home-products .home-section-head h2 {
    max-width: 310px;
    font-size: 25px;
    line-height: 1.02;
  }

  body.home-redesign-v78 .home-products .home-section-head .text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    margin: 11px 0 0 auto;
    padding: 0 13px;
    border: 1px solid #dccdbf;
    border-radius: 6px;
    background: #f4e9dc;
    color: var(--home-accent);
    font-size: 8px;
  }

  body.home-redesign-v78 .home-featured-products {
    gap: 8px;
    padding-right: 14px;
  }

  body.home-redesign-v78 .home-product-card,
  body.home-redesign-v78 .home-product-card:first-child {
    flex: 0 0 min(44vw, 170px);
    border-radius: 6px;
  }

  body.home-redesign-v78 .home-product-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  body.home-redesign-v78 .home-product-body {
    min-height: 92px;
    padding: 10px 9px 11px;
  }
  body.home-redesign-v78 .home-product-body > span { font-size: 7px; }
  body.home-redesign-v78 .home-product-body h3 {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.08;
  }
  body.home-redesign-v78 .home-product-body p {
    margin-top: 8px;
    font-size: 11px;
  }

  body.home-redesign-v78 .home-custom {
    padding: 0 14px;
  }

  body.home-redesign-v78 .custom-panel {
    min-height: 0;
    padding: 30px 0;
    background-image: none !important;
  }

  body.home-redesign-v78 .custom-panel .eyebrow { display: none; }
  body.home-redesign-v78 .custom-panel h2 {
    max-width: none;
    font-size: 27px;
    line-height: 1;
  }
  body.home-redesign-v78 .custom-panel p.mobile-home-copy {
    max-width: 330px;
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.45;
  }
  body.home-redesign-v78 .custom-contact-link {
    display: inline-flex;
    gap: 5px;
    margin-left: 3px;
    color: var(--home-accent);
    font-weight: 800;
    text-decoration: none;
  }
  body.home-redesign-v78 .custom-modeling-point { display: none; }
  body.home-redesign-v78 .custom-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
  }
  body.home-redesign-v78 .custom-points span {
    display: flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 10px;
    line-height: 1.2;
  }
  body.home-redesign-v78 .custom-points span:last-child { text-transform: uppercase; }
  body.home-redesign-v78 .custom-points .custom-modeling-point { display: none; }

  body.home-redesign-v78 .home-prices {
    padding: 28px 14px 30px;
  }
  body.home-redesign-v78 .home-prices .home-section-head {
    display: block;
    margin: 0 0 16px;
  }
  body.home-redesign-v78 .home-prices .home-section-head h2 {
    max-width: 320px;
    font-size: 27px;
    line-height: 1;
  }
  body.home-redesign-v78 .compact-prices .price-pill {
    min-height: 110px;
    padding: 15px 11px 13px;
  }
  body.home-redesign-v78 .price-pill i { top: 16px; left: 11px; font-size: 16px; }
  body.home-redesign-v78 .price-pill span { padding-left: 24px; font-size: 8px; }
  body.home-redesign-v78 .price-pill strong { margin-top: 22px; font-size: 18px; }
  body.home-redesign-v78 .price-pill small {
    margin-top: 8px;
    font-size: 10px;
    line-height: 1.25;
  }

  body.home-redesign-v78 .contact {
    padding: 0 14px 30px;
  }
  body.home-redesign-v78 .contact-visual {
    min-height: 235px;
    margin: 0 -14px;
  }
  body.home-redesign-v78 .contact-copy {
    padding: 16px 0 12px;
  }
  body.home-redesign-v78 .contact-copy .eyebrow,
  body.home-redesign-v78 .contact-copy h2,
  body.home-redesign-v78 .contact-copy > p:not(.eyebrow),
  body.home-redesign-v78 .contact-delivery-note { display: none; }
  body.home-redesign-v78 .contact-note {
    display: none;
  }
  body.home-redesign-v78 .contact-note span {
    font-size: 10px;
    font-weight: 700;
  }
  body.home-redesign-v78 .contact-form {
    padding-top: 14px;
  }
  body.home-redesign-v78 .mobile-response-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 14px;
    color: #776b5f;
    font-size: 12px;
    font-weight: 700;
  }
  body.home-redesign-v78 .mobile-response-note i { color: var(--home-accent); }
  body.home-redesign-v78 .contact-form label { font-size: 9px; }
  body.home-redesign-v78 .contact-form input { min-height: 44px; }
  body.home-redesign-v78 .contact-form textarea { min-height: 112px; }
  body.home-redesign-v78 .file-drop { min-height: 68px; }
  body.home-redesign-v78 .form-note { font-size: 8px; }
}

@media (max-width: 370px) {
  body.home-redesign-v78 .hero-direct { height: 550px; padding-top: 92px; }
  body.home-redesign-v78 .hero-direct h1 { font-size: 28px; }
  body.home-redesign-v78 .hero-direct .lead.mobile-home-copy { font-size: 10px; }
  body.home-redesign-v78 .hero-direct .hero-actions .button { font-size: 9.5px; }
  body.home-redesign-v78 .service-tile h2 { font-size: 12px; }
  body.home-redesign-v78 .home-products .home-section-head h2,
  body.home-redesign-v78 .custom-panel h2,
  body.home-redesign-v78 .home-prices .home-section-head h2 { font-size: 24px; }
}
/* Footer unic pe toate paginile publice. */
.site-footer.unified-site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 1.25fr) minmax(150px, .62fr) minmax(190px, .82fr);
  align-items: start;
  gap: 64px;
  width: min(100%, 1440px);
  min-height: 325px;
  margin: 0 auto;
  padding: 54px 54px 78px;
  border: 0;
  border-top: 1px solid rgba(104, 76, 57, .16);
  border-radius: 0;
  background: #fffdf9;
  box-shadow: none;
  color: #726a63;
}

.unified-site-footer .footer-brand-column,
.unified-site-footer .footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.unified-site-footer .footer-brand-column { gap: 8px; }
.unified-site-footer .brand { margin: 0 0 2px; }
.unified-site-footer .brand-logo { width: 27px; height: 27px; object-fit: contain; }
.unified-site-footer .brand-text { font-size: 20px; }
.unified-site-footer .footer-brand-column p {
  max-width: 250px;
  margin: 0 0 2px;
  color: #7b746e;
  font-size: 15px;
  line-height: 1.55;
}

.unified-site-footer a { color: #746c65; text-decoration: none; }
.unified-site-footer a:hover { color: #7d4d39; }
.unified-site-footer .footer-direct-contact { font-size: 15px; line-height: 1.4; }
.unified-site-footer .footer-socials { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 7px; }
.unified-site-footer .footer-socials a { color: #3f3934; font-size: 13px; }
.unified-site-footer .footer-column { gap: 14px; padding-top: 22px; }
.unified-site-footer .footer-column strong {
  margin-bottom: 6px;
  color: #211d1a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.unified-site-footer .footer-column a { font-size: 15px; line-height: 1.25; }
.unified-site-footer .footer-copyright {
  position: absolute;
  left: 54px;
  bottom: 27px;
  grid-column: auto;
  color: #9b948e;
  font-size: 12px;
}

@media (max-width: 700px) {
  .site-footer.unified-site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    min-height: 0;
    padding: 38px 18px 68px;
  }
  .unified-site-footer .footer-brand-column { grid-column: 1 / -1; }
  .unified-site-footer .footer-column { padding-top: 0; }
  .unified-site-footer .footer-copyright { left: 18px; right: 18px; bottom: 23px; }
}

/* Legal, newsletter si preferinte cookies - v90. */
.site-footer.unified-site-footer {
  grid-template-columns: minmax(250px, 1.15fr) minmax(120px, .55fr) minmax(150px, .7fr) minmax(190px, .9fr);
  min-height: 0;
  padding-bottom: 34px;
}
.unified-site-footer .footer-legal-column { min-width: 0; }
.unified-site-footer .footer-legal-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(104, 76, 57, .13);
}
.unified-site-footer .footer-copyright {
  position: static;
  flex: 1 1 auto;
  color: #9b948e;
  font-size: 12px;
}
.unified-site-footer .footer-consumer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.unified-site-footer .footer-anpc-link {
  max-width: 230px;
  color: #3a312c;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-align: right;
}
.unified-site-footer .footer-sal-link {
  display: block;
  width: 250px;
  height: 50px;
  overflow: hidden;
}
.unified-site-footer .footer-sal-link img {
  display: block;
  width: 250px;
  height: 50px;
  object-fit: contain;
}
.newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 64px;
  width: min(calc(100% - 48px), 1320px);
  margin: 54px auto 0;
  padding: 48px 54px;
  border: 1px solid rgba(115, 78, 54, .14);
  background: #f8f1e8;
}
.newsletter-copy h2 { max-width: 630px; margin: 8px 0 12px; font-family: var(--display, "Playfair Display", serif); font-size: clamp(34px, 3.2vw, 54px); line-height: 1.02; letter-spacing: 0; }
.newsletter-copy > p:last-child { max-width: 560px; margin: 0; color: #756c65; line-height: 1.65; }
.newsletter-form { display: grid; gap: 12px; }
.newsletter-form > label:first-child { color: #6e4432; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.newsletter-field { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.newsletter-field input { width: 100%; min-height: 54px; padding: 0 17px; border: 1px solid #d9cec3; border-radius: 6px; background: #fffdf9; color: #211d1a; font: inherit; }
.newsletter-field .button { min-height: 54px; padding-inline: 25px; }
.newsletter-consent { display: flex; align-items: flex-start; gap: 9px; color: #6f665f; font-size: 12px; line-height: 1.45; }
.newsletter-consent input { margin-top: 2px; accent-color: #8a5037; }
.newsletter-consent a { color: #754632; }
.newsletter-note { min-height: 18px; margin: 0; font-size: 12px; }
.newsletter-note.is-success { color: #397044; }
.newsletter-note.is-error { color: #b23a32; }
.cookie-consent {
  position: fixed;
  z-index: 10050;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 44px), 760px);
  padding: 22px 24px;
  border: 1px solid rgba(101, 68, 48, .2);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 20px 60px rgba(47, 34, 26, .22);
  color: #2a2521;
}
.cookie-consent strong { display: block; margin-bottom: 5px; font-family: var(--display, "Playfair Display", serif); font-size: 22px; }
.cookie-consent p { margin: 0; color: #716861; font-size: 13px; line-height: 1.5; }
.cookie-consent a { color: #7d4d39; }
.cookie-consent-actions { display: flex; gap: 8px; }
.cookie-consent .button { min-height: 42px; padding: 0 16px; white-space: nowrap; }
.legal-page .info-main { width: min(calc(100% - 48px), 1120px); }
.legal-hero { padding: 64px 0 30px; border-bottom: 1px solid rgba(104, 76, 57, .14); }
.legal-hero h1 { max-width: 820px; margin: 8px 0 14px; font-family: var(--display, "Playfair Display", serif); font-size: clamp(44px, 6vw, 78px); line-height: .98; letter-spacing: 0; }
.legal-hero > p:last-child { max-width: 760px; color: #736a63; font-size: 17px; line-height: 1.65; }
.legal-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 64px; padding: 42px 0 74px; }
.legal-nav { position: sticky; top: 110px; align-self: start; display: grid; gap: 7px; padding: 18px; border: 1px solid rgba(104, 76, 57, .14); background: #faf5ee; }
.legal-nav strong { margin-bottom: 8px; color: #8a5037; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.legal-nav a { color: #5e5650; font-size: 13px; line-height: 1.35; text-decoration: none; }
.legal-nav a:hover, .legal-nav a[aria-current="page"] { color: #7d4d39; font-weight: 700; }
.legal-content { display: grid; gap: 32px; }
.legal-content section { scroll-margin-top: 110px; }
.legal-content h2 { margin: 0 0 12px; font-family: var(--display, "Playfair Display", serif); font-size: clamp(27px, 3vw, 38px); line-height: 1.1; letter-spacing: 0; }
.legal-content h3 { margin: 20px 0 8px; font-size: 17px; }
.legal-content p, .legal-content li { color: #665f59; font-size: 15px; line-height: 1.7; }
.legal-content p { margin: 0 0 10px; }
.legal-content ul, .legal-content ol { display: grid; gap: 6px; margin: 10px 0 0; padding-left: 20px; }
.legal-notice { padding: 18px 20px; border-left: 3px solid #ad6847; background: #f7eee3; }
.legal-contact-card { display: grid; gap: 7px; padding: 22px; border: 1px solid rgba(104, 76, 57, .14); background: #fffdf9; }
.legal-contact-card a { color: #754632; }
@media (max-width: 920px) {
  .site-footer.unified-site-footer { grid-template-columns: 1fr 1fr; gap: 32px 26px; }
  .unified-site-footer .footer-brand-column { grid-column: 1 / -1; }
  .newsletter-section { grid-template-columns: 1fr; gap: 28px; }
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-nav { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-nav strong { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .site-footer.unified-site-footer { grid-template-columns: 1fr 1fr; padding: 38px 18px 28px; }
  .unified-site-footer .footer-legal-bottom { align-items: flex-start; flex-direction: column-reverse; }
  .unified-site-footer .footer-consumer-links { width: 100%; align-items: flex-start; flex-direction: column; }
  .unified-site-footer .footer-anpc-link { max-width: none; text-align: left; }
  .unified-site-footer .footer-sal-link, .unified-site-footer .footer-sal-link img { width: 250px; height: 50px; max-width: 100%; }
  .newsletter-section { width: 100%; margin-top: 30px; padding: 34px 18px; border-left: 0; border-right: 0; }
  .newsletter-copy h2 { font-size: 34px; }
  .newsletter-field { grid-template-columns: 1fr; }
  .newsletter-field .button { width: 100%; }
  .cookie-consent { left: 10px; right: 10px; bottom: 10px; grid-template-columns: 1fr; width: auto; gap: 16px; padding: 18px; }
  .cookie-consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-consent .button { width: 100%; padding-inline: 10px; }
  .legal-page .info-main { width: min(calc(100% - 28px), 1120px); }
  .legal-hero { padding-top: 38px; }
  .legal-hero h1 { font-size: 43px; }
  .legal-layout { padding-top: 28px; }
  .legal-nav { grid-template-columns: 1fr; }
  .legal-nav strong { grid-column: auto; }
}

/* Cookie consent v91: categories are blocked until the visitor chooses. */
.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 10000;
  width: min(980px, calc(100vw - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(124, 77, 57, 0.16);
  border-radius: 22px;
  background: rgba(255, 251, 246, 0.98);
  box-shadow: 0 24px 70px rgba(45, 31, 23, 0.18);
  backdrop-filter: blur(18px);
}
.cookie-consent strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display, "Playfair Display", serif);
  font-size: 24px;
  line-height: 1.05;
  color: #241f1b;
}
.cookie-consent p {
  margin: 0;
  color: #74675d;
  font-size: 14px;
  line-height: 1.55;
}
.cookie-consent a { color: #8a4f36; font-weight: 700; }
.cookie-consent-actions {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 10px;
}
.cookie-consent .button {
  min-height: 44px;
  padding: 0 18px;
  white-space: nowrap;
}
.cookie-settings-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(29, 22, 18, 0.48);
  backdrop-filter: blur(6px);
}
.cookie-settings-modal {
  width: min(720px, calc(100vw - 28px));
  max-height: min(760px, calc(100vh - 34px));
  overflow: auto;
  border: 1px solid rgba(124, 77, 57, 0.16);
  border-radius: 26px;
  background: #fffaf4;
  box-shadow: 0 30px 90px rgba(31, 23, 18, 0.28);
  padding: 24px;
}
.cookie-settings-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.cookie-settings-header h2 {
  margin: 4px 0 0;
  font-family: var(--display, "Playfair Display", serif);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}
.cookie-settings-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(124, 77, 57, 0.18);
  border-radius: 999px;
  background: #fff;
  color: #271f1a;
  font-size: 18px;
  cursor: pointer;
}
.cookie-settings-intro {
  margin: 18px 0;
  color: #74675d;
  line-height: 1.6;
}
.cookie-category-list { display: grid; gap: 10px; }
.cookie-category {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(124, 77, 57, 0.14);
  border-radius: 18px;
  background: #fff;
}
.cookie-category strong {
  display: block;
  margin-bottom: 4px;
  color: #241f1b;
}
.cookie-category small {
  display: block;
  color: #74675d;
  line-height: 1.45;
}
.cookie-category input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cookie-toggle {
  width: 54px;
  height: 30px;
  border-radius: 999px;
  background: #ded4ca;
  box-shadow: inset 0 0 0 1px rgba(124, 77, 57, 0.14);
  transition: background 0.2s ease;
}
.cookie-toggle::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(45, 31, 23, 0.2);
  transition: transform 0.2s ease;
}
.cookie-category input:checked + .cookie-toggle { background: #9a5b3d; }
.cookie-category input:checked + .cookie-toggle::after { transform: translateX(24px); }
.cookie-category.is-locked { background: #fbf3ea; }
.cookie-settings-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.cookie-settings-actions .button { min-height: 46px; }
@media (max-width: 720px) {
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: 1fr;
    width: auto;
    border-radius: 18px;
    padding: 16px;
  }
  .cookie-consent-actions,
  .cookie-settings-actions {
    grid-template-columns: 1fr;
  }
  .cookie-consent .button,
  .cookie-settings-actions .button {
    width: 100%;
  }
  .cookie-settings-backdrop { padding: 10px; }
  .cookie-settings-modal {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    padding: 18px;
    border-radius: 20px;
  }
}

/* v126: rezumat de pret corect si acces catre pagina completa de tarife. */
body.home-redesign-v78 .compact-prices .price-pill {
  display: flex;
  min-height: 232px;
  flex-direction: column;
}
body.home-redesign-v78 .price-pill small {
  display: block;
  margin-top: 3px;
  line-height: 1.45;
}
body.home-redesign-v78 .price-pill-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  border-bottom: 1px solid rgba(117, 75, 60, .32);
  padding: 10px 0 5px;
  color: #754b3c;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}
body.home-redesign-v78 .price-pill-link:hover { color: #211f1c; border-bottom-color: #211f1c; }
body.home-redesign-v78 .price-pill .price-pill-link i {
  position: static;
  color: currentColor;
  font-size: 10px;
  transition: transform .2s ease;
}
body.home-redesign-v78 .price-pill-link:hover i { transform: translateX(3px); }
body.home-redesign-v78 .price-summary-note {
  max-width: 880px;
  margin: 18px 0 0;
  color: #756b64;
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  body.home-redesign-v78 .compact-prices .price-pill { min-height: 176px; }
  body.home-redesign-v78 .price-pill-link { padding-top: 8px; font-size: 10px; }
  body.home-redesign-v78 .price-summary-note { margin-top: 14px; font-size: 11px; }
}
