/* DOMOL — paletă brand */
[hidden] {
  display: none !important;
}

:root {
  --color-brand: #3a1e0f;
  --color-bg: #faf7f2;
  --color-card: #efe3d4;
  --color-card-alt: #ffffff;
  --color-accent: #c8793d;
  --color-taupe: #cbb8a6;
  --color-text: #6b5648;
  --color-text-muted: #867569;
  --color-border: #e3d4c5;
  --color-btn-text: #faf7f2;
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --shadow-soft: 0 12px 40px rgba(58, 30, 15, 0.08);
  --shadow-lift: 0 20px 50px rgba(58, 30, 15, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --transition: 0.22s ease;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--color-brand);
  color: var(--color-btn-text);
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  overflow: visible;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.cart-open {
  overflow: hidden;
  touch-action: none;
}

/* ============================================ */
/* TOPBAR — announcement                        */
/* ============================================ */
.topbar {
  background: linear-gradient(90deg, var(--color-brand) 0%, #4a2818 50%, var(--color-brand) 100%);
  color: rgba(250, 247, 242, 0.95);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 210;
}

.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.55rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
}

.topbar-messages {
  position: relative;
  height: 1.25rem;
  width: 100%;
  max-width: 540px;
}

.topbar-msg {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.topbar-msg.is-active {
  opacity: 1;
  transform: translateY(0);
}

.topbar-msg svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.topbar-msg strong {
  color: var(--color-btn-text);
  font-weight: 700;
}

@media (max-width: 600px) {
  .topbar {
    font-size: 0.75rem;
  }
  .topbar-inner {
    padding: 0.5rem 1rem;
  }
}

/* ============================================ */
/* HEADER                                       */
/* ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 6px 20px rgba(58, 30, 15, 0.06);
  border-bottom-color: transparent;
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.7rem clamp(1rem, 3vw, 1.5rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem 1.5rem;
  min-height: var(--header-h);
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: var(--color-brand);
  transition: opacity var(--transition);
}

.logo:hover {
  opacity: 0.88;
}

.logo-img {
  display: block;
  height: 42px;
  width: auto;
  max-width: min(168px, 46vw);
  object-fit: contain;
}

.logo--standalone {
  display: inline-flex;
  justify-content: center;
}

.logo--standalone .logo-img {
  height: 52px;
  max-width: min(200px, 80vw);
}

/* Nav */
.nav-center {
  justify-self: center;
  min-width: 0;
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem clamp(0.5rem, 1.6vw, 1.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* O singură linie pentru menu principal pe desktop (evită „Contact” sub „Accesorii”). */
@media (min-width: 901px) {
  .nav-main {
    flex-wrap: nowrap;
    gap: 0.1rem clamp(0.28rem, 1vw, 0.75rem);
  }

  .nav-center .nav-link {
    padding: 0.45rem clamp(0.28rem, 0.85vw, 0.55rem);
    font-size: clamp(0.8125rem, 1.05vw, 0.9375rem);
  }

  .nav-center .nav-link::after {
    left: clamp(0.28rem, 0.85vw, 0.55rem);
    right: clamp(0.28rem, 0.85vw, 0.55rem);
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .logo-img {
    height: 38px;
    max-width: min(148px, 36vw);
  }
}

.nav-link {
  position: relative;
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: var(--color-text);
  text-decoration: none;
  padding: 0.5rem 0.65rem;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.3rem;
  height: 1.5px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover {
  color: var(--color-brand);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link.is-active {
  color: var(--color-brand);
  font-weight: 600;
}

.nav-mobile-divider,
.nav-mobile-extra {
  display: none;
}

/* === Mega menu === */
.nav-item {
  position: static;
  list-style: none;
}

.nav-item.has-mega .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-caret {
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.nav-item.has-mega:hover .nav-caret,
.nav-item.has-mega:focus-within .nav-caret {
  transform: rotate(180deg);
}

.nav-link--highlight {
  color: var(--color-accent) !important;
  font-weight: 600;
}

.nav-link--highlight::before {
  content: "•";
  margin-right: 0.25rem;
  color: var(--color-accent);
  font-size: 1.1em;
  line-height: 1;
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 24px 48px -22px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease 0.15s, transform 0.2s ease 0.15s, visibility 0s linear 0.35s;
  z-index: 80;
  pointer-events: none;
}

/* Invisible "bridge" so the user can move from the nav-link to the menu
   without closing it, even if there's a small vertical gap. */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
  background: transparent;
  pointer-events: auto;
}

/* Extend the hoverable area of the parent link downward so hover state
   stays active while the cursor traverses the bridge. */
.nav-item.has-mega > .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

.nav-item.has-mega:hover > .mega-menu,
.nav-item.has-mega:focus-within > .mega-menu,
.nav-item.has-mega.is-mobile-open > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s ease 0s, transform 0.2s ease 0s, visibility 0s linear 0s;
  pointer-events: auto;
}

.mega-menu-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 2rem 1.5rem 2.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.mega-col-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-taupe);
  margin: 0 0 0.85rem;
}

.mega-col-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mega-link {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.55rem 0.6rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--color-brand);
  transition: background 0.2s ease, transform 0.2s ease;
}

.mega-link:hover {
  background: var(--color-card-alt);
  transform: translateX(3px);
}

.mega-link-label {
  font-size: 0.96rem;
  font-weight: 500;
  font-family: var(--font-display);
  color: var(--color-brand);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.mega-link.is-highlight .mega-link-label::after {
  content: "★";
  color: var(--color-accent);
  font-size: 0.85em;
}

.mega-link-sub {
  font-size: 0.78rem;
  color: var(--color-text);
  opacity: 0.72;
  font-weight: 400;
}

.mega-col--featured {
  border-left: 1px solid var(--color-border);
  padding-left: 1.75rem;
}

.mega-feature {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--color-brand);
  transition: transform 0.22s ease;
}

.mega-feature:hover {
  transform: translateY(-2px);
}

.mega-feature img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  background: var(--color-card-alt);
}

.mega-feature-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.4rem;
}

.mega-feature-note {
  font-size: 0.82rem;
  color: var(--color-text);
  opacity: 0.75;
}

.mega-feature-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 0.25rem;
}

.mega-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fde6cf, #f6cfa3);
  color: var(--color-brand);
}

.mega-col--gift .mega-feature {
  background: linear-gradient(180deg, #fffaf4 0%, #fff 100%);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1rem;
}

.nav-mobile-toggle {
  display: none;
}

/* Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: end;
}

.header-quick-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.28rem;
  margin-right: 0.15rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--color-text-muted);
}

.header-quick-links__sep {
  opacity: 0.45;
  user-select: none;
}

.header-quick-links__a {
  color: inherit;
  text-decoration: none;
  padding: 0.2rem 0.15rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.header-quick-links__a:hover {
  color: var(--color-brand);
  background: rgba(58, 30, 15, 0.06);
}

/* Account (guest dropdown + logged-in link) */
.account-dropdown {
  position: relative;
  flex-shrink: 0;
}

.account-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
  z-index: 119;
}

.account-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-card-alt);
  color: var(--color-brand);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition),
    color var(--transition), transform 0.15s ease;
  appearance: none;
  font: inherit;
}

.account-trigger:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.account-trigger:active {
  transform: scale(0.94);
}

.account-trigger--link {
  text-decoration: none;
}

.account-trigger--link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: 0 4px 14px rgba(200, 121, 61, 0.18);
}

.account-icon {
  pointer-events: none;
}

.account-dropdown__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 11.5rem;
  padding: 0.35rem 0;
  margin: 0;
  background: var(--color-card-alt);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(58, 30, 15, 0.14);
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.account-dropdown.is-open .account-dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 901px) {
  .account-dropdown:hover .account-dropdown__panel,
  .account-dropdown:focus-within .account-dropdown__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.account-dropdown__item {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-brand);
  text-decoration: none;
  transition: background 0.15s ease;
}

.account-dropdown__item:hover,
.account-dropdown__item:focus-visible {
  background: rgba(58, 30, 15, 0.06);
  outline: none;
}

@media (max-width: 900px) {
  .account-dropdown:not(.is-open):hover .account-dropdown__panel,
  .account-dropdown:not(.is-open):focus-within .account-dropdown__panel {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
  }
}

.cart-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-card-alt);
  color: var(--color-brand);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition),
    color var(--transition), transform 0.15s ease, box-shadow var(--transition);
}

.cart-trigger:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: 0 4px 14px rgba(200, 121, 61, 0.18);
}

.cart-trigger:active {
  transform: scale(0.94);
}

.cart-icon {
  pointer-events: none;
}

.cart-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 5px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.25rem;
  text-align: center;
  color: var(--color-btn-text);
  background: var(--color-accent);
  border-radius: 999px;
  box-shadow: 0 0 0 2px var(--color-bg);
  pointer-events: none;
}

.cart-badge[hidden] {
  display: none !important;
}

.cart-badge.is-bumped {
  animation: domol-badge-bump 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes domol-badge-bump {
  0% { transform: scale(1); }
  30% { transform: scale(1.45); background: var(--color-brand); }
  60% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

/* ============================================ */
/* FAVORITES                                    */
/* ============================================ */
.fav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-card-alt);
  color: var(--color-brand);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform 0.15s ease;
}

.fav-trigger:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.fav-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 5px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.25rem;
  text-align: center;
  color: var(--color-btn-text);
  background: var(--color-accent);
  border-radius: 999px;
  box-shadow: 0 0 0 2px var(--color-bg);
  pointer-events: none;
}

/* Heart button on cards */
.fav-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  color: var(--color-brand);
  transition: color var(--transition), background var(--transition), transform 0.15s ease, border-color var(--transition);
  padding: 0;
}

.fav-btn .fav-icon-outline,
.fav-btn .fav-icon-fill {
  display: block;
  transition: opacity 0.18s ease, transform 0.22s ease;
}

.fav-btn .fav-icon-fill {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
  color: #e63946;
  transform: scale(0.4);
}

.fav-btn.is-active .fav-icon-outline {
  opacity: 0;
}

.fav-btn.is-active .fav-icon-fill {
  opacity: 1;
  transform: scale(1);
}

.fav-btn.is-poping .fav-icon-fill {
  animation: domol-heart-pop 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes domol-heart-pop {
  0% { transform: scale(1); }
  35% { transform: scale(1.5); }
  60% { transform: scale(0.85); }
  100% { transform: scale(1); }
}

/* Card variant - top-right overlay */
.fav-btn--card {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 5;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(58, 30, 15, 0.08);
}

.fav-btn--card:hover {
  background: var(--color-card-alt);
  transform: scale(1.06);
}

.fav-btn--card .fav-icon-outline,
.fav-btn--card .fav-icon-fill {
  width: 18px;
  height: 18px;
}

.fav-btn--card .fav-icon-fill {
  width: 18px;
  height: 18px;
  inset: auto;
  position: absolute;
}

/* Inline variant — pe mobil, lângă ATC-ul cardului */
.fav-btn--inline {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-card-alt);
  color: var(--color-brand);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.fav-btn--inline .fav-icon-outline,
.fav-btn--inline .fav-icon-fill {
  width: 18px;
  height: 18px;
}

.fav-btn--inline.is-active {
  background: rgba(230, 57, 70, 0.1);
  border-color: rgba(230, 57, 70, 0.45);
}

.fav-btn--inline:active {
  transform: scale(0.94);
}

/* Wrapper-ul cu fav-btn + form — display:contents pe desktop ca să nu
   afecteze layoutul existent al footer-ului. */
.product-card-actions {
  display: contents;
}

/* Large variant - product detail */
.fav-btn--large {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border-color: var(--color-border);
  background: var(--color-card-alt);
  flex-shrink: 0;
}

.fav-btn--large:hover {
  border-color: #e63946;
  color: #e63946;
}

.fav-btn--large.is-active {
  border-color: #e63946;
  background: #fff4f5;
}

/* Favorite page */
.page-favorite {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.5rem) 4rem;
}

/* Jurnal, urmărire, autentificare — aceeași lățime ca Favorite / Magazin */
.page-static-wide {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.5rem) 4rem;
}

/* Login / Înregistrare */
.page-auth .auth-layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0.25rem 0 2rem;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(165deg, #fffefb 0%, var(--color-card-alt) 42%, #faf6ef 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  overflow: hidden;
}

.auth-card--register {
  max-width: 540px;
}

.auth-card__accent,
.editorial-card__accent {
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--color-brand) 0%,
    var(--color-accent) 38%,
    #e8c4a2 62%,
    var(--color-accent) 100%
  );
}

.auth-card__inner,
.editorial-card__body {
  padding: clamp(1.5rem, 4vw, 2.35rem);
}

.auth-card__head,
.editorial-card__head {
  text-align: center;
  margin-bottom: 1.35rem;
}

.auth-card__mark,
.editorial-card__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(200, 121, 61, 0.14), rgba(58, 30, 15, 0.06));
  border: 1px solid rgba(227, 212, 197, 0.95);
  color: var(--color-accent);
}

.auth-card__mark svg,
.editorial-card__mark svg {
  flex-shrink: 0;
}

.auth-card__eyebrow,
.editorial-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.auth-card__title,
.editorial-title {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.2rem);
  font-weight: 600;
  color: var(--color-brand);
  line-height: 1.15;
}

.auth-card__lead,
.editorial-lead {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.auth-benefits {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(227, 212, 197, 0.85);
}

.auth-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  padding: 0.35rem 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--color-text);
}

.auth-benefits li + li {
  border-top: 1px dashed rgba(227, 212, 197, 0.9);
}

.auth-benefits li svg {
  flex-shrink: 0;
  margin-top: 0.12rem;
  color: var(--color-accent);
}

.auth-field-hint {
  font-weight: 500;
  font-size: 0.82em;
  color: var(--color-text-muted);
}

.auth-card .checkout-form input::placeholder,
.editorial-card .checkout-form input::placeholder,
.editorial-card .contact-form input::placeholder,
.editorial-card .contact-form textarea::placeholder {
  color: rgba(107, 86, 72, 0.38);
}

.auth-card .checkout-form .btn-primary,
.editorial-card .checkout-form .btn-primary,
.editorial-card .contact-form .btn-primary {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.85rem 1.35rem;
  font-size: 1.04rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.auth-card__switch {
  margin: 1.35rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(227, 212, 197, 0.95);
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.auth-card__switch-link {
  display: inline-block;
  margin-left: 0.25rem;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.auth-card__switch-link:hover {
  color: var(--color-brand);
}

/* Panouri editoriale: urmărire, contact, despre, articol jurnal */
.editorial-card {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(165deg, #fffefb 0%, var(--color-card-alt) 42%, #faf6ef 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  overflow: hidden;
}

.editorial-card--contact {
  max-width: 560px;
}

.editorial-card--article {
  max-width: 820px;
}

.editorial-card--about {
  max-width: 640px;
}

/* Urmărire comandă — folosește lățimea paginii, nu card îngust (520px) */
.editorial-card--track {
  max-width: min(1100px, 100%);
  width: 100%;
}

.editorial-layout--track {
  width: 100%;
  max-width: 100%;
  padding: 0.35rem 0 clamp(2rem, 5vw, 3rem);
}

.page-static-wide.page-order-track {
  max-width: min(1320px, 100%);
  padding-left: clamp(0.75rem, 4vw, 2rem);
  padding-right: clamp(0.75rem, 4vw, 2rem);
}

.checkout-form--track-fields {
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .checkout-form--track-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.35rem;
  }
}

.editorial-layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0.25rem 0 2rem;
}

.editorial-card .prose--legal {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* Jurnal — listă */
.journal-hero {
  text-align: center;
  margin: 0 auto 2.75rem;
  max-width: 38rem;
}

.journal-hero .editorial-card__mark {
  margin-bottom: 1rem;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 288px), 1fr));
  gap: clamp(1.15rem, 2.5vw, 1.85rem);
}

.journal-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  background: linear-gradient(165deg, #fffefb 0%, var(--color-card-alt) 52%, #faf7f1 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 22px rgba(58, 30, 15, 0.06);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform 0.22s ease;
}

.journal-card:hover {
  border-color: var(--color-taupe);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.journal-card__media {
  display: block;
  overflow: hidden;
  background: var(--color-card);
}

.journal-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.journal-card:hover .journal-card__media img {
  transform: scale(1.035);
}

.journal-card__meta {
  margin: 1.1rem 1.25rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.journal-card__title {
  margin: 0 1.25rem 0.55rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.2;
}

.journal-card__title a {
  color: var(--color-brand);
  text-decoration: none;
  transition: color var(--transition);
}

.journal-card__title a:hover {
  color: var(--color-accent);
}

.journal-card__excerpt {
  margin: 0 1.25rem 1.3rem;
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text);
}

.journal-empty {
  text-align: center;
  padding: 2.75rem 1.5rem;
  background: var(--color-card);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  color: var(--color-text-muted);
  max-width: 28rem;
  margin: 0 auto;
}

/* Articol jurnal */
.blog-post-head .page-lead {
  margin-bottom: 0;
}

.blog-post-panel .blog-post-head {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.blog-post-cover {
  margin: 0 0 1.75rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-card);
  box-shadow: 0 14px 34px rgba(58, 30, 15, 0.08);
}

.blog-post-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-post-panel .blog-post-head h1 {
  margin: 0.35rem 0 0.65rem;
}

.blog-post-meta {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.blog-back-wrap {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(227, 212, 197, 0.95);
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

.blog-back-link:hover {
  color: var(--color-brand);
}

/* === Pagina de articol blog (full width, stil revistă) === */
.page-blog-article {
  max-width: 1240px;
}

.blog-article {
  width: 100%;
  background: linear-gradient(165deg, #fffefb 0%, var(--color-card-alt) 42%, #faf6ef 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  overflow: hidden;
}

.blog-article__cover {
  margin: 0;
  position: relative;
  background: var(--color-card);
}

.blog-article__cover img {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 340px;
  object-fit: cover;
}

.blog-article__cover::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(255, 254, 251, 0) 0%, rgba(255, 254, 251, 0.55) 100%);
  pointer-events: none;
}

.blog-article__inner {
  padding: clamp(1.2rem, 2.5vw, 1.9rem) clamp(1rem, 4vw, 3rem) clamp(1.3rem, 2.5vw, 2rem);
}

.blog-article__head {
  max-width: 720px;
  margin: 0 auto clamp(1.2rem, 2.5vw, 1.6rem);
  text-align: center;
  padding-bottom: clamp(0.9rem, 2vw, 1.2rem);
  border-bottom: 1px solid rgba(203, 184, 166, 0.5);
}

.blog-article__title {
  margin: 0.4rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-brand);
}

.blog-article__lead {
  margin: 0 auto 0.75rem;
  max-width: 580px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.blog-article__meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-article__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.blog-article__meta-item svg {
  color: var(--color-accent);
}

.blog-body--article {
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.93rem;
  line-height: 1.75;
}

.blog-body--article > p:first-child {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-brand);
}

.blog-body--article h2,
.blog-body--article h3 {
  position: relative;
  margin: 1.7rem 0 0.6rem;
  padding-top: 0.8rem;
  font-size: 1.12rem;
  line-height: 1.3;
}

.blog-body--article h3 {
  font-size: 1.02rem;
}

.blog-body--article h2::before,
.blog-body--article h3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2.1rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), rgba(196, 122, 58, 0.25));
}

.blog-body--article blockquote {
  margin: 1.35rem 0;
  padding: 0.8rem 1.1rem;
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(196, 122, 58, 0.07);
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--color-brand);
}

.blog-body--article blockquote p {
  margin: 0;
}

.blog-body--article a {
  color: var(--color-accent);
  font-weight: 600;
}

.blog-body--article img {
  margin: 1.2rem 0;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(58, 30, 15, 0.09);
}

.blog-body--article hr {
  margin: 1.7rem auto;
  width: 4rem;
  border: none;
  border-top: 2px solid rgba(196, 122, 58, 0.35);
}

.blog-article__footer {
  max-width: 700px;
  margin: clamp(1.4rem, 2.5vw, 1.9rem) auto 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(227, 212, 197, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 600px) {
  .blog-article__cover img {
    aspect-ratio: 16 / 10;
    max-height: 240px;
  }

  .blog-article__meta {
    gap: 0.85rem;
  }

  .blog-body--article {
    font-size: 0.88rem;
  }

  .blog-article__footer {
    flex-direction: column-reverse;
    align-items: stretch;
    text-align: center;
  }

  .blog-article__footer .btn {
    width: 100%;
  }

  .blog-article__footer .blog-back-link {
    justify-content: center;
  }
}

.blog-body {
  line-height: 1.75;
  color: var(--color-text);
}

.blog-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.blog-body h2,
.blog-body h3 {
  font-family: var(--font-display);
  color: var(--color-brand);
  margin: 1.75rem 0 0.65rem;
}

.blog-body p {
  margin: 0 0 1rem;
}

.blog-body ul,
.blog-body ol {
  padding-left: 1.35rem;
  margin: 0 0 1rem;
}

/* Urmărire comandă */
.track-result-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--color-brand);
  margin: 0 0 0.75rem;
}

.prose--legal h2.track-result-title {
  margin: 0 0 0.75rem;
  padding-bottom: 0;
  border-bottom: none;
  font-size: 1.45rem;
}

.track-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin: 1rem 0 1.25rem;
}

.track-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--color-border);
  color: var(--color-brand);
}

.track-pill--accent {
  background: rgba(200, 121, 61, 0.14);
  border-color: rgba(200, 121, 61, 0.35);
}

.track-detail {
  margin: 0.35rem 0;
  font-size: 0.92rem;
}

.track-lines-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-brand);
  margin: 1.35rem 0 0.5rem;
}

.prose--legal h3.track-lines-title {
  margin: 1.35rem 0 0.5rem;
  font-size: 1.1rem;
}

.track-lines {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  border: 1px solid rgba(227, 212, 197, 0.95);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
}

.track-lines li {
  margin: 0;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(227, 212, 197, 0.65);
}

.track-lines li:last-child {
  border-bottom: none;
}

.prose--legal ul.track-lines {
  padding-left: 0;
  margin-left: 0;
  list-style: none;
}

.track-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.track-muted-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.track-muted-link:hover {
  color: var(--color-brand);
}

/* Urmărire comandă — layout profesional */
.track-dash {
  margin-top: 0.25rem;
}

.track-dash__alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0 0 1.25rem;
  border: 1px solid transparent;
}

.track-dash__alert--danger {
  background: rgba(176, 42, 42, 0.08);
  border-color: rgba(176, 42, 42, 0.28);
  color: var(--color-brand);
}

.track-dash__alert--warn {
  background: rgba(200, 121, 61, 0.12);
  border-color: rgba(200, 121, 61, 0.35);
  color: var(--color-brand);
}

.track-dash__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  padding: 1.35rem 1.45rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(253, 248, 240, 0.82) 42%,
      rgba(248, 236, 222, 0.52) 100%
    );
  border: 1px solid rgba(227, 212, 197, 0.82);
  box-shadow:
    0 10px 44px rgba(58, 30, 15, 0.075),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  margin-bottom: 1.65rem;
}

.track-dash__hero--premium::before {
  content: "";
  position: absolute;
  width: 22rem;
  height: 22rem;
  top: -45%;
  right: -18%;
  background: radial-gradient(
    circle at 45% 45%,
    rgba(200, 121, 61, 0.22) 0%,
    rgba(200, 121, 61, 0.06) 38%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.track-dash__hero--premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 50%,
    rgba(255, 255, 255, 0.38) 75%,
    transparent 100%
  );
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.track-dash__hero-main,
.track-dash__hero-aside {
  position: relative;
  z-index: 1;
}

.track-dash__eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(62, 42, 28, 0.65);
}

.track-dash__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.05rem);
  font-weight: 700;
  color: var(--color-brand);
  letter-spacing: -0.03em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.track-dash__subtitle {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: rgba(62, 42, 28, 0.72);
}

.track-dash__hero-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  min-width: min(100%, 200px);
}

.track-dash__stat {
  text-align: right;
}

.track-dash__stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(62, 42, 28, 0.55);
}

.track-dash__stat-value {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 700;
  color: var(--color-brand);
  letter-spacing: -0.02em;
}

.track-dash__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.track-dash__badge-fs {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(200, 121, 61, 0.14);
  border: 1px solid rgba(200, 121, 61, 0.35);
  color: var(--color-brand);
}

.track-lifecycle {
  margin: 0 0 2rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(227, 212, 197, 0.85);
}

.track-lifecycle-summary {
  margin: 0 0 1.15rem;
  padding: 0.75rem 1rem;
  font-size: 0.94rem;
  line-height: 1.55;
  font-weight: 600;
  color: var(--color-brand);
  background: rgba(252, 249, 245, 0.96);
  border-radius: calc(var(--radius-sm) * 0.85);
  border-left: 4px solid var(--color-accent);
}

.track-lifecycle.track-lifecycle--premium {
  padding: 0;
  background: transparent;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 16px 52px rgba(58, 30, 15, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.78) inset;
  border: 1px solid rgba(212, 192, 176, 0.95);
}

.track-lifecycle__aurora {
  position: absolute;
  inset: -45% -25%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 75% 55% at 18% 28%, rgba(200, 121, 61, 0.22), transparent 58%),
    radial-gradient(ellipse 65% 50% at 88% 72%, rgba(255, 228, 206, 0.42), transparent 52%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 255, 255, 0.35), transparent 65%);
  animation: track-lifecycle-aurora-drift 16s ease-in-out infinite alternate;
  will-change: transform;
}

.track-lifecycle__inner {
  position: relative;
  z-index: 1;
  padding: 1.35rem 1.35rem 1.45rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.52) 0%,
    rgba(255, 252, 247, 0.38) 48%,
    rgba(252, 244, 234, 0.28) 100%
  );
}

.track-lifecycle--premium .track-lifecycle-summary {
  margin-bottom: 1.2rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(227, 212, 197, 0.72);
  border-left: 4px solid var(--color-accent);
  box-shadow: 0 6px 22px rgba(58, 30, 15, 0.05);
}

.track-lifecycle-progress {
  margin: 0 0 1.35rem;
}

.track-lifecycle-progress__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  margin-bottom: 0.55rem;
}

.track-lifecycle-progress__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(62, 42, 28, 0.52);
}

.track-lifecycle-progress__pct {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-brand);
  font-variant-numeric: tabular-nums;
}

.track-lifecycle-progress__track {
  height: 11px;
  border-radius: 999px;
  background: rgba(62, 42, 28, 0.085);
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(58, 30, 15, 0.07);
}

.track-lifecycle-progress__fill {
  height: 100%;
  width: var(--track-pct, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, #9e5f2c, var(--color-accent) 52%, #ecb078);
  box-shadow: 0 0 18px rgba(200, 121, 61, 0.38);
  transition: width 0.88s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.track-lifecycle-progress__fill::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.38),
    transparent
  );
  animation: track-progress-shimmer 2.4s ease-in-out infinite;
}

@keyframes track-lifecycle-aurora-drift {
  from {
    transform: translate(-1.5%, -1%) rotate(-1.5deg) scale(1);
  }

  to {
    transform: translate(2.5%, 1.5%) rotate(2deg) scale(1.03);
  }
}

@keyframes track-progress-shimmer {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(320%);
  }
}

.track-steps-pro {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.55rem, 1.5vw, 0.85rem);
}

.track-steps-pro__step {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0.85rem 0.75rem 0.95rem;
  border-radius: calc(var(--radius-sm) * 0.9);
  border: 1px solid rgba(220, 206, 192, 0.88);
  background: rgba(255, 255, 255, 0.78);
  min-height: 6.25rem;
  overflow: hidden;
}

.track-steps-pro__bar {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: rgba(210, 197, 184, 0.95);
}

.track-steps-pro__step--completed {
  border-color: rgba(200, 121, 61, 0.32);
  background: rgba(255, 252, 248, 0.94);
}

.track-steps-pro__step--completed .track-steps-pro__bar {
  background: var(--color-accent);
}

.track-steps-pro__step--active {
  border-color: rgba(200, 121, 61, 0.52);
  box-shadow: 0 6px 24px rgba(62, 42, 28, 0.07);
}

.track-steps-pro__step--active .track-steps-pro__bar {
  height: 4px;
  background: var(--color-accent);
}

.track-steps-pro__hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.track-steps-pro__num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(62, 42, 28, 0.4);
}

.track-steps-pro__step--active .track-steps-pro__num {
  color: rgba(200, 121, 61, 0.95);
}

.track-steps-pro__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
}

.track-steps-pro__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.26rem;
  min-width: 0;
}

.track-steps-pro__label {
  font-family: var(--font-display);
  font-size: clamp(0.86rem, 1vw, 0.95rem);
  font-weight: 600;
  color: var(--color-brand);
  line-height: 1.28;
}

.track-steps-pro__desc {
  font-size: 0.78rem;
  line-height: 1.42;
  font-weight: 500;
  color: rgba(62, 42, 28, 0.62);
}

.track-steps-pro__step:not(.track-steps-pro__step--completed):not(.track-steps-pro__step--active) .track-steps-pro__label {
  color: rgba(62, 42, 28, 0.54);
}

.track-steps-pro__step:not(.track-steps-pro__step--completed):not(.track-steps-pro__step--active) .track-steps-pro__desc {
  color: rgba(62, 42, 28, 0.46);
}

.track-steps-pro--premium {
  gap: clamp(0.65rem, 1.8vw, 1rem);
}

.track-steps-pro--premium .track-steps-pro__step {
  border-radius: calc(var(--radius-sm) + 3px);
  background: rgba(255, 255, 255, 0.84);
  transition:
    transform 0.22s ease,
    box-shadow 0.28s ease,
    border-color 0.22s ease;
}

.track-steps-pro--premium .track-steps-pro__step:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(58, 30, 15, 0.1);
}

.track-steps-pro--premium .track-steps-pro__step--completed {
  border-color: rgba(200, 121, 61, 0.34);
  background: linear-gradient(
    165deg,
    rgba(255, 253, 249, 0.98) 0%,
    rgba(253, 246, 236, 0.93) 100%
  );
}

.track-steps-pro--premium .track-steps-pro__step--active {
  border-color: rgba(200, 121, 61, 0.58);
  box-shadow:
    0 0 0 1px rgba(200, 121, 61, 0.14),
    0 12px 40px rgba(200, 121, 61, 0.16),
    0 8px 26px rgba(62, 42, 28, 0.07);
}

.track-steps-pro--premium .track-steps-pro__step--active .track-steps-pro__bar {
  box-shadow: 0 0 12px rgba(200, 121, 61, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .track-lifecycle__aurora {
    animation: none;
    transform: none;
  }

  .track-lifecycle-progress__fill {
    transition: none;
  }

  .track-lifecycle-progress__fill::after {
    animation: none;
  }

  .track-steps-pro--premium .track-steps-pro__step {
    transition: none;
  }

  .track-steps-pro--premium .track-steps-pro__step:hover {
    transform: none;
  }
}

@media (min-width: 821px) {
  .track-lifecycle-summary {
    text-align: center;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 820px) {
  .track-steps-pro {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .track-lifecycle:not(.track-lifecycle--premium) {
    padding: 1rem 0.95rem 1.1rem;
    margin-bottom: 1.35rem;
  }

  .track-lifecycle.track-lifecycle--premium .track-lifecycle__inner {
    padding: 1.08rem 0.95rem 1.18rem;
  }

  .track-lifecycle-summary {
    font-size: 0.9rem;
    margin-bottom: 0.95rem;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .track-steps-pro__step {
    min-height: 0;
  }
}

.track-dash__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: clamp(1.15rem, 2.5vw, 1.65rem);
  align-items: start;
}

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

.track-panel {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(227, 212, 197, 0.9);
}

.track-panel__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-brand);
}

.track-panel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.track-panel__head .track-panel__title {
  margin: 0;
}

.track-panel__count {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(62, 42, 28, 0.55);
  white-space: nowrap;
}

.track-panel__dl {
  margin: 0 0 1rem;
  display: grid;
  gap: 0.65rem;
}

.track-panel__dl dt {
  margin: 0 0 0.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(62, 42, 28, 0.52);
}

.track-panel__dl dd {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-brand);
}

.track-panel__mono {
  font-variant-numeric: tabular-nums;
  word-break: break-all;
}

.track-panel__cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.track-panel__empty,
.track-panel__muted {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(62, 42, 28, 0.72);
}

.track-panel__muted {
  font-style: italic;
}

.track-line-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.track-line-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(227, 212, 197, 0.75);
  background: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.track-line-card--link:hover {
  border-color: rgba(200, 121, 61, 0.45);
  box-shadow: 0 4px 18px rgba(62, 42, 28, 0.06);
  background: rgba(255, 255, 255, 0.92);
}

.track-line-card--link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.track-line-card__thumb-wrap {
  flex-shrink: 0;
}

.track-line-card__thumb {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: calc(var(--radius-sm) * 0.85);
  background: rgba(248, 240, 232, 0.8);
}

.track-line-card__thumb--placeholder {
  background:
    linear-gradient(135deg, rgba(227, 212, 197, 0.55), rgba(248, 240, 232, 0.9));
}

.track-line-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.track-line-card__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-brand);
  line-height: 1.3;
}

.track-line-card__meta {
  font-size: 0.82rem;
  color: rgba(62, 42, 28, 0.62);
}

.track-line-card__chev {
  flex-shrink: 0;
  color: rgba(62, 42, 28, 0.35);
}

.track-line-card--link:hover .track-line-card__chev {
  color: var(--color-accent);
}

.track-dash__footer {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(227, 212, 197, 0.85);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}

.track-dash__footer-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.track-dash__footer-link:hover {
  color: var(--color-brand);
}

/* Urmărire comandă — optimizări telefon */
@media (max-width: 639px) {
  .editorial-card--track .editorial-card__body {
    padding: clamp(1.1rem, 5vw, 1.6rem);
  }

  .editorial-card--track .editorial-card__head {
    margin-bottom: 1.1rem;
  }

  .editorial-card--track .editorial-title {
    font-size: clamp(1.48rem, 7vw, 1.85rem);
  }

  .editorial-card--track .editorial-lead {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .checkout-form--track .btn-primary {
    min-height: 48px;
    font-size: 1.02rem;
  }

  .track-dash__hero {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem clamp(0.85rem, 3.5vw, 1.15rem);
    gap: 1rem;
    margin-bottom: 1.2rem;
  }

  .track-dash__hero-main {
    min-width: 0;
  }

  .track-dash__title {
    font-size: clamp(1.28rem, 6.5vw, 1.65rem);
    word-break: break-word;
  }

  .track-dash__hero-aside {
    align-items: stretch;
    width: 100%;
    min-width: 0;
    gap: 0.75rem;
  }

  .track-dash__stat {
    text-align: left;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(227, 212, 197, 0.65);
  }

  .track-dash__badges {
    justify-content: flex-start;
  }

  .track-dash__badge-fs,
  .track-dash__badges .cx-pill {
    font-size: 0.78rem;
  }

  .track-panel {
    padding: clamp(0.9rem, 3.5vw, 1.12rem);
  }

  .track-panel__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    margin-bottom: 0.72rem;
  }

  .track-panel__count {
    white-space: normal;
  }

  .track-line-card {
    align-items: flex-start;
    padding: 0.62rem 0.65rem;
    gap: 0.72rem;
  }

  .track-line-card__thumb {
    width: 56px;
    height: 56px;
  }

  .track-line-card__name {
    font-size: 0.91rem;
    line-height: 1.38;
  }

  .track-line-card__chev {
    align-self: center;
  }

  .track-dash__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.62rem;
    margin-top: 1.45rem;
    padding-top: 1.1rem;
  }

  .track-dash__footer .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .track-dash__footer-link {
    text-align: center;
    padding: 0.4rem 0;
  }
}

@media (min-width: 640px) and (max-width: 900px) {
  .track-dash__grid {
    gap: 1.4rem;
  }
}

/* Contact */
.contact-mail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0 0 1.35rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(227, 212, 197, 0.85);
}

.contact-mail-row svg {
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 0.15rem;
}

.contact-mail-row a {
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-mail-row a:hover {
  color: var(--color-brand);
}

.editorial-card .contact-form {
  margin-top: 0.25rem;
  max-width: none;
}

/* Despre */
.about-prose p:last-child {
  margin-bottom: 0;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.about-actions .btn {
  text-decoration: none;
}

.page-head {
  text-align: center;
  margin: 1rem auto 2rem;
  max-width: 560px;
}

.favorite-empty {
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: var(--color-card);
  border-radius: var(--radius-md);
  color: var(--color-text);
}

.favorite-empty svg {
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.favorite-empty h2 {
  margin: 0.25rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-brand);
}

.favorite-empty p {
  max-width: 420px;
  margin: 0 auto 1.5rem;
}

.favorite-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 1rem;
  color: var(--color-text);
}

.favorite-grid {
  margin-top: 1rem;
}

/* Order status pills */
.order-status {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.order-status--paid {
  background: #d4edda;
  color: #1d7044;
}

.order-status--pending {
  background: #fff3cd;
  color: #8a5a00;
}

.order-status--cancelled {
  background: #f8d7da;
  color: #842029;
}

/* Payment methods — premium UI */
.checkout-section-title--payment {
  align-items: baseline;
}

.checkout-section-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--color-fg-mute, #6c5b48);
  background: rgba(58, 30, 15, 0.04);
  padding: 0.28rem 0.65rem;
  border-radius: 8px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(58, 30, 15, 0.08);
}
.checkout-section-hint svg {
  display: block;
  flex-shrink: 0;
  opacity: 0.72;
  color: var(--color-fg-mute, #6c5b48);
}
.checkout-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.payment-method {
  position: relative;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(58, 30, 15, 0.12);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.payment-method:hover {
  border-color: rgba(58, 30, 15, 0.22);
  box-shadow: 0 4px 14px -8px rgba(58, 30, 15, 0.18);
}

.payment-method:has(input:focus-visible) {
  outline: 2px solid rgba(193, 119, 73, 0.45);
  outline-offset: 2px;
}

.payment-method:has(input:checked) {
  border-color: var(--color-accent);
  background: linear-gradient(180deg, #fffdfb 0%, #fff 55%);
  box-shadow: 0 2px 16px -6px rgba(193, 119, 73, 0.35);
}

.payment-method input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

/* Custom radio circle */
.payment-radio {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  background: #fff;
  transition: border-color 0.2s ease;
  flex: 0 0 22px !important;
  align-self: center;
}
.payment-radio-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: scale(0);
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.payment-method:has(input:checked) .payment-radio {
  border-color: var(--color-accent);
}
.payment-method:has(input:checked) .payment-radio-dot {
  transform: scale(1);
}

/* Method icon (large illustrative) */
.payment-method-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f6efe6;
  color: var(--color-brand);
  flex: 0 0 44px !important;
  align-self: center;
  transition: background 0.2s ease;
}
.payment-method-icon svg {
  display: block;
}
.payment-method-icon--card {
  background: linear-gradient(135deg, #fde6cf, #f6cfa3);
}
.payment-method-icon--cod {
  background: linear-gradient(135deg, #e6f1e0, #cfe5c5);
  color: #4a6b3b;
}
.payment-method-icon--bank {
  background: linear-gradient(135deg, #e2ebf6, #c8d8ee);
  color: #3a5c8a;
}
.payment-method:hover .payment-method-icon {
  filter: brightness(0.98);
}

.payment-method-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch;
  flex: 1 1 auto !important;
  min-width: 0;
  gap: 0.32rem;
  line-height: 1.35;
}

.payment-method-head {
  display: flex !important;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  line-height: 1.25;
}
.payment-method-head strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-brand);
  letter-spacing: -0.01em;
}

.payment-method-desc {
  display: block !important;
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-text);
  line-height: 1.45;
  opacity: 0.82;
  max-width: 42rem;
}
.payment-method-desc::before {
  content: none;
}

.payment-recommended-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(193, 119, 73, 0.14);
  color: #7a4a24;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.18rem 0.5rem;
  border-radius: 6px;
  letter-spacing: 0.03em;
  text-transform: none;
  border: 1px solid rgba(193, 119, 73, 0.22);
  white-space: nowrap;
}
.payment-recommended-pill::before {
  content: none;
}

/* Card / wallet logos — sub descriere */
.payment-method-cards {
  display: inline-flex !important;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.35rem 0 0;
  align-items: center;
  flex-shrink: 0;
  align-self: flex-start;
}
.pay-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 0.45rem;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.pay-logo:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}
.pay-logo svg {
  display: block;
}
.pay-logo--apple {
  color: #111;
}

/* The right-side check is now visually redundant (radio dot is enough) — hide it */
.payment-method-check {
  display: none !important;
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .checkout-section-title--payment {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }
  .checkout-section-title--payment .checkout-section-hint {
    margin-left: 0;
  }
  .payment-method {
    gap: 0.65rem;
    padding: 0.9rem 1rem;
    align-items: center !important;
  }
  .payment-radio {
    margin-top: 0;
  }
  .payment-method-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px !important;
  }
  .payment-method-icon svg {
    width: 22px;
    height: 22px;
  }
  .payment-method-head strong {
    font-size: 0.98rem;
  }
  .payment-method-desc {
    font-size: 0.78rem;
  }
  .payment-method-cards {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .payment-method,
  .payment-radio-dot,
  .pay-logo {
    transition: none;
  }
}

/* Order bump */
.check-label--bump {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, #fff8f1, #faf3ea);
  border: 1px dashed var(--color-accent);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  cursor: pointer;
}

.check-label--bump small {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text);
  margin-top: 0.15rem;
}

/* Trust strip checkout */
.checkout-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-text);
}

.checkout-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.checkout-trust svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Sticky checkout summary on desktop */
@media (min-width: 900px) {
  .checkout-summary-wrap {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    align-self: flex-start;
  }
}

.checkout-line-img {
  border-radius: 6px;
  flex-shrink: 0;
  margin-right: 0.5rem;
  object-fit: cover;
}

.checkout-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkout-line-name {
  flex: 1;
  min-width: 0;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

@media (min-width: 520px) {
  .field-grid--checkout-personal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

.field-grid--checkout-address .field--full-row {
  grid-column: 1 / -1;
}

.checkout-address-block {
  margin-bottom: 0;
}

/* Legal pages */
.prose--legal {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.5rem) 4rem;
  line-height: 1.7;
}

.prose--legal h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--color-brand);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--color-border);
}

.prose--legal h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 1.75rem 0 0.75rem;
  color: var(--color-brand);
}

.prose--legal p {
  margin: 0.75rem 0;
}

.prose--legal ul,
.prose--legal ol {
  padding-left: 1.5rem;
  margin: 0.5rem 0 1rem;
}

.prose--legal li {
  margin: 0.4rem 0;
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--color-text);
  font-style: italic;
  margin: 0 0 1.5rem;
}

.legal-highlight {
  background: linear-gradient(135deg, #fff8f1, #faf3ea);
  border-left: 4px solid var(--color-accent);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 1.02rem;
  margin: 1.5rem 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.85rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--color-border);
  padding: 0.6rem 0.8rem;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--color-card);
  font-weight: 600;
  color: var(--color-brand);
}

.legal-form-block {
  background: var(--color-card);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
  border: 1px dashed var(--color-border);
  font-size: 0.92rem;
}

.legal-faq {
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 0;
}

.legal-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-brand);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
}

.legal-faq summary::-webkit-details-marker {
  display: none;
}

.legal-faq summary::before {
  content: '+';
  font-size: 1.3rem;
  color: var(--color-accent);
  transition: transform 0.2s ease;
  display: inline-block;
  width: 1rem;
  text-align: center;
}

.legal-faq[open] summary::before {
  content: '−';
}

.legal-faq p {
  padding: 0.5rem 0 0.25rem 1.5rem;
  color: var(--color-text);
}

@media (max-width: 600px) {
  .legal-table {
    font-size: 0.78rem;
  }
  .legal-table th,
  .legal-table td {
    padding: 0.45rem 0.55rem;
  }
}

/* ============================================ */
/* HOME CRO additions                           */
/* ============================================ */
.hero-title-accent {
  color: var(--color-accent);
  display: inline-block;
}

.hero-trust-mini {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  margin: 1rem 0 0;
  padding: 0;
  font-size: 0.82rem;
  color: var(--color-text);
}

.hero-trust-mini li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-trust-mini svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Trust strip pro (4 pills) */
.trust-strip-pro {
  background: var(--color-card);
  padding: 1.5rem clamp(1rem, 3vw, 1.5rem);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-strip-pro-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 800px) {
  .trust-strip-pro-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  background: var(--color-card-alt);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(58, 30, 15, 0.05);
}

.trust-pill svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.trust-pill div {
  min-width: 0;
}

.trust-pill strong {
  display: block;
  font-size: 0.88rem;
  color: var(--color-brand);
}

.trust-pill span {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text);
  opacity: 0.8;
}

/* Urgency banner */
.urgency-banner {
  background: linear-gradient(135deg, #2a1408, var(--color-brand));
  color: var(--color-btn-text);
  padding: 1.75rem clamp(1rem, 3vw, 1.5rem);
  margin: 0;
}

.urgency-banner-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem 1.5rem;
}

@media (max-width: 720px) {
  .urgency-banner-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.urgency-eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
}

.urgency-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin: 0.25rem 0 0.4rem;
  font-weight: 500;
  line-height: 1.3;
}

.urgency-countdown {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.1rem 0.5rem;
  border-radius: 6px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.95em;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  font-weight: 700;
}

.urgency-sub {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.85;
}

.btn-pulse {
  animation: domol-btn-pulse 2.4s ease-in-out infinite;
}

@keyframes domol-btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 121, 61, 0.55); }
  50% { box-shadow: 0 0 0 12px rgba(200, 121, 61, 0); }
}

/* Gift section */
.gift-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-card) 100%);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gift-card {
  background: var(--color-card-alt);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(58, 30, 15, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gift-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.gift-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #b66730);
  color: var(--color-btn-text);
  margin-bottom: 1rem;
}

.gift-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--color-brand);
}

.gift-card p {
  margin: 0 0 1rem;
  color: var(--color-text);
  font-size: 0.92rem;
}

.gift-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.gift-card-link:hover {
  gap: 0.55rem;
}

/* FAQ */
.faq-section {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: var(--color-bg);
}

.faq-inner {
  max-width: 820px;
}

.faq-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-brand);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  font-weight: 500;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: 300;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover {
  color: var(--color-accent);
}

.faq-item p {
  padding: 0.6rem 0 0.4rem;
  color: var(--color-text);
  line-height: 1.65;
  margin: 0;
  font-size: 0.95rem;
}

.faq-item p a {
  color: var(--color-accent);
}

/* Product page CRO additions */
.product-free-progress {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, #fff8f1, var(--color-card));
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.product-free-progress-text {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-brand);
}

.product-free-progress-text svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.product-free-progress-bar {
  height: 6px;
  background: rgba(58, 30, 15, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.product-free-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), #b66730);
  border-radius: 999px;
  transition: width 0.3s ease;
}

/* Prag atins — widgetul devine verde */
.product-free-progress.is-complete {
  background: #eef8f1;
  border-color: rgba(31, 92, 57, 0.3);
}

.product-free-progress.is-complete .product-free-progress-fill {
  background: linear-gradient(90deg, #2f7d4f, #1f5c39);
}

.product-free-progress.is-complete .product-free-progress-text svg {
  color: #1d7044;
}

.product-free-shipping-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0.5rem 0.9rem;
  background: #d4edda;
  color: #1d7044;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.product-free-progress--compact {
  margin-top: 0.65rem;
  padding: 0.5rem 0.7rem;
}

.product-free-progress--compact .product-free-progress-text {
  margin-bottom: 0.35rem;
  font-size: 0.76rem;
  gap: 0.3rem;
}

.product-free-shipping-pill--compact {
  margin-top: 0.65rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.78rem;
  gap: 0.35rem;
}

/* Lucide-style icons */
.domol-icon {
  display: inline-block;
  vertical-align: -0.12em;
  flex-shrink: 0;
  color: currentColor;
}

.inline-icon {
  vertical-align: -0.15em;
}

.hero-trust-mini .domol-icon,
.trust-pill .domol-icon,
.trust-strip-pro .domol-icon,
.cart-trust .domol-icon,
.checkout-trust .domol-icon,
.topbar-msg .domol-icon,
.product-buy-perks .domol-icon,
.product-free-progress-text .domol-icon,
.product-free-shipping-pill .domol-icon,
.mood-card-icon .domol-icon,
.gift-card-icon .domol-icon,
.why-icon .domol-icon,
.promo-icon .domol-icon {
  color: var(--color-accent);
}

.shop-title--small {
  font-size: 1.5rem;
}

.product-faq {
  padding: 2rem 0 0;
  border-top: 1px solid var(--color-border);
  margin-top: 2rem;
}

/* === Pagina Împachetare cadou === */
.gift-wrap-section {
  margin-top: 2rem;
}

.gift-wrap-section__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-brand);
}

.gift-wrap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.gift-wrap-card {
  background: linear-gradient(165deg, #fffdf8, var(--color-card));
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
}

.gift-wrap-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(196, 122, 58, 0.12);
  border: 1px solid rgba(196, 122, 58, 0.25);
  color: var(--color-accent);
  margin-bottom: 0.6rem;
}

.gift-wrap-card__title {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-brand);
}

.gift-wrap-card__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--color-text);
}

.gift-wrap-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gift-wrap-step {
  display: flex;
  gap: 0.9rem;
  padding: 0.95rem 0;
  border-bottom: 1px dashed rgba(203, 184, 166, 0.55);
}

.gift-wrap-step:last-child {
  border-bottom: none;
}

.gift-wrap-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(196, 122, 58, 0.12);
  border: 1px solid rgba(196, 122, 58, 0.25);
  color: var(--color-accent);
  flex-shrink: 0;
}

.gift-wrap-step__title {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-brand);
}

.gift-wrap-step__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-text);
}

.gift-wrap-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  background: rgba(196, 122, 58, 0.07);
  border: 1px solid rgba(196, 122, 58, 0.22);
  border-radius: var(--radius);
}

.gift-wrap-note__icon {
  display: inline-flex;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.gift-wrap-note p {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.65;
  color: var(--color-text);
}

.gift-wrap-note a {
  color: var(--color-accent);
  font-weight: 600;
}

@media (max-width: 600px) {
  .gift-wrap-grid {
    grid-template-columns: 1fr;
  }

  .gift-wrap-section__title {
    font-size: 1.15rem;
  }
}

/* === FAQ în tab pe pagina de produs === */
.product-faq-panel {
  width: 100%;
}

.product-faq-head {
  text-align: center;
  padding: 0.35rem 0 1.4rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 0.35rem;
}

.product-faq-head__eyebrow {
  margin: 0 0 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.product-faq-head__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--color-brand);
}

.product-faq-head__sub {
  margin: 0.55rem auto 0;
  max-width: 560px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-text-muted, #8a6d5f);
}

.product-faq-head__sub a {
  color: var(--color-accent);
  font-weight: 600;
}

.product-faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.product-faq-item {
  border-bottom: 1px solid var(--color-border);
}

.product-faq-item summary {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.05rem 0.25rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-brand);
  transition: color 0.2s ease;
}

.product-faq-item summary::-webkit-details-marker {
  display: none;
}

.product-faq-item summary:hover {
  color: var(--color-accent);
}

.product-faq-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(196, 122, 58, 0.1);
  border: 1px solid rgba(196, 122, 58, 0.22);
  color: var(--color-accent);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.product-faq-item[open] .product-faq-item__icon {
  background: rgba(196, 122, 58, 0.18);
}

.product-faq-item__q {
  flex: 1;
  min-width: 0;
}

.product-faq-item__chevron {
  display: inline-flex;
  color: var(--color-accent);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.product-faq-item[open] .product-faq-item__chevron {
  transform: rotate(180deg);
}

.product-faq-item__a {
  padding: 0 0.25rem 1.15rem calc(2.2rem + 0.9rem + 0.25rem);
}

.product-faq-item__a--flush {
  padding-left: 0.25rem;
}

.product-faq-item__a p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.75;
}

.product-faq-item__a a {
  color: var(--color-accent);
  font-weight: 600;
}

@media (max-width: 600px) {
  .product-faq-head {
    padding-bottom: 1.1rem;
  }

  .product-faq-head__title {
    font-size: 1.2rem;
  }

  .product-faq-head__sub {
    font-size: 0.82rem;
  }

  .product-faq-item summary {
    padding: 0.85rem 0.1rem;
    font-size: 0.95rem;
    gap: 0.65rem;
  }

  .product-faq-item__icon {
    width: 1.85rem;
    height: 1.85rem;
  }

  .product-faq-item__a {
    padding: 0 0.1rem 0.9rem 0;
    font-size: 0.86rem;
  }
}

/* Sticky add-to-cart on mobile */
.sticky-atc {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 180;
  display: none;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem calc(0.65rem + env(safe-area-inset-bottom, 0));
  background: linear-gradient(180deg, #fffefb 0%, var(--color-card-alt) 55%, #faf6ef 100%);
  border-top: 1px solid rgba(227, 212, 197, 0.95);
  box-shadow: 0 -10px 32px rgba(58, 30, 15, 0.1);
  transform: translateY(110%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.sticky-atc.is-shown {
  transform: translateY(0);
}

.sticky-atc-img {
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: cover;
}

.sticky-atc-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sticky-atc-name {
  color: var(--color-brand);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-atc-price {
  font-size: 0.92rem;
  color: var(--color-accent);
  font-weight: 700;
}

.sticky-atc-form .btn {
  white-space: nowrap;
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(200, 121, 61, 0.35);
}

@media (max-width: 760px) {
  .page-product .sticky-atc {
    display: flex;
  }
  .page-product main {
    padding-bottom: 5rem;
  }
}

/* Cart cross-sell + trust */
.cart-trust-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.25rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--color-border);
  font-size: 0.78rem;
  color: var(--color-text);
}

.cart-trust-icons li {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.cart-trust-icons svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.cart-cross-sell {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.shop-head--compact {
  text-align: left;
  margin-bottom: 1.5rem;
}

.products-grid--cross {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

/* Coș — backdrop & sertar */
.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(58, 30, 15, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  pointer-events: none;
}

.cart-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 260;
  display: flex;
  flex-direction: column;
  width: min(100%, 420px);
  max-width: 100vw;
  height: 100%;
  height: 100dvh;
  background: var(--color-bg);
  border-left: 1px solid var(--color-border);
  box-shadow: var(--shadow-lift);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.cart-drawer.is-open {
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
}

.cart-drawer:not(.is-open) {
  visibility: hidden;
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-card-alt);
}

.cart-drawer-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-brand);
}

.cart-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.cart-close-btn:hover {
  background: var(--color-card);
  color: var(--color-brand);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  -webkit-overflow-scrolling: touch;
}

.cart-empty {
  margin: 2rem 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text);
}

.cart-empty[hidden] {
  display: none !important;
}

.cart-lines {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem;
  background: var(--color-card-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.cart-line-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-line-name {
  margin: 0 0 0.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-brand);
}

.cart-line-meta {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text);
}

.cart-line-sum {
  margin: 0;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-brand);
  align-self: center;
}

.cart-line-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-bg);
}

.qty-btn {
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  color: var(--color-brand);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition);
}

.qty-btn:hover {
  background: var(--color-card);
}

.qty-input {
  width: 2.25rem;
  height: 2rem;
  border: none;
  border-inline: 1px solid var(--color-border);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand);
  background: var(--color-card-alt);
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-remove {
  border: none;
  background: none;
  padding: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.cart-drawer-foot {
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-card);
}

.cart-drawer-foot[hidden] {
  display: none !important;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.cart-row--total {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.cart-row--total strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-brand);
}

.cart-hint {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: var(--color-text);
  opacity: 0.92;
}

.btn-block {
  width: 100%;
  margin-bottom: 0.5rem;
}

.btn-block:last-child {
  margin-bottom: 0;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 85% 40%,
    rgba(200, 121, 61, 0.06) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5.5rem) 1.5rem clamp(4rem, 10vw, 6rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: min(88vh, 720px);
}

.hero-copy {
  max-width: 32rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200, 121, 61, 0.25);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.35rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--color-brand);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  color: var(--color-text);
  margin: 0 0 2rem;
  max-width: 28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.65rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--color-brand);
  color: var(--color-btn-text);
}

.btn-primary:hover {
  background: var(--color-accent);
  color: var(--color-btn-text);
}

.btn-secondary {
  background: transparent;
  color: var(--color-brand);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Hero visual */
.hero-visual {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 520px;
}

.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  background: var(--color-card-alt);
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.hero-glow {
  position: absolute;
  width: 70%;
  height: 40%;
  bottom: -5%;
  right: 10%;
  background: radial-gradient(
    ellipse,
    rgba(200, 121, 61, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}

/* Teaser strip */
.teaser {
  border-top: 1px solid var(--color-border);
  background: var(--color-card);
}

.teaser-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  font-size: 0.875rem;
  color: var(--color-text);
}

.teaser-inner strong {
  color: var(--color-brand);
  font-weight: 600;
}

.teaser-dot {
  color: var(--color-taupe);
}

/* Footer minimal */
.site-footer {
  background: linear-gradient(180deg, var(--color-brand) 0%, #2a1408 100%);
  color: rgba(250, 247, 242, 0.85);
  margin-top: 4rem;
}

/* Footer pre — newsletter strip */
.footer-pre {
  background: linear-gradient(135deg, var(--color-accent) 0%, #b66730 100%);
  color: var(--color-btn-text);
  padding: 2.5rem 1.5rem;
}

.footer-pre-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 760px) {
  .footer-pre-inner {
    grid-template-columns: 1fr auto;
    gap: 2rem;
  }
}

.footer-pre-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 0.4rem;
  font-weight: 600;
  color: var(--color-btn-text);
}

.footer-pre-sub {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.95;
  max-width: 540px;
}

.newsletter-form--inline {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-form--inline input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 999px;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-brand);
}

.newsletter-form--inline input[type="email"]:focus {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

.newsletter-form--inline button {
  background: var(--color-brand);
  color: var(--color-btn-text);
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform 0.18s ease;
}

.newsletter-form--inline button:hover {
  background: #1f0e07;
  transform: translateY(-1px);
}

/* Footer 4-col grid */
.footer-grid-pro {
  max-width: 1240px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem 2rem;
}

@media (max-width: 900px) {
  .footer-grid-pro {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }
}

@media (max-width: 540px) {
  .footer-grid-pro {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col--brand {
  max-width: 320px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: var(--color-btn-text);
  margin-bottom: 0.35rem;
}

.footer-logo-img {
  display: block;
  height: 46px;
  width: auto;
  max-width: min(180px, 70vw);
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.footer-tagline {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0.85;
}

.footer-contact {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.875rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-contact svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(250, 247, 242, 0.92);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--color-accent);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(250, 247, 242, 0.92);
  transition: background var(--transition), color var(--transition), transform 0.15s ease;
}

.footer-social a:hover {
  background: var(--color-accent);
  color: var(--color-btn-text);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--color-btn-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links-list a {
  color: rgba(250, 247, 242, 0.85);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition), transform 0.15s ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--color-accent);
  transform: translateX(3px);
}

/* Trust row */
.footer-trust-row {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  justify-content: center;
  align-items: center;
}

.footer-trust-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-trust-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.6);
  font-weight: 600;
}

.footer-pay-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  min-width: 44px;
  padding: 0 0.55rem;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  color: #1a1a1a;
}

.pay-badge svg {
  display: block;
}

.pay-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.pay-badge--mono {
  color: #111;
}

.pay-badge--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(250, 247, 242, 0.92);
  box-shadow: none;
}

.pay-badge--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .pay-badge {
    transition: none;
  }
}

/* Legal bar */
.footer-legal-bar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.65);
}

@media (min-width: 760px) {
  .footer-legal-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.footer-note {
  margin: 0;
  font-size: 0.85rem;
}

.footer-legal-meta {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.75;
}

.footer-legal-meta strong {
  color: rgba(250, 247, 242, 0.95);
  font-weight: 600;
}

.footer-anpc-block {
  display: flex;
  gap: 0.75rem;
}

.footer-anpc-link {
  color: rgba(250, 247, 242, 0.85);
  text-decoration: none;
  font-size: 0.78rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.footer-anpc-link:hover {
  background: var(--color-accent);
  color: var(--color-btn-text);
  border-color: var(--color-accent);
}

/* ============================================ */
/* MOBILE NAV                                   */
/* ============================================ */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: none;
  border: 1px solid transparent;
  padding: 0;
  cursor: pointer;
  color: var(--color-brand);
  border-radius: 50%;
  transition: background var(--transition), border-color var(--transition);
}

.menu-toggle:hover {
  background: var(--color-card);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58, 30, 15, 0.4);
  z-index: 195;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  backdrop-filter: blur(2px);
}

body.nav-open .nav-overlay {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-center {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(100%, 360px);
    max-width: 100vw;
    background: var(--color-bg);
    box-shadow: -12px 0 40px rgba(58, 30, 15, 0.12);
    transform: translateX(100%);
    transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 200;
    overflow-y: auto;
    padding: 5.5rem 0 2rem;
    display: flex;
  }

  body.nav-open .nav-center {
    transform: translateX(0);
  }

  .nav-main {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    padding: 0;
  }

  .nav-main li {
    width: 100%;
  }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-brand);
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition), padding var(--transition);
  }

  .nav-link::after {
    content: '';
    position: static;
    transform: none;
    background: transparent;
    height: auto;
    line-height: 1;
  }

  .nav-link:hover {
    background: var(--color-card);
    padding-left: 1.75rem;
  }

  .nav-link.is-active {
    background: var(--color-card);
    border-left: 3px solid var(--color-accent);
    padding-left: 1.25rem;
  }

  .nav-caret {
    display: none;
  }

  /* Disable desktop hover bridge on mobile (accordion-style menu) */
  .mega-menu::before,
  .nav-item.has-mega > .nav-link::before {
    display: none;
  }

  /* Mega menu collapses to accordion on mobile */
  .nav-item.has-mega {
    position: relative;
  }
  .nav-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 56px;
    height: 56px;
    border: 0;
    background: transparent;
    color: var(--color-brand);
    cursor: pointer;
    z-index: 2;
    transition: transform 0.25s ease;
  }
  .nav-item.has-mega.is-mobile-open .nav-mobile-toggle {
    transform: rotate(180deg);
  }
  .mega-menu {
    position: static;
    display: none;
    background: var(--color-card);
    border-top: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .nav-item.has-mega.is-mobile-open > .mega-menu {
    display: block;
  }
  .mega-menu-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
  }
  .mega-col--featured {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--color-border);
    padding-top: 1.25rem;
  }
  .mega-col--featured .mega-feature img {
    max-width: 140px;
  }

  .nav-mobile-divider {
    display: block !important;
    height: 1.5rem;
  }

  .nav-mobile-extra {
    display: block !important;
  }

  .nav-link--icon {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-brand);
    font-weight: 600;
  }

  .nav-link--icon::after {
    margin-left: auto;
  }

  .nav-link--icon svg {
    color: var(--color-accent);
  }

  .nav-link-count {
    color: var(--color-accent);
    font-weight: 700;
  }

  .nav-link--muted {
    color: var(--color-text);
    font-weight: 400;
    font-size: 0.875rem;
    gap: 0.6rem;
    display: flex;
    align-items: center;
  }

  .nav-link--muted::after {
    display: none;
  }

  .nav-link--muted svg {
    color: var(--color-accent);
  }

  /* Hero adjustments on mobile */
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
    padding-top: clamp(2rem, 6vw, 3.5rem);
  }

  .hero-copy {
    max-width: none;
    order: 1;
  }

  .hero-visual {
    order: 0;
    justify-self: center;
    max-width: min(100%, 400px);
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100%;
    border-left: none;
  }

  .logo-img {
    height: 36px;
    max-width: min(150px, 52vw);
  }

  .header-inner {
    padding: 0.6rem 1rem;
  }
}

/* Secțiuni conținut */
.section-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}

.section-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-brand);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.section-block p {
  margin: 0;
  max-width: 36rem;
  margin-inline: auto;
}

.section-block--card {
  background: var(--color-card);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* Magazin — grilă produse */
.shop-section {
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 3vw, 1.5rem)
    clamp(3rem, 7vw, 5rem);
  background: var(--color-bg);
}

.shop-section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.shop-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.shop-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.shop-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 600;
  color: var(--color-brand);
  line-height: 1.15;
}

.shop-lead {
  margin: 0;
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  color: var(--color-text);
}

.shop-head--magazin::after,
.shop-head--category::after {
  content: "";
  display: block;
  width: min(5rem, 28vw);
  height: 3px;
  margin: 1.35rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(200, 121, 61, 0.35), var(--color-accent), rgba(200, 121, 61, 0.35), transparent);
}

.shop-eyebrow--category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

/* Panou filtre magazin */
.shop-filters-panel {
  margin: 0 auto clamp(1.85rem, 4vw, 2.85rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: linear-gradient(165deg, #fffefb 0%, var(--color-card-alt) 40%, #faf6ef 100%);
  box-shadow: 0 10px 32px rgba(58, 30, 15, 0.07);
  overflow: hidden;
}

.shop-filters-panel__accent {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-brand) 0%,
    var(--color-accent) 40%,
    #e8c4a2 65%,
    var(--color-accent) 100%
  );
}

.shop-filters-panel__inner {
  padding: clamp(1.15rem, 2.8vw, 1.55rem) clamp(1.05rem, 2.5vw, 1.45rem) clamp(1.2rem, 2.8vw, 1.55rem);
}

.shop-filters-head {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.05rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(227, 212, 197, 0.9);
}

.shop-filters-head__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(200, 121, 61, 0.12), rgba(58, 30, 15, 0.05));
  border: 1px solid rgba(227, 212, 197, 0.95);
  color: var(--color-accent);
  flex-shrink: 0;
}

.shop-filters-head__text {
  min-width: 0;
}

.shop-filters-head__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--color-brand);
  line-height: 1.2;
}

.shop-filters-head__hint {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.shop-filters {
  margin: 0;
}

.shop-filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 148px), 1fr));
  gap: 0.85rem 1.05rem;
  align-items: end;
}

@media (min-width: 720px) {
  .shop-filters-grid {
    grid-template-columns: minmax(10rem, 1.45fr) minmax(9rem, 1fr) minmax(6.5rem, 0.75fr) minmax(6.5rem, 0.75fr);
  }
}

.shop-filters label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-brand);
  margin-bottom: 0.35rem;
}

.shop-filters input[type="search"],
.shop-filters input[type="text"],
.shop-filters select {
  width: 100%;
  padding: 0.68rem 0.88rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fffefd;
  color: var(--color-brand);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.shop-filters select {
  padding-right: 2.35rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.25L6 7.75l3.5-3.5' stroke='%236b5648' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 11px auto;
}

.shop-filters input::placeholder {
  color: rgba(107, 86, 72, 0.42);
}

.shop-filters input:focus,
.shop-filters select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(193, 119, 73, 0.14);
}

.shop-filters-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.05rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(227, 212, 197, 0.92);
}

.shop-filters-check {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
  user-select: none;
}

.shop-filters-check input {
  width: 1.08rem;
  height: 1.08rem;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.shop-filters-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.shop-filters-submit {
  padding: 0.72rem 1.35rem;
  font-size: 0.9rem;
}

/* Filtre magazin — bară compactă */
.shop-filters-panel--bar {
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
  box-shadow: 0 6px 20px rgba(58, 30, 15, 0.05);
}

.shop-filters-panel--bar .shop-filters-panel__accent {
  height: 3px;
}

.shop-filters--bar {
  --filter-h: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 0.95rem;
}

.shop-filter {
  display: flex;
  align-items: center;
}

.shop-filters--bar input[type="search"],
.shop-filters--bar input[type="text"],
.shop-filters--bar select {
  height: var(--filter-h);
  padding: 0 0.85rem;
  font-size: 0.86rem;
  border: 1px solid rgba(203, 184, 166, 0.75);
  border-radius: 0.65rem;
  background-color: #fff;
}

.shop-filter--search {
  position: relative;
  flex: 1 1 240px;
  min-width: 190px;
}

.shop-filter__icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  color: rgba(107, 86, 72, 0.5);
  pointer-events: none;
}

.shop-filters--bar .shop-filter--search input {
  width: 100%;
  padding-left: 2.35rem;
}

.shop-filter--select {
  flex: 0 1 180px;
  min-width: 150px;
}

.shop-filter--select select {
  width: 100%;
  padding-right: 2.2rem;
  background-position: right 0.75rem center;
  font-weight: 600;
  color: var(--color-brand);
}

/* Interval de preț: un singur container unitar */
.shop-filter--price {
  height: var(--filter-h);
  padding: 0 0.85rem 0 0.35rem;
  gap: 0.1rem;
  border: 1px solid rgba(203, 184, 166, 0.75);
  border-radius: 0.65rem;
  background: #fff;
  flex: 0 0 auto;
}

.shop-filters--bar .shop-filter--price input {
  height: calc(var(--filter-h) - 2px);
  width: 3.6rem;
  padding: 0 0.3rem;
  border: none;
  border-radius: 0.45rem;
  background: transparent;
  text-align: center;
}

.shop-filters--bar .shop-filter--price input:focus {
  box-shadow: none;
  background: rgba(196, 122, 58, 0.07);
}

.shop-filter__sep {
  color: rgba(107, 86, 72, 0.45);
  font-size: 0.85rem;
}

.shop-filter__unit {
  margin-left: 0.4rem;
  padding-left: 0.6rem;
  border-left: 1px solid rgba(203, 184, 166, 0.6);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(107, 86, 72, 0.55);
  line-height: var(--filter-h);
}

/* „În stoc" ca un chip comutabil */
.shop-filters--bar .shop-filters-check {
  height: var(--filter-h);
  padding: 0 0.95rem;
  border: 1px solid rgba(203, 184, 166, 0.75);
  border-radius: 999px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  gap: 0.45rem;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.shop-filters--bar .shop-filters-check input {
  width: 0.95rem;
  height: 0.95rem;
  margin: 0;
}

.shop-filters--bar .shop-filters-check:hover {
  border-color: var(--color-accent);
}

.shop-filters--bar .shop-filters-check:has(input:checked) {
  background: rgba(196, 122, 58, 0.1);
  border-color: var(--color-accent);
  color: var(--color-brand);
}

.shop-filters--bar .shop-filters-actions {
  margin-left: auto;
  gap: 0.8rem;
  align-items: center;
}

.shop-filters--bar .shop-filters-submit {
  height: var(--filter-h);
  padding: 0 1.35rem;
  font-size: 0.84rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
}

.shop-filters-reset {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.shop-filters-reset:hover {
  color: var(--color-accent);
}

@media (max-width: 900px) {
  .shop-filters--bar .shop-filters-actions {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .shop-filters--bar {
    padding: 0.75rem 0.8rem;
    gap: 0.55rem;
  }

  .shop-filter--search {
    flex: 1 1 100%;
  }

  .shop-filter--select {
    flex: 1 1 calc(52% - 0.3rem);
  }

  .shop-filter--price {
    flex: 1 1 calc(48% - 0.3rem);
    justify-content: space-between;
  }

  .shop-filters--bar .shop-filter--price input {
    flex: 1;
    width: auto;
    min-width: 0;
  }

  .shop-filters--bar .shop-filters-check {
    flex: 0 0 auto;
  }

  .shop-filters--bar .shop-filters-actions {
    flex: 1 1 auto;
    justify-content: flex-end;
  }

  .shop-filters--bar .shop-filters-submit {
    flex: 1;
    justify-content: center;
  }
}

.shop-empty-hint {
  margin: 2rem 0 0;
  padding: 1.25rem 1.35rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  background: rgba(255, 254, 251, 0.85);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-sm);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
  gap: clamp(1.25rem, 2.8vw, 2rem);
}

.products-grid--shop {
  margin-top: 0.25rem;
}

/* Home: fix 4 produse pe rând pe desktop, 2 pe mobil/tabletă */
.products-grid--home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .products-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-card-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 22px rgba(58, 30, 15, 0.045);
  will-change: transform;
  transition: border-color var(--transition), box-shadow var(--transition),
    transform 0.25s ease;
}

.product-card:hover {
  border-color: rgba(203, 184, 166, 0.95);
  box-shadow: 0 16px 44px rgba(58, 30, 15, 0.11);
  transform: translateY(-4px);
}

.product-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #faf7f4;
  overflow: hidden;
}

.product-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(58, 30, 15, 0.02) 0%,
    transparent 42%,
    transparent 58%,
    rgba(58, 30, 15, 0.04) 100%
  );
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.03);
}

.product-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.product-badge {
  display: inline-block;
  padding: 0.18rem 0.42rem;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--color-card-alt);
  color: var(--color-brand);
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(58, 30, 15, 0.06);
}

.product-badge--nou {
  background: var(--color-brand);
  color: var(--color-btn-text);
  border-color: var(--color-brand);
}

.product-badge--bestseller {
  background: var(--color-accent);
  color: var(--color-btn-text);
  border-color: var(--color-accent);
}

.product-badge--cadou {
  background: linear-gradient(135deg, #c8793d 0%, #a65f2e 100%);
  color: var(--color-btn-text);
  border-color: transparent;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.2rem 1.25rem;
  text-align: left;
  border-top: 1px solid rgba(227, 212, 197, 0.65);
}

.product-title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-brand);
  line-height: 1.2;
}

.product-note {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.5;
  flex: 1;
  /* max. 2 rânduri — descrierile lungi nu mai întind cardul */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-stock-msg {
  margin: 0 0 0.45rem;
  font-size: 0.8125rem;
  line-height: 1.35;
}

.product-stock-msg--out {
  font-weight: 700;
  color: #9a3412;
}

.product-stock-msg--low {
  font-weight: 600;
  color: #a16207;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.product-tag {
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.1rem 0.32rem;
  border-radius: 999px;
  background: rgba(203, 184, 166, 0.35);
  color: var(--color-brand);
  border: 1px solid rgba(203, 184, 166, 0.6);
}

/* === Vibe-uri pe cardul de produs === */
.product-vibes {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.product-vibes__label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8a6d5f;
}

.vibe-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.16rem 0.5rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.vibe-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.vibe-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(58, 30, 15, 0.12);
}

.vibe-badge--relaxare {
  background: #e8f1e6;
  color: #3f6d4e;
  border-color: rgba(63, 109, 78, 0.28);
}

.vibe-badge--romantic {
  background: #fbe7ee;
  color: #b0426a;
  border-color: rgba(176, 66, 106, 0.28);
}

.vibe-badge--energie {
  background: #fff1da;
  color: #b96f14;
  border-color: rgba(185, 111, 20, 0.3);
}

.vibe-badge--sezonale {
  background: #e2f0ef;
  color: #2f7d78;
  border-color: rgba(47, 125, 120, 0.3);
}

.vibe-badge--limited {
  background: #f0e8f8;
  color: #7048a8;
  border-color: rgba(112, 72, 168, 0.3);
}

.product-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(227, 212, 197, 0.85);
}

.product-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem;
}

.product-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-brand);
}

.product-price-old {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--color-taupe);
}

.btn-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.62rem 1.15rem;
  font-size: 0.8125rem;
  white-space: nowrap;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(58, 30, 15, 0.12);
}

.btn-add .btn-add-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.btn-add:hover {
  box-shadow: 0 4px 14px rgba(193, 119, 73, 0.28);
}

.btn-add:hover .btn-add-icon {
  transform: translateX(-1px) rotate(-4deg);
}

@media (max-width: 360px) {
  .product-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-add {
    width: 100%;
  }

  .cart-line {
    grid-template-columns: 3.75rem 1fr;
    grid-template-rows: auto auto;
  }

  .cart-line-sum {
    grid-column: 2;
    justify-self: end;
  }
}

/* Pagini: magazin, produs, coș, checkout, statice */
.breadcrumbs {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.25rem;
  font-size: 0.875rem;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

.page-product .breadcrumbs {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.6rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition);
}

.breadcrumbs a:hover {
  color: var(--color-brand);
  background: rgba(58, 30, 15, 0.05);
}

.breadcrumbs-sep {
  display: inline-flex;
  width: 0.9rem;
  font-size: 0;
  color: var(--color-taupe);
  user-select: none;
}

.breadcrumbs-sep::before {
  content: '›';
  font-size: 1rem;
  line-height: 1;
  opacity: 0.5;
  margin: 0 auto;
}

.breadcrumbs > [aria-current="page"] {
  display: inline-block;
  padding: 0.32rem 0.6rem;
  color: var(--color-brand);
  font-weight: 600;
  max-width: min(24rem, calc(100vw - 8rem));
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

@media (max-width: 480px) {
  .breadcrumbs {
    padding: 1.25rem 1rem;
    font-size: 0.8125rem;
    gap: 0.1rem 0.15rem;
  }

  .breadcrumbs a,
  .breadcrumbs > [aria-current="page"] {
    padding: 0.25rem 0.45rem;
  }
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--color-brand);
  margin: 0 0 1rem;
}

.product-card-media-link {
  display: block;
  color: inherit;
}

.product-title {
  margin: 0 0 0.4rem;
}

.product-title-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.product-title-link:hover {
  color: var(--color-accent);
}

.cart-line-img-wrap {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cart-line-name-link {
  font-weight: 600;
  color: var(--color-brand);
  text-decoration: none;
}

.cart-line-name-link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.page-magazin .shop-section {
  padding-top: 0.5rem;
}

.page-category .shop-section {
  padding-top: 0.5rem;
}

/* Coș — pagină completă */
.cart-main-panel,
.cart-empty-panel {
  max-width: 820px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: linear-gradient(165deg, #fffefb 0%, var(--color-card-alt) 42%, #faf6ef 100%);
  box-shadow: 0 12px 36px rgba(58, 30, 15, 0.075);
}

.cart-main-panel__accent,
.cart-empty-panel__accent {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-brand) 0%,
    var(--color-accent) 42%,
    #e8c4a2 68%,
    var(--color-accent) 100%
  );
}

.cart-main-panel__inner,
.cart-empty-panel__inner {
  padding: clamp(1.2rem, 3vw, 1.75rem) clamp(1.1rem, 2.8vw, 1.55rem) clamp(1.35rem, 3vw, 1.85rem);
}

.cart-page-head {
  margin-bottom: 1.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(227, 212, 197, 0.92);
}

.cart-page-title {
  margin: 0.35rem 0 0;
}

.cart-page-lead {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.cart-line--page {
  padding: 1rem 1.08rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(227, 212, 197, 0.95);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(58, 30, 15, 0.045);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.cart-line--page:hover {
  border-color: rgba(203, 184, 166, 0.95);
  box-shadow: 0 8px 24px rgba(58, 30, 15, 0.07);
}

.cart-line--page.is-loading {
  opacity: 0.55;
  pointer-events: none;
}

.cart-totals-card {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(227, 212, 197, 0.88);
  margin-bottom: 1rem;
}

.cart-row--shipping-line {
  padding-top: 0.45rem;
}

.cart-row--grand {
  margin-top: 0.65rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(227, 212, 197, 0.85);
}

.cart-price-free {
  color: var(--color-accent);
  font-weight: 700;
}

.cart-foot-hint {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.cart-page-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0.25rem;
}

.cart-page-foot {
  padding-top: 0.25rem;
}

.cart-page-foot .cart-trust-icons {
  border-top: 1px dashed rgba(227, 212, 197, 0.88);
  margin-top: 1.15rem;
  padding-top: 1.1rem;
}

.qty-input--page {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  padding: 0.42rem 0.35rem;
  font-weight: 600;
}

.cart-remove {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
  background: none;
  border: none;
  padding: 0.25rem 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-remove:hover {
  color: var(--color-brand);
}

.cart-empty-panel {
  text-align: center;
}

.cart-empty-panel__inner {
  padding: clamp(2.25rem, 5vw, 3.25rem) 1.5rem;
}

.cart-empty-panel__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-accent);
  opacity: 0.9;
}

.cart-empty-panel__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 600;
  color: var(--color-brand);
}

.cart-empty-panel__text {
  margin: 0 auto 1.35rem;
  max-width: 26rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.cart-empty-panel__cta {
  display: inline-flex;
}

.cart-cross-sell--below {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 1.5rem) 0;
  border-top: 1px solid rgba(227, 212, 197, 0.85);
}

.cart-cross-sell__head {
  margin-bottom: 1.35rem;
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cart-cross-sell__title {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 600;
  color: var(--color-brand);
}

.input-uppercase {
  text-transform: uppercase;
}

/* Checkout — panouri */
.checkout-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: linear-gradient(165deg, #fffefb 0%, var(--color-card-alt) 40%, #faf6ef 100%);
  box-shadow: 0 12px 36px rgba(58, 30, 15, 0.07);
}

.checkout-panel__accent {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-brand) 0%,
    var(--color-accent) 40%,
    #e8c4a2 65%,
    var(--color-accent) 100%
  );
}

.checkout-panel__body {
  padding: clamp(1.2rem, 2.8vw, 1.65rem) clamp(1.1rem, 2.5vw, 1.45rem) clamp(1.35rem, 2.8vw, 1.65rem);
}

.checkout-panel__head {
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(227, 212, 197, 0.92);
}

.checkout-panel__head--solo {
  margin-bottom: 0.85rem;
  border-bottom: none;
  padding-bottom: 0;
}

.checkout-panel__title {
  margin: 0.35rem 0 0;
}

.checkout-panel__lead {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.checkout-empty-msg {
  text-align: center;
  padding: 1rem 0.5rem 0.5rem;
}

.checkout-empty-msg p {
  margin: 0 0 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.checkout-empty-msg .btn {
  margin: 0 0.35rem 0.5rem;
}

.checkout-firma-grid {
  margin-top: 0.65rem;
}

.checkout-firma-grid .field label[for="co-cui"] {
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-fg-soft, #3d2919);
  font-size: 0.76rem;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  display: block;
}

/* === ANAF — checkout block (lookup CUI + verificat card + modal confirmare) === */
.checkout-firma-block {
  margin-top: 0.4rem;
}
.checkout-firma-lead {
  font-size: 0.92rem;
  color: var(--color-fg-mute, #6c5b48);
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

/* Composed control: input + verify ca un singur element profesional */
.anaf-cui-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 3rem;
  border-radius: 12px;
  border: 1px solid rgba(58, 30, 15, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #fdfcfa 100%);
  box-shadow:
    0 1px 2px rgba(58, 30, 15, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.anaf-cui-row:focus-within {
  border-color: rgba(182, 106, 44, 0.42);
  box-shadow:
    0 0 0 3px rgba(182, 106, 44, 0.14),
    0 1px 3px rgba(58, 30, 15, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.anaf-cui-row input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0.65rem 1rem 0.65rem 1.05rem;
  font-size: 1rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  color: var(--color-fg, #1f1408);
  outline: none;
}
.anaf-cui-row input::placeholder {
  color: rgba(92, 76, 62, 0.45);
  font-weight: 400;
  letter-spacing: normal;
}

/* Buton: nu capsulă completă — aliniat înălțimii câmpului, cu icon */
.anaf-cui-row .anaf-verify-btn.btn {
  align-self: center;
  margin: 5px 5px 5px 0;
  border-radius: 9px !important;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.52rem 1.05rem !important;
  min-height: 2.35rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  text-transform: none;
  white-space: nowrap;
  flex-shrink: 0;
  background: linear-gradient(180deg, #5c3d28 0%, #422a1b 100%) !important;
  color: #fffef9 !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 2px 6px rgba(58, 30, 15, 0.22);
  transition:
    background 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.12s ease,
    filter 0.15s ease;
}
.anaf-cui-row .anaf-verify-btn.btn:hover:not(:disabled) {
  background: linear-gradient(180deg, #6e4a32 0%, #4d3423 100%) !important;
  filter: brightness(1.03);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 3px 10px rgba(58, 30, 15, 0.26);
}
.anaf-cui-row .anaf-verify-btn.btn:active:not(:disabled) {
  transform: translateY(1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 1px 4px rgba(58, 30, 15, 0.2);
}
.anaf-cui-row .anaf-verify-btn.btn:focus-visible {
  outline: 2px solid rgba(182, 106, 44, 0.65);
  outline-offset: 2px;
}

.anaf-verify-btn__ico {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  opacity: 0.95;
}

.anaf-verify-btn {
  position: relative;
}
.anaf-verify-btn .anaf-verify-btn__spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: anafSpin 0.7s linear infinite;
  flex-shrink: 0;
}
.anaf-verify-btn.is-loading .anaf-verify-btn__label,
.anaf-verify-btn.is-loading .anaf-verify-btn__ico {
  visibility: hidden;
}
.anaf-verify-btn.is-loading .anaf-verify-btn__spinner {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -7px 0 0 -7px;
}
.anaf-verify-btn.is-loading {
  opacity: 0.92;
  cursor: wait;
  pointer-events: none;
}
.anaf-verify-btn[disabled]:not(.is-loading) {
  cursor: wait;
}
@keyframes anafSpin { to { transform: rotate(360deg); } }

.anaf-error {
  margin: 0.5rem 0 0;
  padding: 0.55rem 0.75rem;
  background: #fce0db;
  border-left: 3px solid #c0392b;
  color: #8b261b;
  font-size: 0.88rem;
  border-radius: 4px;
}

.anaf-card {
  margin-top: 0.85rem;
  padding: 0.95rem 1rem;
  background: linear-gradient(180deg, #f6fbf3 0%, #effaef 100%);
  border: 1px solid #b9e2bb;
  border-radius: 10px;
}
.anaf-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.55rem;
}
.anaf-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  background: #138a4f;
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.anaf-card__badge svg { display: block; }
.anaf-card__edit {
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.85rem;
  color: var(--color-accent, #b66a2c);
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.anaf-card__edit:hover { color: var(--color-accent-dark, #884b15); }

.anaf-card__list {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
}
.anaf-card__list > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0.4rem 0.85rem;
  align-items: baseline;
}
.anaf-card__list dt {
  margin: 0;
  font-size: 0.8rem;
  color: #5b4d3c;
  font-weight: 600;
}
.anaf-card__list dd {
  margin: 0;
  font-size: 0.92rem;
  color: #1f1408;
  word-break: break-word;
  white-space: pre-wrap;
}

@media (max-width: 540px) {
  .anaf-cui-row {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding: 6px;
    gap: 8px;
    border-radius: 12px;
  }
  .anaf-cui-row input {
    padding: 0.58rem 0.85rem;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid rgba(58, 30, 15, 0.08) !important;
  }
  .anaf-cui-row .anaf-verify-btn.btn {
    margin: 0;
    width: 100%;
    min-height: 2.65rem;
    border-radius: 9px !important;
  }
  .anaf-card__list > div { grid-template-columns: 1fr; gap: 0.1rem; }
}

/* === ANAF Modal === */
.anaf-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 4, 0.55);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  animation: anafFade 0.18s ease;
}
.anaf-modal-backdrop[hidden] { display: none; }
@keyframes anafFade { from { opacity: 0; } to { opacity: 1; } }

.anaf-modal {
  background: #fff;
  width: min(520px, 100%);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(20, 12, 4, 0.28);
  overflow: hidden;
  animation: anafPop 0.22s ease;
}
@keyframes anafPop {
  from { opacity: 0; transform: scale(0.96) translateY(6px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.anaf-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 1.05rem 1.15rem 0.6rem;
}
.anaf-modal__head h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f1408;
}
.anaf-modal__lead {
  margin: 0;
  font-size: 0.9rem;
  color: #6c5b48;
  line-height: 1.45;
}
.anaf-modal__close {
  background: transparent;
  border: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #6c5b48;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.anaf-modal__close:hover { background: rgba(0, 0, 0, 0.06); color: #1f1408; }

.anaf-modal__body {
  padding: 0.4rem 1.15rem 0.85rem;
}
.anaf-modal__data {
  margin: 0;
  display: grid;
  gap: 0.55rem;
  padding: 0.7rem 0.9rem;
  background: var(--color-card-alt, #faf6ef);
  border: 1px solid var(--color-border, #e6dfd3);
  border-radius: 10px;
}
.anaf-modal__data > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0.3rem 0.85rem;
  align-items: baseline;
}
.anaf-modal__data dt {
  margin: 0;
  font-size: 0.78rem;
  color: #6c5b48;
  font-weight: 600;
}
.anaf-modal__data dd {
  margin: 0;
  font-size: 0.93rem;
  color: #1f1408;
  word-break: break-word;
  white-space: pre-wrap;
}
.anaf-modal__alert {
  margin-top: 0.7rem;
  padding: 0.55rem 0.75rem;
  background: #fbeec8;
  border-left: 3px solid #b88311;
  color: #6b4d10;
  font-size: 0.86rem;
  border-radius: 4px;
}

.anaf-modal__foot {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  padding: 0.85rem 1.15rem 1.1rem;
  border-top: 1px solid var(--color-border, #e6dfd3);
  background: var(--color-card-alt, #faf6ef);
  flex-wrap: wrap;
}
.anaf-modal__foot .btn { min-width: 0; }

@media (max-width: 540px) {
  .anaf-modal__data > div { grid-template-columns: 1fr; gap: 0.1rem; }
  .anaf-modal__foot { justify-content: stretch; }
  .anaf-modal__foot .btn { flex: 1 1 auto; }
}

.address-autocomplete-field {
  position: relative;
}

.address-suggest-popover {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.28rem);
  z-index: 95;
  max-height: 13.5rem;
  overflow-y: auto;
  background: linear-gradient(180deg, #fffefb 0%, var(--color-card-alt) 100%);
  border: 1px solid rgba(227, 212, 197, 0.95);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px rgba(58, 30, 15, 0.12);
}

.address-suggest-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.35;
  color: var(--color-brand);
  border: none;
  border-bottom: 1px solid rgba(227, 212, 197, 0.55);
  background: transparent;
  cursor: pointer;
  transition: background 0.12s ease;
}

.address-suggest-option:last-child {
  border-bottom: none;
}

.address-suggest-option:hover,
.address-suggest-option:focus {
  outline: none;
  background: rgba(200, 121, 61, 0.09);
}

.checkout-summary-wrap.checkout-summary--elevated {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #fffefb 0%, var(--color-card-alt) 38%, #faf7f1 100%);
  border: 1px solid var(--color-border);
  box-shadow: 0 14px 38px rgba(58, 30, 15, 0.09);
}

.checkout-summary__accent {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-accent) 0%,
    #e8c4a2 45%,
    var(--color-brand) 100%
  );
}

.checkout-summary__inner {
  padding: 1.2rem 1.28rem 1.35rem;
}

.checkout-summary-placeholder {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.checkout-shipping-hint {
  margin: 0.35rem 0 0.65rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.checkout-promos {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(227, 212, 197, 0.92);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.checkout-collapse {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(227, 212, 197, 0.95);
  background: rgba(255, 254, 251, 0.72);
  overflow: hidden;
}

.checkout-collapse > summary {
  list-style: none;
  cursor: pointer;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  user-select: none;
}

.checkout-collapse > summary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.checkout-collapse > summary::-webkit-details-marker {
  display: none;
}

.checkout-collapse > summary::after {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-top: -0.2rem;
}

.checkout-collapse[open] > summary::after {
  transform: rotate(225deg);
  margin-top: 0.15rem;
}

.checkout-collapse__body {
  padding: 0 0.85rem 0.85rem;
}

.checkout-promos .field--checkout-promo {
  margin-bottom: 0;
}

.checkout-promos .field--checkout-promo label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-brand);
  margin-bottom: 0.35rem;
}

.checkout-promos .field--checkout-promo input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
}

.checkout-promos .field--checkout-promo input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.checkout-promos .giftcard-apply--checkout-aside {
  margin-top: 0;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.85);
}

.checkout-summary-title {
  margin-bottom: 0.85rem;
}

.checkout-form .checkout-section-title:first-of-type {
  margin-top: 0;
}

.cart-page-lines {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cart-empty--page[hidden] {
  display: none !important;
}

.checkout-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.5rem) clamp(3rem, 5vw, 4rem);
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.5rem);
}

@media (min-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr minmax(300px, 360px);
    align-items: start;
  }
}

.checkout-lead {
  margin: 0 0 1.5rem;
  color: var(--color-text);
}

.checkout-form .field,
.giftcard-form .field {
  margin-bottom: 1.1rem;
}

.checkout-form .checkout-notes-field {
  margin-top: 1.35rem;
}

.checkout-form label,
.contact-form label,
.giftcard-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-brand);
  margin-bottom: 0.35rem;
}

.checkout-form input,
.checkout-form textarea,
.contact-form input,
.contact-form textarea,
.giftcard-form input[type="text"],
.giftcard-form input[type="email"],
.giftcard-form input[type="tel"],
.giftcard-form input[type="date"],
.giftcard-form input[type="number"],
.giftcard-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-brand);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.checkout-form input:focus,
.checkout-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.giftcard-form input:focus,
.giftcard-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(193, 119, 73, 0.15);
}

.checkout-form textarea,
.giftcard-form textarea {
  resize: vertical;
  min-height: 5rem;
}

.field--check {
  margin-top: 1rem;
}

.check-label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-text);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.check-label input {
  width: auto;
  margin-top: 0.25rem;
}

.checkout-summary-wrap {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
}

.checkout-summary-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
  color: var(--color-brand);
}

.checkout-summary-lines {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-text);
}

.checkout-line-name {
  flex: 1;
  min-width: 0;
}

.checkout-total {
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}

.checkout-total strong {
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
}

.checkout-total strong.is-bumped {
  animation: checkoutTotalBump 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes checkoutTotalBump {
  0% { transform: scale(1); color: inherit; }
  40% { transform: scale(1.12); color: var(--color-accent); }
  100% { transform: scale(1); color: inherit; }
}

.checkout-line--extra {
  color: var(--color-accent);
  font-weight: 500;
}
.checkout-line--extra > span:last-child {
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .checkout-total strong.is-bumped {
    animation: none;
  }
}

.page-static {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--color-text);
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--color-accent);
  font-weight: 600;
}

.prose--legal h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-brand);
  margin: 2rem 0 0.5rem;
}

.prose--legal h2:first-of-type {
  margin-top: 1rem;
}

.contact-form {
  margin-top: 1.5rem;
  max-width: 32rem;
}

.product-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.product-detail-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 768px) {
  .product-detail-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

.product-detail-media {
  min-width: 0;
}

@media (min-width: 768px) {
  .product-detail-media {
    position: sticky;
    top: 1.25rem;
  }
}

.product-detail-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 14px 42px rgba(58, 30, 15, 0.09);
  background: #faf7f4;
}

.product-detail-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  box-sizing: border-box;
  padding: clamp(0.65rem, 2.5vw, 1.15rem);
}

.product-badges--detail {
  position: static;
  margin-top: 0.75rem;
}

.product-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  color: var(--color-brand);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.product-detail-note {
  font-size: 1.0625rem;
  color: var(--color-text);
  margin: 0 0 1.25rem;
}

.product-detail-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.product-price--large {
  font-size: 1.5rem;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.btn-add--large {
  padding: 0.85rem 1.5rem;
  font-size: 0.9375rem;
}

.product-tags--detail {
  margin-bottom: 1.5rem;
}

.product-specs {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.product-spec {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.product-spec dt {
  margin: 0;
  font-weight: 600;
  color: var(--color-brand);
}

.product-spec dd {
  margin: 0;
  color: var(--color-text);
}

.product-detail-long p {
  margin: 0 0 0.85rem;
  color: var(--color-text);
  line-height: 1.65;
}

.shop-section--featured .shop-lead a {
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
}

.shop-section--featured .shop-lead a:hover {
  text-decoration: underline;
}

/* Flash messages */
.flash {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.flash--ok {
  background: rgba(200, 121, 61, 0.18);
  color: var(--color-brand);
  border-bottom: 1px solid var(--color-border);
}

.flash--error {
  background: rgba(139, 0, 0, 0.08);
  color: #6b1a1a;
  border-bottom: 1px solid var(--color-border);
}

.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
}

.product-card-form {
  margin: 0;
}

.product-detail-form {
  margin: 0;
  display: inline-block;
}

.inline-form {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0.5rem 0 0;
}

.qty-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.qty-input--page {
  width: 3.5rem;
  padding: 0.35rem;
}

.cart-line--page {
  align-items: start;
}

.cart-line-actions--page {
  flex-direction: column;
  align-items: flex-start;
}

/* Checkout sections */
.checkout-section-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-brand);
  margin: 1.5rem 0 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--color-border);
}

.checkout-section-title:first-of-type {
  margin-top: 0;
}

.field--radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  font-weight: 400 !important;
  font-size: 0.9375rem !important;
  color: var(--color-text) !important;
  margin-bottom: 0 !important;
}

.radio-label:hover {
  border-color: var(--color-accent);
  background: rgba(200, 121, 61, 0.04);
}

.radio-label input[type="radio"] {
  width: auto;
  margin-top: 0.3rem;
  accent-color: var(--color-accent);
}

.radio-label small {
  font-size: 0.8125rem;
  color: var(--color-text);
  opacity: 0.85;
}

.checkout-line--shipping {
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-border);
  margin-top: 0.5rem;
}

/* Pagină comandă plasată (order_thanks) */
.page-order-thanks {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.order-thanks-layout {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
}

.order-thanks-head {
  text-align: center;
  padding-bottom: 1.1rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px dashed rgba(227, 212, 197, 0.92);
}

.order-thanks-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  color: var(--color-accent);
  background: linear-gradient(145deg, #fffefb 0%, rgba(248, 238, 226, 0.96) 100%);
  border: 1px solid rgba(227, 212, 197, 0.95);
  box-shadow: 0 8px 22px rgba(58, 30, 15, 0.065);
}

.order-thanks-icon-wrap svg {
  display: block;
}

.order-thanks-title {
  margin: 0.35rem 0 0;
}

.order-thanks-lead {
  text-align: center;
  margin: 0 0 1.35rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.order-thanks-lead strong {
  color: var(--color-brand);
}

.order-thanks-lead--solo {
  margin-bottom: 1.65rem;
}

.order-thanks-sections {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.order-thanks-card {
  padding: 1.05rem 1.12rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(227, 212, 197, 0.88);
  box-shadow: 0 4px 18px rgba(58, 30, 15, 0.045);
  text-align: left;
}

.order-thanks-card__title {
  margin-top: 0;
  margin-bottom: 0.85rem;
}

.order-thanks-card--lines .order-thanks-lines {
  margin-bottom: 0.15rem;
}

.order-thanks-line-first {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px dashed rgba(227, 212, 197, 0.85);
}

.order-thanks-grand.checkout-total {
  margin-top: 0.65rem;
}

.order-detail-block--full {
  grid-column: 1 / -1;
}

.checkout-panel__body > .order-thanks-sections + .order-thanks-card,
.checkout-panel__body > .order-thanks-card + .order-thanks-card,
.checkout-panel__body > .order-thanks-sections + .order-thanks-note,
.checkout-panel__body > .order-thanks-card + .order-thanks-note {
  margin-top: 1.15rem;
}

.order-thanks-card--payment {
  background: linear-gradient(
    165deg,
    rgba(255, 251, 245, 0.98) 0%,
    rgba(255, 243, 232, 0.62) 52%,
    rgba(255, 255, 255, 0.78) 100%
  );
  border-color: rgba(200, 121, 61, 0.38);
  box-shadow: 0 6px 22px rgba(200, 121, 61, 0.085);
}

.order-thanks-bank-lines {
  margin: 0.65rem 0 0;
  font-size: 0.93rem;
  line-height: 1.65;
}

.order-thanks-hint {
  margin-top: 0.85rem;
}

.order-thanks-note {
  text-align: center;
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.order-thanks-note strong {
  color: var(--color-brand);
}

.order-thanks-actions,
.order-confirm-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px dashed rgba(227, 212, 197, 0.88);
}

.order-thanks-actions .btn,
.order-confirm-actions .btn {
  min-width: 11rem;
}

/* Order confirmation (legacy — order_success și fluxuri vechi) */
.order-confirm {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.order-confirm-icon {
  margin: 1.5rem 0 1rem;
}

.order-details {
  text-align: left;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.order-details-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 500px) {
  .order-details-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.order-detail-block {
  font-size: 0.9375rem;
}

.order-detail-block strong {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.order-detail-block p {
  margin: 0 0 0.15rem;
}

.order-payment-info {
  text-align: left;
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: rgba(200, 121, 61, 0.08);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
}

.order-thanks-card.gc-pending {
  border-color: #f1d9a8;
  box-shadow: 0 6px 22px rgba(122, 74, 5, 0.07);
}

.contact-form .field {
  margin-bottom: 1rem;
}

/* ============================================ */
/* TOAST NOTIFICATIONS                          */
/* ============================================ */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  pointer-events: none;
  max-width: calc(100vw - 2rem);
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 280px;
  max-width: 360px;
  padding: 0.75rem 0.85rem 0.75rem 0.85rem;
  background: var(--color-card-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(58, 30, 15, 0.18), 0 4px 12px rgba(58, 30, 15, 0.08);
  color: var(--color-brand);
  font-size: 0.9375rem;
  font-weight: 500;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(-12px) scale(0.96);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.toast.is-shown {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.toast.is-hiding {
  opacity: 0;
  transform: translateY(-12px) scale(0.96);
}

.toast-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}

.toast-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--color-accent);
}

.toast--ok .toast-icon {
  color: #2e7d32;
  background: rgba(46, 125, 50, 0.1);
}

.toast--error .toast-icon {
  color: #c62828;
  background: rgba(198, 40, 40, 0.1);
}

.toast-text {
  flex: 1;
  line-height: 1.4;
}

.toast--error {
  border-color: rgba(198, 40, 40, 0.3);
}

.toast-close {
  border: none;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity var(--transition), background var(--transition);
}

.toast-close:hover {
  opacity: 1;
  background: var(--color-card);
}

@media (max-width: 600px) {
  .toast-container {
    top: auto;
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
  }
  .toast {
    min-width: 0;
    max-width: none;
    width: 100%;
  }
}

/* ============================================ */
/* CART DRAWER ENHANCEMENTS                     */
/* ============================================ */
.cart-drawer {
  width: min(100%, 440px);
}

.cart-drawer-count {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0;
  margin-left: 0.35rem;
}

.cart-drawer-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: var(--color-text);
}

.cart-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-border);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: domol-spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes domol-spin {
  to { transform: rotate(360deg); }
}

.cart-empty-state {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--color-text);
}

.cart-empty-state svg {
  margin: 0 auto 1rem;
  display: block;
}

.cart-empty-state p {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-brand);
}

.cart-empty-state .cart-empty-sub {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.cart-line--drawer {
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cart-line--drawer.is-loading {
  opacity: 0.55;
  pointer-events: none;
}

.cart-line--drawer.is-removing {
  opacity: 0;
  transform: translateX(60px);
}

.cart-line--drawer .qty {
  background: var(--color-bg);
}

.cart-line--drawer .qty-btn {
  width: 2rem;
  height: 2rem;
  font-size: 1.1rem;
  user-select: none;
}

.cart-line--drawer .qty-input {
  width: 2.5rem;
  height: 2rem;
}

.cart-line--drawer .cart-remove {
  font-size: 0.8125rem;
}

/* Free shipping progress */
.cart-free-progress {
  margin-top: 1.25rem;
  padding: 0.85rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.cart-free-progress.is-complete {
  background: rgba(200, 121, 61, 0.12);
  border-color: var(--color-accent);
}

.cart-free-progress-text {
  font-size: 0.85rem;
  color: var(--color-brand);
  margin-bottom: 0.5rem;
  text-align: center;
}

.cart-free-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(58, 30, 15, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.cart-free-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-accent), #d68a4f);
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-free-progress.is-complete .cart-free-progress-fill {
  background: linear-gradient(90deg, #2e7d32, #4caf50);
}

/* ============================================ */
/* ADD-TO-CART BUTTON STATES                    */
/* ============================================ */
.btn-add,
.btn-add--large {
  position: relative;
  min-width: 9rem;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform 0.15s ease, min-width 0.2s ease;
}

.btn-add--large {
  min-width: 11rem;
}

.btn-add.is-loading,
.btn-add--large.is-loading {
  color: transparent !important;
  pointer-events: none;
}

.btn-add.is-loading::after,
.btn-add--large.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  margin-left: -9px;
  border: 2px solid rgba(250, 247, 242, 0.4);
  border-top-color: var(--color-btn-text);
  border-radius: 50%;
  animation: domol-spin 0.7s linear infinite;
}

.btn-add.is-success,
.btn-add--large.is-success {
  background: #2e7d32;
  border-color: #2e7d32;
  color: var(--color-btn-text);
  pointer-events: none;
  animation: domol-btn-pop 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes domol-btn-pop {
  0% { transform: scale(1); }
  35% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* ============================================ */
/* MOBILE MENU TOGGLE - icon swap               */
/* ============================================ */
.menu-toggle .menu-icon-close {
  display: none;
}

body.nav-open .menu-toggle .menu-icon-open {
  display: none;
}

body.nav-open .menu-toggle .menu-icon-close {
  display: inline-block;
}

/* ============================================ */
/* PAGE ENTER + REVEAL ON SCROLL                */
/* ============================================ */
main {
  animation: domol-page-enter 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes domol-page-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger product cards in initial grid view */
.products-grid > .product-card.is-revealed {
  transition-delay: calc((var(--card-i, 0)) * 50ms);
}

/* ============================================ */
/* SMOOTH HOVER POLISH                          */
/* ============================================ */

.btn-primary:hover {
  box-shadow: 0 8px 22px rgba(200, 121, 61, 0.25);
}

/* ============================================ */
/* MOBILE TWEAKS                                */
/* ============================================ */
@media (max-width: 600px) {
  .cart-drawer {
    width: 100%;
    border-left: none;
  }

  .cart-line--drawer {
    grid-template-columns: 4rem 1fr;
    grid-template-rows: auto auto;
    gap: 0.6rem 0.75rem;
  }

  .cart-line--drawer .cart-line-sum {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    align-self: end;
  }

  .qty-btn {
    min-width: 2.25rem;
    min-height: 2.25rem;
  }

  .cart-line--drawer .qty-btn {
    width: 2.25rem;
    height: 2.25rem;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0.6rem 1rem;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
  }
}

/* ============================================ */
/* RATING STARS                                 */
/* ============================================ */
.rating-stars {
  --star-size: 18px;
  --rating-pct: 0%;
  position: relative;
  display: inline-block;
  font-size: var(--star-size);
  line-height: 1;
  letter-spacing: 2px;
  vertical-align: middle;
}

.rating-stars-bg,
.rating-stars-fg {
  display: inline-block;
}

.rating-stars-bg {
  color: rgba(58, 30, 15, 0.18);
}

.rating-stars-fg {
  position: absolute;
  inset: 0;
  width: var(--rating-pct);
  overflow: hidden;
  white-space: nowrap;
  color: #f5b942;
}

/* ============================================ */
/* HERO — social proof                          */
/* ============================================ */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--color-text);
}

.hero-social-proof strong {
  color: var(--color-brand);
}

@media (max-width: 900px) {
  .hero-social-proof {
    justify-content: center;
  }
}

/* ============================================ */
/* MOOD CARDS                                   */
/* ============================================ */
.mood-section {
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 3vw, 1.5rem);
  background: var(--color-bg);
}

.mood-grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.mood-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  background: var(--color-card-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.mood-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), #d68a4f);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.mood-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.mood-card:hover::before {
  transform: scaleX(1);
}

.mood-card-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(200, 121, 61, 0.12);
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}

.mood-card:hover .mood-card-icon {
  background: rgba(200, 121, 61, 0.22);
}

.mood-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-brand);
  margin: 0 0 0.5rem;
}

.mood-card p {
  margin: 0 0 1.25rem;
  color: var(--color-text);
  flex: 1;
}

.mood-card-link {
  font-weight: 600;
  color: var(--color-accent);
  font-size: 0.9375rem;
}

.mood-card-link span {
  display: inline-block;
  transition: transform 0.25s ease;
}

.mood-card:hover .mood-card-link span {
  transform: translateX(4px);
}

/* ============================================ */
/* PROMO BANNER                                 */
/* ============================================ */
.promo-banner {
  margin: clamp(1.5rem, 4vw, 3rem) auto;
  max-width: 1200px;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
}

.promo-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, #3a1e0f 0%, #5c3120 100%);
  border-radius: var(--radius-lg);
  color: var(--color-btn-text);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

@media (min-width: 768px) {
  .promo-banner-inner {
    grid-template-columns: 1fr auto;
  }
}

.promo-banner-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.promo-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  line-height: 1.15;
  color: var(--color-btn-text);
}

.promo-banner-sub {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  opacity: 0.92;
  max-width: 38rem;
}

.promo-banner-inner .btn-primary {
  background: var(--color-accent);
  color: var(--color-btn-text);
}

.promo-banner-inner .btn-primary:hover {
  background: var(--color-btn-text);
  color: var(--color-brand);
}

.promo-banner-visual {
  position: relative;
  width: 160px;
  height: 160px;
  align-self: center;
  justify-self: center;
}

.promo-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(250, 247, 242, 0.18);
}

.promo-circle--1 { inset: 0; animation: promo-pulse 3s ease-in-out infinite; }
.promo-circle--2 { inset: 18px; animation: promo-pulse 3s ease-in-out infinite 0.5s; }
.promo-circle--3 { inset: 36px; animation: promo-pulse 3s ease-in-out infinite 1s; background: rgba(200, 121, 61, 0.18); border-color: var(--color-accent); }

@keyframes promo-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 1; }
}

.promo-icon {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

/* ============================================ */
/* WHY DOMOL                                    */
/* ============================================ */
.why-section {
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 3vw, 1.5rem);
  background: var(--color-card);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.why-grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.why-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--color-card-alt);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(200, 121, 61, 0.12);
  color: var(--color-accent);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-brand);
  margin: 0 0 0.5rem;
}

.why-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.55;
}

/* ============================================ */
/* TESTIMONIALS                                 */
/* ============================================ */
.testimonials-section {
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 3vw, 1.5rem);
  background: var(--color-bg);
}

.testimonials-section .shop-lead {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.testi-grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.testi-card {
  background: var(--color-card-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.testi-card .rating-stars {
  margin-bottom: 0.85rem;
}

.testi-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-brand);
  margin: 0 0 0.6rem;
  line-height: 1.3;
}

.testi-body {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
  flex: 1;
}

.testi-foot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.testi-foot strong {
  display: block;
  color: var(--color-brand);
  font-size: 0.9375rem;
}

.testi-product {
  font-size: 0.8125rem;
  color: var(--color-text);
}

.testi-product a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================ */
/* NEWSLETTER                                   */
/* ============================================ */
.newsletter-section {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 3vw, 1.5rem);
  margin: 0 auto;
}

.newsletter-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem);
  background: linear-gradient(135deg, var(--color-card) 0%, var(--color-card-alt) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.newsletter-inner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 121, 61, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .newsletter-inner {
    grid-template-columns: 1.2fr 1fr;
  }
}

.newsletter-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.newsletter-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--color-brand);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.newsletter-text p {
  margin: 0;
  color: var(--color-text);
}

.newsletter-form {
  position: relative;
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-card-alt);
  color: var(--color-brand);
  margin-bottom: 0.65rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200, 121, 61, 0.18);
}

.newsletter-form .btn {
  width: 100%;
}

.newsletter-note {
  margin: 0.85rem 0 0;
  font-size: 0.8125rem;
  color: var(--color-text);
  opacity: 0.8;
  text-align: center;
}

/* ============================================ */
/* PRODUCT PAGE — redesign                      */
/* ============================================ */
.product-discount-pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.8rem;
  background: #c62828;
  color: var(--color-btn-text);
  font-weight: 700;
  font-size: 0.8125rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 18px rgba(198, 40, 40, 0.3);
  z-index: 2;
}

.product-badges--detail-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.product-tags--inline {
  margin-bottom: 0.85rem;
}

/* Etichete discrete sub beneficiile de comandă (pagina de produs) */
.product-tags--muted {
  margin: 0.85rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(203, 184, 166, 0.5);
  opacity: 0.65;
}

.product-tags--muted .product-tag {
  background: transparent;
  border-color: rgba(203, 184, 166, 0.45);
  color: #8a6d5f;
}

.product-rating-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition);
}

.product-rating-link:hover {
  opacity: 0.8;
}

.product-rating-text {
  font-size: 0.9375rem;
  color: var(--color-text);
}

.product-rating-text strong {
  color: var(--color-brand);
}

.product-rating-link--empty .product-rating-text {
  color: var(--color-accent);
  font-weight: 600;
}

.product-saving {
  margin-left: 0.5rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(46, 125, 50, 0.12);
  color: #2e7d32;
  border-radius: 999px;
}

.product-detail-cta {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  align-items: center;
  margin: 0.7rem 0 0;
}

.qty--detail {
  flex-shrink: 0;
  border: 1px solid rgba(58, 30, 15, 0.1);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.qty--detail .qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.25rem;
  padding: 0;
  font-size: 0;
  color: var(--color-brand);
}

.qty--detail .qty-btn .domol-icon {
  color: var(--color-brand);
  opacity: 0.85;
}

.qty--detail .qty-btn:hover {
  background: rgba(58, 30, 15, 0.04);
}

.qty--detail .qty-btn:hover .domol-icon {
  opacity: 1;
}

.qty-input--detail {
  width: 2.15rem;
  height: 2.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-inline: 1px solid rgba(58, 30, 15, 0.08);
  background: transparent;
}

.product-detail-cta .btn-add--large {
  flex: 1;
  min-width: 0;
  min-height: 2.25rem;
  padding: 0.5rem 0.95rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 10px;
  box-shadow: none;
}

.product-detail-cta .btn-add--large:hover {
  box-shadow: 0 2px 10px rgba(58, 30, 15, 0.14);
}

.product-detail-cta .fav-btn--detail {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  border: 1px solid rgba(58, 30, 15, 0.1);
  background: #fff;
  flex-shrink: 0;
}

.product-detail-cta .fav-btn--detail:hover {
  background: #fff8f8;
}

@media (max-width: 480px) {
  .product-detail-cta {
    flex-wrap: wrap;
  }

  .product-detail-cta .btn-add--large {
    order: 2;
    flex: 1 1 calc(100% - 2.75rem);
  }

  .product-detail-cta .fav-btn--detail {
    order: 3;
  }

  .qty--detail {
    order: 1;
  }
}

.product-trust-row {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.product-trust-row li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text);
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-stock-banner {
  margin: 0;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 600;
}

.product-stock-banner--out {
  background: rgba(180, 35, 24, 0.09);
  color: #8f1f18;
  border: 1px solid rgba(180, 35, 24, 0.22);
}

.product-stock-banner--low {
  background: rgba(180, 83, 9, 0.1);
  color: #7a4208;
  border: 1px solid rgba(180, 83, 9, 0.25);
}

.product-buy-card {
  margin-top: 0;
}

.product-buy-card .checkout-panel__body {
  padding: 0.95rem 1.05rem 1.05rem;
}

.product-buy-card__head {
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed rgba(227, 212, 197, 0.88);
}

.product-buy-card__head .product-tags--inline {
  margin-bottom: 0.45rem;
}

.product-buy-card__title {
  margin: 0 0 0.3rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.15;
}

.product-buy-card__note {
  margin: 0 0 0.45rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--color-text);
}

.product-buy-card__head .product-stock-banner {
  margin-top: 0.45rem;
  padding: 0.5rem 0.7rem;
  font-size: 0.8125rem;
}

.product-buy-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.15rem 0 0;
  text-decoration: none;
}

.product-buy-card__rating .product-rating-text {
  font-size: 0.8125rem;
}

.product-buy-ship {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.75rem;
  padding: 0.42rem 0.7rem;
  font-size: 0.76rem;
  line-height: 1.35;
  color: var(--color-brand);
  background: rgba(255, 248, 241, 0.92);
  border: 1px solid rgba(200, 121, 61, 0.22);
  border-radius: 999px;
}

.product-buy-ship__icon {
  flex-shrink: 0;
}

.product-buy-ship__text {
  min-width: 0;
}

.product-ship-urgency {
  margin: 0 0 1rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.84rem;
  line-height: 1.45;
  text-align: center;
  color: var(--color-brand);
  background: rgba(255, 248, 241, 0.95);
  border: 1px dashed rgba(200, 121, 61, 0.38);
  border-radius: var(--radius-sm);
}

.product-ship-urgency__clock {
  display: inline-block;
  margin: 0 0.2rem;
  padding: 0.12rem 0.45rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 6px;
}

.product-detail-prices--buy {
  margin-bottom: 0.65rem;
  align-items: center;
  gap: 0.4rem;
}

.product-buy-card .product-price.product-price--buy {
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-buy-card .product-saving {
  font-size: 0.72rem;
  padding: 0.18rem 0.5rem;
}

.product-buy-card .product-detail-form {
  display: block;
  width: 100%;
  max-width: none;
}

.product-buy-perks {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0.65rem 0 0;
  border-top: 1px dashed rgba(227, 212, 197, 0.88);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}

.product-buy-perks li {
  display: flex;
  align-items: center;
  gap: 0.32rem;
  min-height: 2rem;
  padding: 0.35rem 0.45rem;
  font-size: 0.72rem;
  line-height: 1.25;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(227, 212, 197, 0.65);
  border-radius: 8px;
}

.product-buy-perks li span {
  min-width: 0;
}

.product-buy-perks .domol-icon {
  color: var(--color-brand);
  opacity: 0.85;
}

.product-personalize-icon-svg {
  color: var(--color-accent);
}

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

  .product-buy-ship {
    border-radius: var(--radius-sm);
    flex-wrap: wrap;
  }
}

.product-detail-form--disabled .product-detail-cta .btn-add--large {
  opacity: 0.72;
  cursor: not-allowed;
}

.product-detail-form--disabled .product-personalize summary {
  pointer-events: none;
  opacity: 0.55;
}

.qty--disabled {
  opacity: 0.55;
  pointer-events: none;
}

.product-buy-card .product-free-progress {
  margin-top: 0.65rem;
}

.product-buy-card .product-free-shipping-pill {
  margin-top: 0.65rem;
}

/* Tabs */
.product-tabs {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.product-tabs--panel {
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: linear-gradient(165deg, #fffefb 0%, var(--color-card-alt) 36%, #faf6ef 100%);
  box-shadow: 0 12px 34px rgba(58, 30, 15, 0.065);
}

.product-tabs--panel .product-tabs-nav {
  border-bottom-color: rgba(227, 212, 197, 0.88);
}

.product-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.product-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.25rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}

.product-tab .domol-icon {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.product-tab:hover .domol-icon,
.product-tab.is-active .domol-icon {
  opacity: 1;
  color: var(--color-accent);
}

.product-tab:hover {
  color: var(--color-brand);
}

.product-tab.is-active {
  color: var(--color-brand);
  border-bottom-color: var(--color-accent);
}

.product-tab-panel {
  animation: domol-tab-in 0.3s ease;
}

.product-tab-panel[hidden] {
  display: none;
}

@keyframes domol-tab-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-prose h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-brand);
  margin: 1.5rem 0 0.5rem;
}

.product-prose ul {
  padding-left: 1.25rem;
  color: var(--color-text);
}

.product-prose ul li {
  margin-bottom: 0.4rem;
}

.product-specs--full {
  border: none;
  padding: 0;
}

.product-specs--full .product-spec {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
}

.product-specs--full .product-spec:last-child {
  border-bottom: none;
}

/* Specs tab: grupuri tematice */
.product-specs-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  width: 100%;
  align-items: start;
}

.specs-group {
  background: linear-gradient(165deg, #fffdf8 0%, var(--color-card) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.45rem 0.6rem;
  box-shadow: 0 12px 30px rgba(58, 30, 15, 0.05);
  position: relative;
  overflow: hidden;
}

.specs-group::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), rgba(196, 122, 58, 0.25));
}

.specs-group--span {
  grid-column: 1 / -1;
}

.specs-group__title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.55rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(203, 184, 166, 0.45);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--color-brand);
}

.specs-group__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(196, 122, 58, 0.12);
  border: 1px solid rgba(196, 122, 58, 0.25);
  color: var(--color-accent);
  flex-shrink: 0;
}

.specs-group .product-specs {
  margin: 0;
}

.specs-group .product-spec {
  grid-template-columns: 1fr;
  gap: 0.22rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(203, 184, 166, 0.55);
}

.specs-group .product-spec:last-child {
  border-bottom: none;
}

.specs-group .product-spec dt {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
}

.specs-group .product-spec dd {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text);
}

.specs-group--span .product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2.2rem;
  row-gap: 0;
}

.specs-chips {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding-top: 0.15rem;
}

.specs-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.24rem 0.65rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(196, 122, 58, 0.3);
  color: var(--color-brand);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: 0 2px 6px rgba(58, 30, 15, 0.05);
}

.specs-color-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--dot, #ccc);
  border: 1px solid rgba(58, 30, 15, 0.18);
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .product-specs-panel {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .specs-group {
    padding: 1.05rem 1.1rem 0.45rem;
  }

  .specs-group__title {
    font-size: 0.98rem;
    padding-bottom: 0.7rem;
  }

  .specs-group__icon {
    width: 1.85rem;
    height: 1.85rem;
  }

  .specs-group .product-spec {
    padding: 0.62rem 0;
  }

  .specs-group .product-spec dd {
    font-size: 0.85rem;
  }

  .specs-group--span .product-specs {
    grid-template-columns: 1fr;
  }
}

/* Reviews summary */
.reviews-summary {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

@media (min-width: 600px) {
  .reviews-summary {
    grid-template-columns: auto 1fr;
    align-items: center;
  }
}

.reviews-summary-score {
  text-align: center;
  padding-right: 1.5rem;
  border-right: 1px solid var(--color-border);
}

@media (max-width: 599px) {
  .reviews-summary-score {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-right: 0;
    padding-bottom: 1rem;
  }
}

.reviews-avg {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-brand);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.reviews-count {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-text);
  margin-top: 0.35rem;
}

.reviews-summary-bars {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.rating-bar {
  display: grid;
  grid-template-columns: 2.5rem 1fr 2rem;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8125rem;
}

.rating-bar-label {
  color: var(--color-text);
}

.rating-bar-track {
  height: 6px;
  background: rgba(58, 30, 15, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: #f5b942;
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.rating-bar-count {
  text-align: right;
  color: var(--color-text);
}

/* Reviews list */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.review-card {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-card-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  animation: review-pop-in 0.4s ease;
}

@keyframes review-pop-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.review-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #d68a4f);
  color: var(--color-btn-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.review-avatar--sm {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.95rem;
}

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

.review-name {
  color: var(--color-brand);
  font-size: 0.95rem;
}

.review-date {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-text);
  opacity: 0.85;
}

.review-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-brand);
  margin: 0.25rem 0 0.4rem;
}

.review-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text);
}

.reviews-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--color-text);
  font-size: 0.95rem;
}

/* Review form */
.review-form-wrap {
  padding: 1.75rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.review-form-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-brand);
  margin: 0 0 0.4rem;
}

.review-form-lead {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.review-form .field {
  margin-bottom: 1rem;
}

.review-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-brand);
  margin-bottom: 0.4rem;
}

.field-hint {
  font-weight: 400;
  color: var(--color-text);
  opacity: 0.75;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-card-alt);
  color: var(--color-brand);
}

.review-form textarea {
  resize: vertical;
  min-height: 5rem;
}

.field-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.star-rating-input {
  display: inline-flex;
  gap: 0.25rem;
}

.star-input-btn {
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: transparent;
  font-size: 1.65rem;
  line-height: 1;
  color: rgba(58, 30, 15, 0.22);
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}

.star-input-btn:hover,
.star-input-btn.is-active {
  color: #f5b942;
}

.star-input-btn:active {
  transform: scale(0.92);
}

/* Related products */
.related-products {
  margin-top: 4rem;
  padding-bottom: 3rem;
  border-top: 1px solid var(--color-border);
  padding-top: 3rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .product-card:hover,
  .product-card:hover .product-card-media img {
    transform: none;
  }

  main {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .promo-circle {
    animation: none;
  }
}

/* === Cont client === */
.account-page {
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.account-hero-wrap {
  max-width: 1240px;
  margin: 0 auto clamp(1.5rem, 3.5vw, 2.15rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: linear-gradient(165deg, #fffefb 0%, var(--color-card-alt) 42%, #faf6ef 100%);
  box-shadow: 0 10px 32px rgba(58, 30, 15, 0.07);
}

.account-hero-accent {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-brand) 0%,
    var(--color-accent) 42%,
    #e8c4a2 68%,
    var(--color-accent) 100%
  );
}

.account-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem 1.5rem;
  padding: clamp(1.2rem, 3vw, 1.65rem) clamp(1.15rem, 3vw, 1.55rem);
}

.account-hero__user {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.account-hero__avatar {
  flex-shrink: 0;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--color-accent);
  background: linear-gradient(145deg, rgba(200, 121, 61, 0.18), rgba(58, 30, 15, 0.06));
  border: 1px solid rgba(227, 212, 197, 0.95);
}

.account-hero__copy {
  min-width: 0;
}

.account-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--color-brand);
  line-height: 1.15;
}

.account-hero__email {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  word-break: break-word;
}

.account-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-left: auto;
}

.account-quick-links__a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.92rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-brand);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.account-quick-links__a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: #fffefd;
}

@media (max-width: 640px) {
  .account-hero {
    flex-direction: column;
    align-items: stretch;
  }

  .account-quick-links {
    margin-left: 0;
  }
}

.account-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  max-width: 1240px;
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 960px) {
  .account-grid {
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  }
}

.account-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: linear-gradient(165deg, #fffefb 0%, var(--color-card-alt) 38%, #faf7f2 100%);
  box-shadow: 0 8px 28px rgba(58, 30, 15, 0.065);
  padding: clamp(1.25rem, 2.6vw, 1.65rem);
}

.account-card__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 600;
  color: var(--color-brand);
}

.account-card__lead {
  margin: 0 0 1.1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.account-profile-form .btn-primary {
  margin-top: 0.35rem;
}

.account-save-btn {
  width: 100%;
}

@media (min-width: 480px) {
  .account-save-btn {
    width: auto;
    min-width: 11rem;
  }
}

.account-logout-form {
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px dashed rgba(227, 212, 197, 0.92);
}

.account-logout-btn {
  width: 100%;
}

@media (min-width: 480px) {
  .account-logout-btn {
    width: auto;
  }
}

.cx-empty-orders {
  text-align: center;
  padding: 2rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--color-border);
  background: rgba(255, 255, 255, 0.55);
}

.cx-empty-orders p {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text);
}

.cx-empty-orders p:last-of-type {
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
}

.cx-order-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cx-order-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.12rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(227, 212, 197, 0.95);
  background: rgba(255, 255, 255, 0.72);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.cx-order-card:hover {
  border-color: rgba(203, 184, 166, 0.95);
  box-shadow: 0 8px 22px rgba(58, 30, 15, 0.07);
}

@media (min-width: 540px) {
  .cx-order-card {
    grid-template-columns: 1fr auto;
  }
}

.cx-order-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
}

.cx-order-card__id {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--color-brand);
}

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

.cx-order-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.cx-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.26rem 0.52rem;
  border-radius: 999px;
}

.cx-pill--success {
  background: rgba(47, 125, 79, 0.14);
  color: #1e462e;
  border: 1px solid rgba(47, 125, 79, 0.28);
}

.cx-pill--warn {
  background: rgba(200, 121, 61, 0.14);
  color: var(--color-brand);
  border: 1px solid rgba(200, 121, 61, 0.32);
}

.cx-pill--danger {
  background: rgba(153, 27, 27, 0.1);
  color: #7f1d1d;
  border: 1px solid rgba(153, 27, 27, 0.22);
}

.cx-pill--muted {
  background: rgba(107, 86, 72, 0.08);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.cx-pill--ship {
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-brand);
  border: 1px solid rgba(227, 212, 197, 0.95);
}

.cx-order-card__aside {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

@media (min-width: 540px) {
  .cx-order-card__aside {
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
  }
}

.cx-order-card__total {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-brand);
}

.cx-order-card__btn {
  text-decoration: none;
}

/* === Category page === */
.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: linear-gradient(145deg, #fffefb, var(--color-card-alt));
  border-radius: 50%;
  margin-right: 0.35rem;
  color: var(--color-accent);
  vertical-align: middle;
  border: 1px solid rgba(227, 212, 197, 0.95);
  box-shadow: 0 3px 12px rgba(58, 30, 15, 0.07);
}

.empty-state {
  text-align: center;
  padding: clamp(2.75rem, 5vw, 4rem) 1.5rem;
  background: linear-gradient(165deg, #fffefb 0%, var(--color-card-alt) 50%, #faf6ef 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(227, 212, 197, 0.95);
  margin: 2rem 0;
  box-shadow: 0 8px 28px rgba(58, 30, 15, 0.06);
}

.empty-state--shop {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.empty-state h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.empty-state p {
  color: var(--color-text);
  opacity: 0.8;
  margin: 0;
}

.empty-state a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
}

/* === Bundles page === */
.product-badge--savings {
  background: linear-gradient(135deg, #2f7d4f, #1f5c39) !important;
  color: #fff !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: 0;
}

.bundles-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  background: transparent;
  color: var(--color-brand);
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition), transform 0.15s ease;
}

.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-1px);
}

.bundles-grid {
  margin-top: 2rem;
}

.bundles-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.bundles-info-card {
  background: var(--color-card-alt);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
}

.bundles-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.85rem;
}

.bundles-info-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-text);
}

.bundles-info-card ul li {
  margin-bottom: 0.45rem;
}

.bundles-info-card p {
  color: var(--color-text);
  margin: 0 0 1rem;
  opacity: 0.85;
}

/* === Bundle contents (product page tab) === */
.bundle-contents {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bundle-contents-intro {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text);
}

.bundle-contents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.bundle-content-card {
  display: flex;
  gap: 0.85rem;
  padding: 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.bundle-content-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  box-shadow: 0 8px 18px -10px rgba(0, 0, 0, 0.18);
}

.bundle-content-media {
  position: relative;
  flex-shrink: 0;
}

.bundle-content-media img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--color-card-alt);
}

.bundle-content-qty {
  position: absolute;
  bottom: -6px;
  right: -6px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

.bundle-content-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.bundle-content-name {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-brand);
}

.bundle-content-note {
  font-size: 0.78rem;
  color: var(--color-text);
  margin: 0;
  opacity: 0.78;
  line-height: 1.35;
}

.bundle-content-price {
  font-size: 0.78rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-top: auto;
}

/* === Build Your Bundle === */
.builder-hero {
  background: linear-gradient(180deg, #fffaf4 0%, var(--color-bg) 100%);
  padding: 2rem 1.5rem 1rem;
}

.builder-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.builder-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
  color: var(--color-brand);
}

.builder-title strong {
  color: var(--color-accent);
  font-weight: 700;
}

.builder-lead {
  font-size: 1.05rem;
  color: var(--color-text);
  max-width: 680px;
  margin: 0 auto;
}

.builder-section {
  padding: 2rem 0 4rem;
}

.builder-section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.builder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.builder-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.builder-card:hover {
  border-color: var(--color-taupe);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -10px rgba(0, 0, 0, 0.18);
}

.builder-card.is-selected {
  border-color: var(--color-accent);
  background: linear-gradient(180deg, #fffaf4 0%, #fff 70%);
  box-shadow: 0 10px 24px -14px rgba(193, 119, 73, 0.5);
}

.builder-card.is-locked {
  opacity: 0.5;
  pointer-events: none;
}

.builder-card-label {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  margin: 0;
}

.builder-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.builder-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--color-card-alt);
}

.builder-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.builder-card:hover .builder-card-media img {
  transform: scale(1.04);
}

.builder-card-check {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid var(--color-border);
  color: var(--color-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease;
}

.builder-card.is-selected .builder-card-check {
  opacity: 1;
  transform: scale(1);
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.builder-card-body {
  padding: 0.85rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.builder-card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-brand);
}

.builder-card-note {
  font-size: 0.83rem;
  color: var(--color-text);
  opacity: 0.78;
  margin: 0;
  line-height: 1.4;
}

.builder-card-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 0.3rem;
}

.builder-summary {
  position: sticky;
  bottom: 1rem;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 12px 34px -16px rgba(0, 0, 0, 0.25);
}

.builder-summary-left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.builder-summary-counter {
  font-size: 0.85rem;
  color: var(--color-text);
  opacity: 0.8;
}

.builder-summary-counter span[data-builder-count] {
  font-weight: 700;
  color: var(--color-accent);
}

.builder-summary-prices {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.builder-summary-strike {
  text-decoration: line-through;
  color: var(--color-text);
  opacity: 0.55;
  font-size: 0.95rem;
}

.builder-summary-total {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-brand);
}

.builder-summary-savings {
  background: #e8f5ee;
  color: #2f7d4f;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
}

.btn-builder-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn-builder-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-builder-submit.is-ready {
  animation: builderReady 1.6s ease-in-out infinite;
}

@keyframes builderReady {
  0%, 100% { box-shadow: 0 6px 16px -8px rgba(193, 119, 73, 0.35); }
  50% { box-shadow: 0 10px 26px -10px rgba(193, 119, 73, 0.6); }
}

.builder-faq {
  background: var(--color-card-alt);
  padding: 3rem 0;
}

.builder-faq-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 2rem;
}

.builder-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.builder-faq-grid h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--color-brand);
}

.builder-faq-grid p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .btn-builder-submit.is-ready {
    animation: none;
  }
}

/* === Gift Card buy === */
.giftcard-hero {
  background: linear-gradient(180deg, #fffaf4 0%, var(--color-bg) 100%);
  padding: 2.5rem 1.5rem 1.5rem;
  text-align: center;
}

.giftcard-hero-inner--simple {
  max-width: 760px;
  margin: 0 auto;
}

.giftcard-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--color-brand);
  margin: 0.4rem 0 0.85rem;
  line-height: 1.15;
}

.giftcard-lead {
  font-size: 1.05rem;
  color: var(--color-text);
  margin: 0 auto 1.25rem;
  max-width: 620px;
}

.giftcard-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.giftcard-perks--inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.25rem;
}

.giftcard-perks--inline li {
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text);
  font-size: 0.88rem;
}

.giftcard-perks--inline li svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.giftcard-perks li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--color-text);
}

.giftcard-perks:not(.giftcard-perks--inline) li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* === Two-column layout === */
.giftcard-section {
  padding: 2.5rem 1.5rem 4rem;
}

.giftcard-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.giftcard-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* === Step fieldsets === */
.gc-step {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.5rem 1.25rem 1.25rem;
  margin: 0;
  background: #fff;
  box-shadow: 0 4px 14px -10px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gc-step:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 8px 22px -14px rgba(193, 119, 73, 0.4);
}

.gc-step legend {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-brand);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.85rem;
}

.gc-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #a85f29 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-body);
}

.gc-step-label {
  font-size: 1.05rem;
}

/* === Preview aside === */
.giftcard-preview-aside {
  position: relative;
}

.giftcard-preview-sticky {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.giftcard-preview-title {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-taupe);
  font-weight: 600;
  margin: 0;
}

.giftcard-card--preview {
  margin: 0;
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}

.giftcard-card-value.is-bumped {
  animation: gcPreviewBump 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes gcPreviewBump {
  0% { transform: scale(1); }
  40% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.giftcard-preview-message {
  background: var(--color-card-alt);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  width: 100%;
  max-width: 320px;
  border: 1px dashed var(--color-border);
}

.giftcard-preview-message-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-taupe);
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.giftcard-preview-message blockquote {
  margin: 0;
  font-style: italic;
  color: var(--color-brand);
  font-size: 0.92rem;
  line-height: 1.4;
}

.giftcard-preview-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  max-width: 320px;
  text-align: left;
}

.giftcard-preview-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text);
}

.giftcard-preview-checklist svg {
  color: #2f7d4f;
  flex-shrink: 0;
}

/* === Submit button === */
.btn-gc-submit {
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  padding: 1rem 1.25rem;
}

.btn-gc-submit svg {
  flex-shrink: 0;
}

.giftcard-trust-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  justify-content: center;
}

.giftcard-trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--color-text);
  opacity: 0.85;
}

.giftcard-trust-row svg {
  color: var(--color-accent);
}

/* === Field hint inline === */
.field-hint-inline {
  font-weight: 400;
  color: var(--color-text);
  opacity: 0.65;
  font-size: 0.78rem;
  margin-left: 0.3rem;
}

@media (max-width: 920px) {
  .giftcard-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .giftcard-preview-aside {
    order: -1;
  }
  .giftcard-preview-sticky {
    position: static;
  }
  .giftcard-card--preview {
    transform: none;
  }
}

.giftcard-card {
  width: 320px;
  aspect-ratio: 1.586 / 1;
  background: linear-gradient(135deg, #3a1e0f 0%, #5a2f1a 50%, #c8783d 100%);
  border-radius: 16px;
  padding: 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.5);
  transform: rotate(-3deg);
  position: relative;
  overflow: hidden;
}

.giftcard-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  transform: rotate(35deg);
  pointer-events: none;
}

.giftcard-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.giftcard-card-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.giftcard-card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

.giftcard-card-mid {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.giftcard-card-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
}

.giftcard-card-recipient {
  font-size: 0.85rem;
  opacity: 0.85;
  font-style: italic;
}

.giftcard-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.giftcard-card-code {
  font-family: monospace;
  letter-spacing: 0.08em;
}

.giftcard-amount-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.6rem;
}

.giftcard-amount-option {
  display: block;
  cursor: pointer;
}

.giftcard-amount-option input {
  position: absolute;
  opacity: 0;
}

.giftcard-amount-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.95rem 0.85rem;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  font-weight: 600;
  background: #fff;
  color: var(--color-brand);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  position: relative;
  text-align: center;
}

.giftcard-amount-pill strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.giftcard-amount-pill small {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--color-text);
  opacity: 0.7;
}

.giftcard-amount-option:hover .giftcard-amount-pill {
  border-color: var(--color-taupe);
  transform: translateY(-1px);
}

.giftcard-amount-option input:checked + .giftcard-amount-pill {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, #fffaf4 0%, #fff 100%);
  color: var(--color-accent);
  box-shadow: 0 6px 16px -8px rgba(193, 119, 73, 0.4);
}

.giftcard-amount-option input:checked + .giftcard-amount-pill::after {
  content: '✓';
  position: absolute;
  top: 0.4rem;
  right: 0.55rem;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
  border-radius: 50%;
}

.giftcard-amount-option input:checked + .giftcard-amount-pill small {
  color: var(--color-accent);
  opacity: 0.85;
}

.giftcard-custom-wrap {
  margin-top: 0.85rem;
}

.giftcard-custom-input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.giftcard-custom-input input {
  flex: 1;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  font-size: 1rem;
}

.giftcard-custom-input span {
  font-weight: 600;
  color: var(--color-text);
}

.btn-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

/* === Gift Card apply (checkout) === */
.giftcard-apply {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  background: var(--color-card-alt);
  border-radius: 12px;
  border: 1px dashed var(--color-border);
}

.giftcard-apply-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.6rem;
  color: var(--color-brand);
  font-size: 0.95rem;
}

.giftcard-apply-input {
  display: flex;
  gap: 0.4rem;
  align-items: stretch;
}

.giftcard-apply-input input {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.giftcard-apply-input input:disabled {
  background: #f5e6d3;
  color: var(--color-text);
  opacity: 0.85;
  cursor: not-allowed;
}

.giftcard-apply-input .btn-ghost {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.giftcard-apply-msg {
  margin-top: 0.55rem;
  font-size: 0.85rem;
  color: var(--color-brand);
}

.giftcard-apply-msg.is-error {
  color: #b22b2b;
}

.checkout-line--giftcard {
  color: #2f7d4f;
  font-weight: 500;
}

.giftcard-balance-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--color-card-alt);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1rem 0;
}

.giftcard-balance-form input {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.giftcard-balance-result {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  background: #e8f5ee;
  color: #2f7d4f;
  border-radius: 8px;
  font-size: 0.95rem;
}

.giftcard-balance-result.is-error {
  background: #fbeaea;
  color: #b22b2b;
}

@media (max-width: 720px) {
  .giftcard-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .giftcard-perks {
    text-align: left;
    max-width: 360px;
    margin: 0 auto;
  }
  .giftcard-card {
    transform: none;
  }
}

/* === Promotions / Outlet === */
.promotions-discount {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #c8302a;
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.promotions-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.product-badge--discount {
  background: #c8302a !important;
  color: #fff !important;
  font-weight: 700 !important;
}

.product-badge--outlet {
  background: #5a2f1a !important;
  color: #fff !important;
}

/* === Product page: bundle bar + cross-sell === */
.product-bundle-bar {
  background: linear-gradient(135deg, #fffefb 0%, #faf6ef 55%, #fff 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  margin: 2rem 0 0;
  box-shadow: 0 10px 28px rgba(58, 30, 15, 0.055);
}

.product-bundle-bar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-bundle-bar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fde6cf, #f6cfa3);
  color: var(--color-brand);
  flex-shrink: 0;
}

.product-bundle-bar-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 200px;
}

.product-bundle-bar-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-brand);
}

.product-bundle-bar-text span {
  font-size: 0.9rem;
  color: var(--color-text);
}

.product-bundle-bar .btn-ghost {
  flex-shrink: 0;
}

.product-crosssell {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--color-card-alt);
  border-radius: 16px;
}

.product-crosssell-head {
  margin-bottom: 1.5rem;
}

.product-crosssell-head h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
}

.product-crosssell-head p {
  color: var(--color-text);
  opacity: 0.8;
  margin: 0;
}

.product-crosssell-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.cross-card {
  display: flex;
  gap: 1rem;
  padding: 0.85rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cross-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  box-shadow: 0 8px 18px -10px rgba(0, 0, 0, 0.18);
}

.cross-card-media {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-card-alt);
}

.cross-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cross-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  flex: 1;
}

.cross-card-name {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0;
}

.cross-card-name a {
  color: var(--color-brand);
  text-decoration: none;
}

.cross-card-name a:hover {
  color: var(--color-accent);
}

.cross-card-note {
  font-size: 0.8rem;
  color: var(--color-text);
  margin: 0;
  opacity: 0.78;
  line-height: 1.4;
}

.cross-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: auto;
}

.cross-card-price {
  font-weight: 600;
  color: var(--color-accent);
  font-size: 0.95rem;
}

.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
}

/* === Cart meta notes (bundle, personalize) === */
.cart-line-meta--note {
  font-size: 0.78rem !important;
  color: var(--color-accent) !important;
  margin: 0.1rem 0 0.25rem !important;
  font-weight: 500;
  background: #fffaf4;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  display: inline-block;
}

.cart-line-strike {
  text-decoration: line-through;
  opacity: 0.55;
  margin-right: 0.25rem;
}

/* === Personalize details on product page === */
.product-personalize {
  margin: 0.65rem 0 0.5rem;
  border: 1px dashed var(--color-border);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  background: #fffaf4;
  transition: background 0.2s ease;
}

.product-personalize[open] {
  background: #fff;
  border-color: var(--color-accent);
}

.product-personalize summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--color-brand);
}

.product-personalize summary::-webkit-details-marker {
  display: none;
}

.product-personalize-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.product-personalize-icon {
  font-size: 1.2rem;
}

.product-personalize-summary small {
  color: var(--color-text);
  opacity: 0.7;
  font-weight: 400;
  margin-left: 0.3rem;
  font-family: var(--font-body);
}

.product-personalize-body {
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-personalize-body p {
  font-size: 0.85rem;
  color: var(--color-text);
  margin: 0 0 0.3rem;
  opacity: 0.85;
}

.product-personalize-body label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-brand);
}

.product-personalize-body input {
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.95rem;
  width: 100%;
}

.product-personalize-body input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.field-hint {
  font-size: 0.78rem;
  color: var(--color-text);
  opacity: 0.75;
}

/* === Generated gift card list (order_thanks) === */
.generated-gc-list {
  list-style: none;
  margin: 0.6rem 0 0.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.generated-gc-list li {
  background: #fff;
  border: 1px dashed var(--color-accent);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
}

.generated-gc-list strong {
  font-family: monospace;
  color: var(--color-accent);
  letter-spacing: 0.06em;
}

/* === Gift card pending state (order_thanks for awaiting_transfer) === */
.gc-pending {
  background: linear-gradient(180deg, #fff8ec 0%, #fff 100%);
  border: 1px solid #f1d9a8;
}

.gc-pending-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fff2d6;
  color: #7a4a05;
  border: 1px solid #f1d9a8;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  margin-right: 0.5rem;
}

.gc-pending-steps {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.92rem;
  color: var(--color-foreground);
}

.gc-pending-steps li strong {
  display: inline-block;
  min-width: 1.6rem;
  color: var(--color-accent);
  font-weight: 700;
}

/* === Home: gift card banner === */
.home-gift-banner {
  background: linear-gradient(135deg, #3a1e0f 0%, #5a2f1a 50%, #c8783d 100%);
  color: #fff;
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.home-gift-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.home-gift-banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.home-gift-banner-text .shop-eyebrow {
  color: #f6cfa3;
}

.home-gift-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 600;
  margin: 0.4rem 0 0.85rem;
  line-height: 1.2;
}

.home-gift-sub {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0 0 1.5rem;
  max-width: 520px;
}

.home-gift-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.home-gift-actions .btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.home-gift-actions .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.home-gift-banner-visual {
  display: flex;
  justify-content: center;
}

.home-gift-banner-card {
  transform: rotate(-5deg);
  background: linear-gradient(135deg, #fffaf4 0%, #f6cfa3 100%);
  color: var(--color-brand);
  box-shadow: 0 28px 60px -20px rgba(0, 0, 0, 0.5);
}

.home-gift-banner-card .giftcard-card-tag,
.home-gift-banner-card .giftcard-card-recipient,
.home-gift-banner-card .giftcard-card-code,
.home-gift-banner-card .giftcard-card-exp {
  color: var(--color-brand);
}

.home-gift-banner-card::after {
  display: none;
}

@media (max-width: 720px) {
  .home-gift-banner-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .home-gift-actions {
    justify-content: center;
  }
}

/* === Home: sticky bundle CTA === */
.home-bundle-sticky {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%) translateY(120%);
  z-index: 90;
  max-width: calc(100% - 2rem);
  width: max-content;
  background: #fff;
  border: 1.5px solid var(--color-accent);
  border-radius: 999px;
  box-shadow: 0 18px 36px -18px rgba(0, 0, 0, 0.35);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-bundle-sticky.is-visible {
  transform: translateX(-50%) translateY(0);
}

.home-bundle-sticky[hidden] {
  display: none !important;
}

.home-bundle-sticky-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.7rem 0.5rem 1.1rem;
}

.home-bundle-sticky-icon {
  font-size: 1.1rem;
}

.home-bundle-sticky-text {
  font-size: 0.88rem;
  color: var(--color-brand);
}

.home-bundle-sticky-close {
  width: 26px;
  height: 26px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 1.4rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.home-bundle-sticky-close:hover {
  background: var(--color-card-alt);
}

@media (max-width: 600px) {
  .home-bundle-sticky-inner {
    padding: 0.45rem 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .home-bundle-sticky-text {
    font-size: 0.78rem;
    flex: 1 0 100%;
    text-align: center;
    margin-bottom: 0.2rem;
  }
}

/* === Cart drawer cross-sell === */
.cart-cross {
  margin: 0.85rem 1rem;
  padding: 0.85rem 0.85rem;
  background: linear-gradient(180deg, #fffaf4 0%, #fff 100%);
  border: 1px dashed var(--color-accent);
  border-radius: 12px;
}

.cart-cross-title {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-taupe);
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.cart-cross-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-cross-img {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-card-alt);
}

.cart-cross-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-cross-body {
  flex: 1;
  min-width: 0;
}

.cart-cross-name {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-brand);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-cross-price {
  font-size: 0.82rem;
  color: var(--color-accent);
  font-weight: 600;
  margin: 0.15rem 0 0;
}

.cart-cross-form button {
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 1.1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* === Product gallery (storefront) === */
.product-gallery {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}
@media (max-width: 720px) {
  .product-gallery { grid-template-columns: 1fr; grid-template-rows: auto auto; gap: 0.85rem; }
}
.product-gallery-main {
  position: relative;
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  margin: 0;
  background: #faf7f4;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 14px 42px rgba(58, 30, 15, 0.09);
}
@media (max-width: 720px) {
  .product-gallery-main { grid-column: 1; grid-row: 1; }
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  box-sizing: border-box;
  padding: clamp(0.65rem, 2.5vw, 1.15rem);
  display: block;
  transition: opacity 0.25s ease;
}
.product-gallery-main.is-swap img { opacity: 0.5; }
.product-gallery-zoom-hint {
  position: absolute;
  bottom: 0.85rem; right: 0.85rem;
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  background: rgba(58, 30, 15, 0.72);
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(6px);
}
.product-gallery-main:hover .product-gallery-zoom-hint,
.product-gallery-main:focus-visible .product-gallery-zoom-hint {
  opacity: 1; transform: translateY(0);
}
@media (hover: none) {
  .product-gallery-zoom-hint { opacity: 1; transform: none; }
}

.product-gallery-thumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: visible;
  scrollbar-width: thin;
  scrollbar-color: rgba(58, 30, 15, 0.22) transparent;
}
@media (max-width: 720px) {
  .product-gallery-thumbs {
    grid-column: 1; grid-row: 2;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
}
.product-gallery-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: #faf7f4;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  scroll-snap-align: start;
}
.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 0.2rem;
  box-sizing: border-box;
}
.product-gallery-thumb:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(58, 30, 15, 0.08);
}
.product-gallery-thumb.is-active {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent), 0 4px 14px rgba(200, 121, 61, 0.18);
}
@media (max-width: 720px) {
  .product-gallery-thumbs li { flex: 0 0 72px; }
}

/* === Product lightbox === */
.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 12, 6, 0.93);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(0.6rem, 3vw, 2rem);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.product-lightbox.is-open { display: flex; opacity: 1; }
.product-lightbox-stage {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  cursor: zoom-in;
  overflow: hidden;
}
.product-lightbox-stage.is-zoomed { cursor: zoom-out; }
.product-lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), opacity 0.18s ease;
  transform-origin: center center;
}
.product-lightbox-stage.is-zoomed .product-lightbox-img {
  transform: scale(2);
  cursor: zoom-out;
}
.product-lightbox.is-swap .product-lightbox-img { opacity: 0.4; }
.product-lightbox-close,
.product-lightbox-nav {
  position: absolute;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.4);
  color: #fff;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
  z-index: 2;
}
.product-lightbox-close:hover,
.product-lightbox-nav:hover { background: rgba(0,0,0,0.7); transform: scale(1.05); }
.product-lightbox-close { top: 1rem; right: 1rem; }
.product-lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.product-lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.product-lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.product-lightbox-next:hover { transform: translateY(-50%) scale(1.05); }
.product-lightbox-counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

@media (max-width: 540px) {
  .product-lightbox-prev { left: 0.4rem; }
  .product-lightbox-next { right: 0.4rem; }
  .product-lightbox-close { top: 0.5rem; right: 0.5rem; }
}

/* Lock body scroll when lightbox open */
body.has-lightbox-open { overflow: hidden; }

/* ============================================================
   MOBILE DENSITY PASS — reduce paddinguri/dimensiuni
   ============================================================ */

:root {
  --header-h: 4rem;
}

/* Hero mai compact pe desktop */
.hero-inner {
  padding: clamp(2rem, 6vw, 3.75rem) clamp(1rem, 3vw, 1.5rem)
    clamp(2.5rem, 7vw, 4.5rem);
  min-height: min(72vh, 560px);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.hero h1 {
  font-size: clamp(1.95rem, 4vw, 2.85rem);
  line-height: 1.14;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  margin-bottom: 1.5rem;
}

.hero-badge {
  margin-bottom: 0.85rem;
}

/* Section bands — reducere padding */
.section-block {
  padding: clamp(1.75rem, 5vw, 2.75rem) 1.25rem clamp(1.5rem, 4vw, 2rem);
}

.shop-section {
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1rem, 3vw, 1.5rem)
    clamp(2rem, 5vw, 3.5rem);
}

.mood-section {
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 3vw, 1.5rem);
}

.mood-card {
  padding: 1.5rem 1.35rem;
}

.mood-card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 0.85rem;
}

.mood-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.mood-card p {
  margin-bottom: 0.85rem;
}

/* Promo banner */
.promo-banner {
  margin: clamp(1.25rem, 3vw, 2rem) auto;
}

.promo-banner-inner {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

/* Newsletter — eliminăm dublarea de padding */
.newsletter-section {
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.5rem);
}

.newsletter-inner {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  gap: 1.5rem;
}

/* Footer */
.footer-grid-pro {
  padding: 2rem 1.25rem 1.5rem;
  gap: 1.75rem 1.5rem;
}

/* Home gift banner */
.home-gift-banner {
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 1.5rem);
}

.home-gift-banner-inner {
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

/* Product cards — desktop reducere subtilă */
.product-card-body {
  padding: 0.95rem 1rem 1rem;
}

.product-title {
  font-size: 1.18rem;
  line-height: 1.22;
}

.product-note {
  font-size: 0.76rem;
  margin-bottom: 0.55rem;
}

.product-footer {
  gap: 0.55rem;
  padding-top: 0.7rem;
}

.product-price {
  font-size: 1.05rem;
}

.btn-add {
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
}

/* Quick-links din header — ascunse pe ecrane medii/mici */
@media (max-width: 1024px) {
  .header-quick-links {
    display: none !important;
  }
}

/* Tablet reducere uniformă */
@media (max-width: 760px) {
  .section-block {
    padding: clamp(1.25rem, 4vw, 2rem) 1rem clamp(1rem, 3vw, 1.5rem);
  }

  .shop-section {
    padding: clamp(1.25rem, 3.5vw, 2.25rem) clamp(0.85rem, 3vw, 1.25rem)
      clamp(1.5rem, 4vw, 2.5rem);
  }

  .mood-section {
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(0.85rem, 3vw, 1.25rem);
  }

  .home-gift-banner {
    padding: clamp(1.5rem, 4vw, 2.25rem) clamp(0.85rem, 3vw, 1.25rem);
  }

  .newsletter-section {
    padding: clamp(1rem, 3vw, 1.75rem) clamp(0.85rem, 3vw, 1.25rem);
  }

  .newsletter-inner {
    padding: clamp(1.25rem, 4vw, 1.75rem);
  }

  .footer-grid-pro {
    padding: 1.5rem 1rem 1.25rem;
    gap: 1.25rem 1rem;
  }
}

/* Mobil — densitate maximă, grid produse 2 coloane, hero compact */
@media (max-width: 600px) {
  .hero-inner {
    padding: clamp(1.25rem, 4vw, 2rem) 1rem clamp(1.5rem, 5vw, 2.5rem);
    gap: 1.25rem;
  }

  .hero-visual {
    max-width: min(100%, 320px);
    margin-inline: auto;
  }

  .hero-frame img {
    aspect-ratio: 5 / 6;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    margin-bottom: 0.7rem;
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
  }

  .hero-badge {
    margin-bottom: 0.6rem;
    font-size: 0.7rem;
  }

  .hero-actions .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.875rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .product-card {
    border-radius: var(--radius);
  }

  .product-card-body {
    padding: 0.6rem 0.65rem 0.7rem;
  }

  .product-title {
    font-size: 0.96rem;
    line-height: 1.22;
    margin-bottom: 0.3rem;
  }

  .product-note {
    font-size: 0.72rem;
    line-height: 1.4;
    margin-bottom: 0.4rem;
    /* limităm la 2 rânduri pe mobil ca să nu creştem cardul exagerat */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-footer {
    gap: 0.5rem;
    padding-top: 0.5rem;
    flex-direction: column;
    align-items: stretch;
  }

  .product-prices {
    gap: 0.3rem;
    justify-content: flex-start;
  }

  .product-price {
    font-size: 0.95rem;
  }

  .product-price-old {
    font-size: 0.78rem;
  }

  /* Pe mobil: fav button + ATC pe aceeași linie, compacte. */
  .product-card-actions {
    display: flex;
    align-items: stretch;
    gap: 0.35rem;
    width: 100%;
  }

  .product-card-form {
    flex: 1;
    min-width: 0;
  }

  /* Ascundem fav-btn-ul absolute peste imagine pe mobil — îl avem în footer */
  .fav-btn--card {
    display: none;
  }

  .fav-btn--inline {
    display: inline-flex;
    width: 2.1rem;
    height: 2.1rem;
    flex-shrink: 0;
  }

  .fav-btn--inline .fav-icon-outline,
  .fav-btn--inline .fav-icon-fill {
    width: 15px;
    height: 15px;
  }

  .btn-add {
    width: 100%;
    padding: 0.35rem 0.45rem;
    font-size: 0.72rem;
    gap: 0.3rem;
    box-shadow: none;
    min-height: 2.1rem;
    border-radius: 999px;
    letter-spacing: 0;
    min-width: 0;
    overflow: hidden;
  }

  .btn-add .btn-add-icon {
    width: 13px;
    height: 13px;
  }

  .btn-add .btn-add-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Pe mobil ascundem „ în coș" — păstrăm doar „Adaugă" + icon */
  .btn-add .btn-add-text-suffix {
    display: none;
  }

  .product-badges {
    top: 0.5rem;
    left: 0.5rem;
    gap: 0.25rem;
  }

  .product-badge {
    font-size: 0.52rem;
    padding: 0.16rem 0.38rem;
  }

  .product-tags {
    margin-bottom: 0.55rem;
    gap: 0.25rem;
  }

  .product-tag {
    font-size: 0.46rem;
    padding: 0.08rem 0.28rem;
  }

  .section-block h2,
  .shop-title {
    font-size: clamp(1.35rem, 5vw, 1.65rem);
  }

  .shop-head {
    margin: 0 auto 1.25rem;
  }
}

/* Smartphone foarte mic — păstrăm 2 coloane dar mai îngust */
@media (max-width: 360px) {
  .products-grid {
    gap: 0.5rem;
  }

  .product-card-body {
    padding: 0.5rem 0.55rem 0.6rem;
  }

  .product-title {
    font-size: 0.9rem;
  }
}

/* ============================================================
   MOBILE BOTTOM NAV — bară fixă jos cu 5 itemi (≤900px)
   ============================================================ */
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 185;
  display: none;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  padding: 0.25rem 0.35rem;
  padding-bottom: calc(0.25rem + env(safe-area-inset-bottom, 0));
  background: rgba(255, 252, 247, 0.96);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  border-top: 1px solid rgba(227, 212, 197, 0.85);
  box-shadow: 0 -8px 24px rgba(58, 30, 15, 0.08);
  transform: translateY(0);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: auto;
}

@media (max-width: 900px) {
  .bottom-nav {
    display: grid;
  }

  body.has-bottom-nav {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0));
  }
}

.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 56px;
  padding: 0.4rem 0.25rem 0.3rem;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.bottom-nav__item:hover,
.bottom-nav__item:focus-visible {
  color: var(--color-brand);
}

.bottom-nav__item:active {
  transform: scale(0.94);
}

.bottom-nav__item.is-active {
  color: var(--color-accent);
}

.bottom-nav__item.is-active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.bottom-nav__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: currentColor;
}

.bottom-nav__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.bottom-nav__label {
  display: block;
  font-size: 0.62rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.bottom-nav__badge {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-btn-text);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  box-shadow: 0 0 0 2px rgba(255, 252, 247, 0.96);
}

.bottom-nav__badge[hidden] {
  display: none;
}

/* Coexistență cu drawer & nav mobil deschis */
body.cart-open .bottom-nav,
body.nav-open .bottom-nav,
body.has-lightbox-open .bottom-nav {
  transform: translateY(110%);
}

/* Sticky-atc trebuie să stea deasupra barei pe mobil */
@media (max-width: 900px) {
  body.has-bottom-nav .toast-container {
    bottom: calc(60px + env(safe-area-inset-bottom, 0) + 0.6rem);
  }

  body.has-bottom-nav .home-bundle-sticky {
    display: none !important;
  }

  /* Pe mobil avem deja Cart, Favorite și Cont în bara de jos.
     Ascundem duplicatele din topbar — păstrăm doar logo + hamburger. */
  body.has-bottom-nav .header-actions .cart-trigger,
  body.has-bottom-nav .header-actions .fav-trigger,
  body.has-bottom-nav .header-actions .account-trigger,
  body.has-bottom-nav .header-actions .account-dropdown {
    display: none !important;
  }
}

@media (max-width: 760px) {
  body.has-bottom-nav .sticky-atc {
    bottom: calc(60px + env(safe-area-inset-bottom, 0));
    box-shadow: 0 -6px 18px rgba(58, 30, 15, 0.08);
  }

  body.has-bottom-nav main.page-product {
    padding-bottom: calc(5rem + 60px);
  }
}

/* ============================================================
   HOME MOBILE-FIRST REFINEMENT — drawer, headere, secțiuni
   ============================================================ */

/* ---------- Drawer head — vizibil doar pe mobil ---------- */
.nav-drawer-head {
  display: none;
}

/* ---------- Drawer mobil (≤900px) — slim & elegant ---------- */
@media (max-width: 900px) {
  /* CRITIC: backdrop-filter pe site-header creează un containing block
     pentru descendenți position: fixed. Pe mobil scoatem efectul ca
     drawer-ul (.nav-center) să-și raporteze top/bottom la viewport, nu la header. */
  .site-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-center {
    position: fixed;
    inset: 0 0 0 auto;
    left: auto;
    width: min(100%, 320px);
    max-width: 100vw;
    z-index: 240;
    background: var(--color-bg);
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-card-alt) 100%);
    box-shadow: -12px 0 40px rgba(58, 30, 15, 0.18);
    transform: translateX(100%);
    transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 0 0 calc(1.25rem + env(safe-area-inset-bottom, 0));
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 1rem 1rem 1rem 1.4rem;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(255, 252, 247, 0.96) 100%);
    border-bottom: 1px solid rgba(227, 212, 197, 0.65);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
  }

  .nav-drawer-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--color-brand);
  }

  .nav-drawer-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(200, 121, 61, 0.18);
  }

  .nav-drawer-close {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    background: var(--color-card-alt);
    color: var(--color-brand);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-drawer-close:hover,
  .nav-drawer-close:focus-visible {
    background: var(--color-card);
    border-color: var(--color-accent);
    color: var(--color-accent);
  }

  .nav-drawer-close:active {
    transform: scale(0.94);
  }

  /* CRITIC: nav-main moștenește justify-content: center de la desktop care
     centra vertical itemii când flex:1. Resetăm și adăugăm padding-top mic. */
  .nav-main {
    flex: 1;
    justify-content: flex-start;
    align-items: stretch;
    padding-top: 0.4rem;
  }

  .nav-link {
    padding: 0.95rem 1.4rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-brand);
    border-bottom: 1px solid rgba(227, 212, 197, 0.45);
    justify-content: flex-start;
    gap: 0.7rem;
    transition: background 0.2s ease, color 0.2s ease, padding 0.2s ease;
  }

  .nav-link:hover {
    background: rgba(255, 252, 247, 0.7);
    padding-left: 1.55rem;
    color: var(--color-accent);
  }

  .nav-link.is-active {
    background: linear-gradient(90deg, rgba(200, 121, 61, 0.08) 0%, rgba(255, 252, 247, 0.4) 100%);
    border-left: 3px solid var(--color-accent);
    padding-left: 1.15rem;
    color: var(--color-accent);
  }

  /* Promoții — highlight item: punctul orange și textul accent */
  .nav-link--highlight {
    color: var(--color-accent);
  }

  .nav-link--highlight::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
    margin-right: 0.1rem;
    box-shadow: 0 0 0 3px rgba(200, 121, 61, 0.18);
  }

  .nav-mobile-toggle {
    width: 48px;
    height: 48px;
    color: var(--color-text);
    transition: color 0.2s ease;
  }

  .nav-item.has-mega:hover .nav-mobile-toggle,
  .nav-item.has-mega.is-mobile-open .nav-mobile-toggle {
    color: var(--color-accent);
  }

  .nav-mobile-toggle svg {
    transition: transform 0.28s ease;
  }

  .nav-item.has-mega.is-mobile-open .nav-mobile-toggle {
    transform: none;
  }

  .nav-item.has-mega.is-mobile-open .nav-mobile-toggle svg {
    transform: rotate(180deg);
  }

  /* Submeniu — accordion stilizat */
  .nav-item.has-mega .mega-menu {
    background: rgba(248, 240, 230, 0.55);
    border-top: 1px solid rgba(227, 212, 197, 0.45);
    border-bottom: 1px solid rgba(227, 212, 197, 0.45);
  }

  .mega-menu-inner {
    padding: 0.95rem 1.4rem 1.1rem 2.3rem;
    gap: 1rem;
  }

  .mega-col-title {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
  }

  .mega-link {
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(227, 212, 197, 0.5);
  }

  .mega-link:last-child {
    border-bottom: 0;
  }

  .mega-link-label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-brand);
  }

  .mega-link-sub {
    font-size: 0.74rem;
    color: var(--color-text);
    opacity: 0.85;
  }

  /* Divider cu eticheta „Mai multe" */
  .nav-mobile-divider {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: auto !important;
    margin: 0.85rem 1.4rem 0.5rem;
    padding: 0;
    border-bottom: 0;
    color: var(--color-accent);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .nav-mobile-divider::before,
  .nav-mobile-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(227, 212, 197, 0.55);
  }

  .nav-mobile-divider span {
    padding: 0 0.7rem;
    line-height: 1;
  }

  .nav-mobile-extra .nav-link--muted {
    font-size: 0.86rem;
    padding: 0.65rem 1.4rem;
    color: var(--color-text);
    gap: 0.75rem;
    border-bottom: 1px solid rgba(227, 212, 197, 0.3);
    justify-content: flex-start;
    font-weight: 500;
    transition: color 0.2s ease, background 0.2s ease;
  }

  .nav-mobile-extra:last-child .nav-link--muted {
    border-bottom: 0;
  }

  .nav-mobile-extra .nav-link--muted:hover {
    color: var(--color-accent);
    background: rgba(255, 252, 247, 0.5);
    padding-left: 1.55rem;
  }

  .nav-mobile-extra .nav-link--muted svg {
    color: var(--color-accent);
    flex-shrink: 0;
    width: 17px;
    height: 17px;
  }

  /* Spațiu jos cu un mic CTA-look subtil */
  .nav-mobile-extra:last-child .nav-link--muted {
    color: var(--color-brand);
  }

  /* Overlay pe deasupra header-ului dar sub drawer */
  .nav-overlay {
    z-index: 230;
    background: rgba(58, 30, 15, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  /* Când drawer-ul e deschis, coborâm topbar-ul ca să nu fie deasupra drawer-ului */
  body.nav-open .topbar {
    z-index: 1;
  }

  body.nav-open .site-header {
    z-index: 240;
  }
}

/* ---------- Header compact ≤600px ---------- */
@media (max-width: 600px) {
  .header-inner {
    padding: 0.5rem 0.85rem;
    gap: 0.5rem;
  }

  .logo-img {
    height: 32px;
    max-width: min(132px, 50vw);
  }

  .header-actions {
    gap: 0.25rem;
  }

  .cart-trigger,
  .fav-trigger,
  .account-trigger,
  .menu-toggle {
    width: 2.4rem;
    height: 2.4rem;
  }

  .topbar-inner {
    padding: 0.4rem 0.85rem;
  }

  .topbar-msg {
    font-size: 0.72rem;
  }
}

/* ============================================================
   ≤600px — Mobile-first overrides pe secțiuni home
   ============================================================ */
@media (max-width: 600px) {
  /* ---- Section headers (mood, gift, why, testi, faq, etc.) ---- */
  .shop-head {
    margin-bottom: 1.15rem;
    padding: 0 0.25rem;
  }

  .shop-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.35rem;
  }

  .shop-title {
    font-size: clamp(1.35rem, 5vw, 1.65rem);
    line-height: 1.2;
    margin-bottom: 0.45rem;
  }

  .shop-lead {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  /* ---- Trust strip ---- */
  .trust-strip-pro {
    padding: 0.85rem 0.75rem;
  }

  .trust-strip-pro-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .trust-pill {
    padding: 0.5rem 0.6rem;
    gap: 0.5rem;
  }

  .trust-pill svg {
    width: 18px;
    height: 18px;
  }

  .trust-pill strong {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .trust-pill span {
    font-size: 0.66rem;
    line-height: 1.25;
  }

  /* ---- Hero auxiliar ---- */
  .hero-trust-mini {
    gap: 0.6rem;
    margin-top: 0.85rem;
  }

  .hero-trust-mini li {
    font-size: 0.72rem;
    gap: 0.3rem;
  }

  .hero-trust-mini svg {
    width: 12px;
    height: 12px;
  }

  .hero-social-proof {
    margin-top: 0.65rem;
    font-size: 0.78rem;
    gap: 0.4rem;
  }

  /* ---- Urgency banner / Cutoff expediere ---- */
  .urgency-banner {
    padding: 1rem 0.95rem;
  }

  .urgency-banner-inner {
    gap: 0.65rem;
    text-align: center;
  }

  .urgency-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .urgency-title {
    font-size: 1.02rem;
    line-height: 1.35;
    margin: 0.2rem 0 0.35rem;
  }

  .urgency-countdown {
    display: inline-block;
    margin: 0.25rem 0;
    font-size: 1em;
    padding: 0.15rem 0.55rem;
  }

  .urgency-sub {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  /* CTA „Profit acum" — pe mobil e redundant cu countdown-ul.
     Ascundem complet ca să aerisim banner-ul. */
  .urgency-banner-inner .btn,
  .urgency-banner-inner .btn-pulse {
    display: none !important;
  }

  /* ---- Home gift banner — ascuns complet pe mobil
     (rămâne disponibil în meniu / pagina dedicată / footer) ---- */
  .home-gift-banner {
    display: none !important;
  }

  /* ---- Promo banner / Livrare gratuită ---- */
  .promo-banner {
    margin: 0.5rem auto;
    padding: 0 0.85rem;
  }

  .promo-banner-inner {
    grid-template-columns: 1fr;
    padding: 1.35rem 1.1rem;
    gap: 0.7rem;
  }

  .promo-banner-eyebrow {
    font-size: 0.65rem;
    margin-bottom: 0.3rem;
  }

  .promo-banner-title {
    font-size: 1.18rem;
    line-height: 1.25;
    margin-bottom: 0.55rem;
  }

  .promo-banner-sub {
    font-size: 0.85rem;
    line-height: 1.45;
    margin-bottom: 1rem;
  }

  .promo-banner-inner .btn-primary {
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
  }

  .promo-banner-visual {
    display: none;
  }

  /* ---- Mood cards / Pentru orice atmosferă ---- */
  .mood-section {
    padding: 1.5rem 0.85rem 1.75rem;
  }

  .mood-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .mood-card {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.85rem;
    row-gap: 0.1rem;
    align-items: center;
    padding: 0.85rem 1rem;
    text-align: left;
  }

  .mood-card::before {
    display: none;
  }

  .mood-card-icon {
    grid-row: 1 / span 2;
    grid-column: 1;
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    align-self: center;
  }

  .mood-card-icon svg {
    width: 22px;
    height: 22px;
  }

  .mood-card h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 0.98rem;
    margin: 0;
    line-height: 1.2;
  }

  .mood-card p {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.78rem;
    line-height: 1.35;
    margin: 0;
    flex: none;
  }

  .mood-card-link {
    display: none;
  }

  /* ---- Gift cards / Surprinde elegant ---- */
  .gift-section {
    padding: 1.5rem 0.85rem 2rem;
  }

  .gift-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-top: 0.85rem;
  }

  .gift-card {
    padding: 0.95rem 1rem 1rem;
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    column-gap: 0.85rem;
    row-gap: 0.15rem;
    text-align: left;
  }

  .gift-card-icon {
    grid-row: 1 / span 2;
    grid-column: 1;
    width: 44px;
    height: 44px;
    margin: 0;
    align-self: center;
  }

  .gift-card-icon svg {
    width: 22px;
    height: 22px;
  }

  .gift-card h3 {
    grid-column: 2;
    font-size: 0.98rem;
    margin: 0 0 0.15rem;
    line-height: 1.2;
  }

  .gift-card p {
    grid-column: 2;
    font-size: 0.78rem;
    line-height: 1.4;
    margin: 0;
  }

  .gift-card-link {
    grid-row: 1 / span 2;
    grid-column: 3;
    align-self: center;
    font-size: 0.72rem;
    gap: 0.2rem;
    white-space: nowrap;
  }

  /* ---- Why DOMOL / Calitatea se simte ---- */
  .why-section {
    padding: 1.75rem 0.85rem 2rem;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .why-card {
    padding: 0.95rem 0.7rem 1rem;
    border-radius: var(--radius);
  }

  .why-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.5rem;
  }

  .why-icon svg {
    width: 22px;
    height: 22px;
  }

  .why-card h3 {
    font-size: 0.92rem;
    margin: 0 0 0.25rem;
    line-height: 1.2;
  }

  .why-card p {
    font-size: 0.74rem;
    line-height: 1.4;
  }

  /* ---- Testimonials / Recenzii — carousel scroll-snap ---- */
  .testimonials-section {
    padding: 1.5rem 0 2rem;
  }

  .testimonials-section .shop-head {
    padding: 0 0.85rem;
  }

  .testi-grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 0.85rem;
    gap: 0.7rem;
    padding: 0.25rem 0.85rem 0.9rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testi-grid::-webkit-scrollbar {
    display: none;
  }

  .testi-grid::after {
    content: "";
    flex: 0 0 0.1rem;
  }

  .testi-card {
    flex: 0 0 86vw;
    max-width: 86vw;
    scroll-snap-align: start;
    padding: 1rem 1.05rem 1.1rem;
    border-radius: var(--radius);
  }

  .testi-card .rating-stars {
    margin-bottom: 0.55rem;
  }

  .testi-title {
    font-size: 0.98rem;
    margin: 0 0 0.4rem;
    line-height: 1.25;
  }

  .testi-body {
    font-size: 0.84rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .testi-foot {
    margin-top: 0.7rem;
    gap: 0.55rem;
  }

  /* ---- Newsletter ---- */
  .newsletter-section {
    padding: 1rem 0.85rem 1.5rem;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    padding: 1.2rem 1rem 1.3rem;
    gap: 0.85rem;
  }

  .newsletter-inner::before {
    display: none;
  }

  .newsletter-eyebrow {
    font-size: 0.65rem;
    margin-bottom: 0.3rem;
  }

  .newsletter-text h2 {
    font-size: 1.2rem;
    line-height: 1.25;
    margin-bottom: 0.4rem;
  }

  .newsletter-text p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .newsletter-form input[type="email"] {
    padding: 0.7rem 0.85rem;
    font-size: 0.92rem;
    margin-bottom: 0.55rem;
  }

  .newsletter-form .btn {
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
  }

  .newsletter-note {
    font-size: 0.72rem;
    margin-top: 0.65rem;
  }

  /* ---- FAQ — minor ---- */
  .faq-section {
    padding: 1.5rem 0.85rem 1.75rem;
  }

  .faq-list {
    margin-top: 0.85rem;
  }

  .faq-item {
    padding: 0.55rem 0;
  }

  .faq-item summary {
    font-size: 0.96rem;
    padding: 0.35rem 0;
  }
}

/* === Product variations (color circles + scent chips) === */
.product-buy-card.checkout-panel { overflow: visible; }
.product-buy-card .checkout-panel__accent { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }

.product-variations {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  margin: 0 0 1.1rem;
}

.variation-group {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.variation-legend {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-brand);
  margin-bottom: 0.55rem;
  padding: 0;
}

.variation-legend-icon { color: var(--color-accent); flex: 0 0 auto; }

.variation-selected {
  font-weight: 500;
  color: #9b8677;
  font-size: 0.85rem;
  transition: color var(--transition);
}

.variation-selected.is-chosen {
  color: var(--color-accent);
  font-weight: 600;
}

.variation-group--error {
  animation: variation-shake 0.32s ease;
}

.variation-group--error .variation-swatches,
.variation-group--error .variation-chips {
  outline: 2px solid rgba(192, 57, 43, 0.55);
  outline-offset: 6px;
  border-radius: 10px;
}

@keyframes variation-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* --- Color circles --- */
.variation-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.variation-swatch {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.variation-swatch input,
.variation-chip input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.variation-swatch-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--swatch, #ccc);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(58, 30, 15, 0.18);
  transition: transform var(--transition), box-shadow var(--transition);
}

.variation-swatch-check {
  opacity: 0;
  transform: scale(0.4);
  transition: opacity var(--transition), transform var(--transition);
  color: #fff;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35));
}

.variation-swatch--light .variation-swatch-check {
  color: #3a1e0f;
  filter: none;
}

.variation-swatch:hover .variation-swatch-dot { transform: scale(1.12); }

.variation-swatch input:focus-visible + .variation-swatch-dot {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.variation-swatch input:checked + .variation-swatch-dot {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1),
    0 0 0 2px var(--color-bg),
    0 0 0 4.5px var(--color-accent);
}

.variation-swatch input:checked + .variation-swatch-dot .variation-swatch-check {
  opacity: 1;
  transform: scale(1);
}

/* --- Scent chips --- */
.variation-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.variation-chip {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.variation-chip-face {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--color-taupe);
  background: #fff;
  font-size: 0.85rem;
  color: var(--color-text);
  line-height: 1.2;
  transition: border-color var(--transition), background var(--transition),
    color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.variation-chip:hover .variation-chip-face {
  border-color: var(--color-accent);
  color: var(--color-brand);
  box-shadow: 0 2px 10px rgba(200, 121, 61, 0.18);
  transform: translateY(-1px);
}

.variation-chip input:checked + .variation-chip-face {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 3px 12px rgba(58, 30, 15, 0.28);
}

.variation-chip input:focus-visible + .variation-chip-face {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.variation-scent-desc {
  margin: 0.55rem 0 0;
  font-size: 0.83rem;
  color: #8a7161;
  font-style: italic;
  line-height: 1.45;
}

/* --- Hover tooltips --- */
.variation-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--color-brand);
  color: #fff;
  border-radius: 9px;
  padding: 0.4rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 40;
  box-shadow: 0 8px 22px rgba(58, 30, 15, 0.28);
}

.variation-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--color-brand);
}

.variation-swatch:hover .variation-tooltip,
.variation-swatch:focus-within .variation-tooltip,
.variation-chip:hover .variation-tooltip,
.variation-chip:focus-within .variation-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.variation-tooltip--chip {
  white-space: normal;
  width: 235px;
  text-align: left;
  padding: 0.6rem 0.75rem;
}

.variation-tooltip-title {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 0.25rem;
}

.variation-tooltip-mood {
  display: inline-block;
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
}

.variation-tooltip-desc {
  display: block;
  font-size: 0.77rem;
  line-height: 1.45;
  opacity: 0.92;
}

@media (hover: none) {
  .variation-tooltip { display: none; }
}

/* --- Variation summary on cart / checkout lines --- */
.cart-line-meta--variation {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--color-text);
  margin: 0.15rem 0;
}

.cart-line-variation {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.cart-line-color-dot,
.checkout-line-color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--swatch, #ccc);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
  display: inline-block;
  flex: 0 0 auto;
}

.checkout-line-extra--variation {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}

/* ============================================================
   DOMOL premium homepage refresh
   ============================================================ */
:root {
  --color-bg: #fbf6ef;
  --color-card: #f4e7d6;
  --color-card-alt: #fffdf9;
  --color-brand: #3a1e10;
  --color-accent: #c47a3a;
  --color-text: #2a1a12;
  --color-text-muted: #7c6253;
  --color-border: rgba(58, 30, 16, 0.14);
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-soft: 0 14px 36px rgba(58, 30, 16, 0.08);
  --shadow-lift: 0 22px 54px rgba(58, 30, 16, 0.14);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

.topbar {
  background: #f4e7d6;
  color: #3a1e10;
  border-bottom: 1px solid rgba(58, 30, 16, 0.08);
  font-size: 0.76rem;
  letter-spacing: 0;
}

.topbar-inner--premium {
  max-width: 1240px;
  min-height: 2.05rem;
  padding: 0.38rem clamp(1rem, 3vw, 1.5rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-inner--premium .topbar-messages {
  position: static;
  width: auto;
  max-width: none;
  height: auto;
}

.topbar-inner--premium .topbar-msg {
  position: static;
  inset: auto;
  justify-content: flex-start;
  gap: 0.45rem;
  opacity: 1;
  transform: none;
  color: #3a1e10;
}

.topbar-inner--premium .topbar-msg strong,
.topbar-inner--premium .topbar-msg svg {
  color: #6b3a22;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.8rem);
  color: rgba(58, 30, 16, 0.78);
  white-space: nowrap;
}

.topbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s ease;
}

.topbar-links a:hover {
  color: #3a1e10;
}

.site-header {
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid rgba(58, 30, 16, 0.09);
  box-shadow: none;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(58, 30, 16, 0.06);
}

.header-inner {
  max-width: 1240px;
  min-height: 4.15rem;
  padding-block: 0.56rem;
}

.logo-img {
  height: 40px;
}

.nav-main {
  gap: 0.2rem clamp(0.6rem, 1.4vw, 1.2rem);
}

.nav-link {
  color: #3f2a20;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-link::after {
  height: 1px;
  bottom: 0.18rem;
  background: #c47a3a;
}

.search-trigger,
.account-trigger,
.fav-trigger,
.cart-trigger {
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  background: transparent;
  color: #6b3a22;
  box-shadow: none;
}

.search-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.search-trigger:hover,
.account-trigger:hover,
.fav-trigger:hover,
.cart-trigger:hover {
  color: #3a1e10;
  background: rgba(196, 122, 58, 0.1);
  box-shadow: none;
}

.menu-toggle {
  border: 0;
  background: rgba(58, 30, 16, 0.06);
  color: #3a1e10;
}

.cart-badge,
.fav-badge {
  background: #8d4b28;
  box-shadow: 0 0 0 2px #fffdf9;
}

.domol-home {
  background: #fbf6ef;
  color: #2a1a12;
}

.lux-container {
  width: min(100% - 2rem, 1240px);
  margin: 0 auto;
}

.domol-home h1,
.domol-home h2,
.domol-home h3 {
  font-family: var(--font-display);
  color: #2a1a12;
  letter-spacing: 0;
}

.domol-home .btn {
  min-height: 2.7rem;
  border-radius: 5px;
  padding: 0.78rem 1.45rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.domol-home .btn-primary {
  background: #3a1e10;
  border-color: #3a1e10;
  color: #fffdf9;
}

.domol-home .btn-primary:hover {
  background: #6b3a22;
  border-color: #6b3a22;
  color: #fffdf9;
}

.domol-home .btn-secondary {
  background: transparent;
  border-color: rgba(58, 30, 16, 0.42);
  color: #3a1e10;
}

.domol-home .btn-secondary:hover {
  border-color: #c47a3a;
  color: #6b3a22;
  background: rgba(255, 253, 249, 0.55);
}

.lux-eyebrow,
.lux-section__kicker {
  margin: 0 0 0.72rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a55f32;
}

.lux-hero {
  position: relative;
  background: #fbf6ef;
  border-bottom: 1px solid rgba(58, 30, 16, 0.08);
}

.lux-hero__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  min-height: min(72vh, 620px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

.lux-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 5.6rem) clamp(1.2rem, 6vw, 6.4rem);
  max-width: 42rem;
}

.lux-hero h1 {
  max-width: 10.5em;
  margin: 0 0 1.25rem;
  font-size: clamp(3rem, 5.6vw, 5.65rem);
  font-weight: 600;
  line-height: 0.92;
}

.lux-hero__lead {
  max-width: 31rem;
  margin: 0;
  color: #4f3a2e;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.75;
}

.lux-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2rem;
}

.lux-hero__media {
  min-height: 100%;
  overflow: hidden;
}

.lux-hero__media img {
  width: 100%;
  height: 100%;
  min-height: min(72vh, 620px);
  object-fit: cover;
}

.lux-benefit-strip {
  background: #fffdf9;
  border-bottom: 1px solid rgba(58, 30, 16, 0.08);
}

.lux-benefit-strip__inner {
  width: min(100% - 2rem, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.35rem 0;
}

.lux-benefit,
.lux-product-benefit {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.lux-benefit__icon,
.lux-product-benefit span {
  flex: 0 0 auto;
  color: #b76c38;
}

.lux-benefit h2,
.lux-product-benefit h3 {
  margin: 0 0 0.12rem;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 800;
  color: #3a1e10;
}

.lux-benefit p,
.lux-product-benefit p {
  margin: 0;
  color: #7a6254;
  font-size: 0.77rem;
  line-height: 1.35;
}

.lux-section {
  padding: clamp(3rem, 6vw, 5.2rem) 0;
}

.lux-section--soft {
  background: linear-gradient(180deg, #fbf6ef 0%, #fffaf4 100%);
}

.lux-section__head {
  margin-bottom: clamp(1.6rem, 3vw, 2.35rem);
  text-align: center;
}

.lux-section__head h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.05;
}

.lux-section__head p:not(.lux-section__kicker) {
  margin: 0.45rem 0 0;
  color: #7a6254;
}

.lux-section__head--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
}

.lux-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #6b3a22;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lux-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.lux-category-card,
.lux-product-card,
.lux-testimonial {
  background: #fffdf9;
  border: 1px solid rgba(58, 30, 16, 0.09);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(58, 30, 16, 0.06);
  overflow: hidden;
}

.lux-category-card,
.lux-product-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.lux-category-card:hover,
.lux-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 122, 58, 0.28);
  box-shadow: 0 18px 44px rgba(58, 30, 16, 0.11);
}

.lux-category-card__media img,
.lux-product-card__media img,
.lux-instagram-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.lux-category-card:hover img,
.lux-product-card:hover img,
.lux-instagram-item:hover img {
  transform: scale(1.035);
}

.lux-category-card {
  display: flex;
  flex-direction: column;
}

.lux-category-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem 1.1rem 1.25rem;
  text-align: center;
}

.lux-category-card h3,
.lux-product-card h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.1;
}

.lux-category-card p {
  margin: 0.35rem 0 0.95rem;
  color: #796255;
  font-size: 0.88rem;
}

.lux-category-card p.lux-category-card__tagline {
  margin: 0.35rem 0 0.6rem;
  color: #6b3a22;
  font-size: 0.8rem;
  font-weight: 700;
}

.lux-category-card p.lux-category-card__details {
  margin: 0 0 0.95rem;
  color: #8a6d5f;
  font-size: 0.72rem;
  line-height: 1.55;
}

.lux-category-card .lux-card-link {
  align-self: center;
  margin-top: auto;
}

.lux-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0 1.1rem;
  border: 1px solid rgba(58, 30, 16, 0.36);
  border-radius: 5px;
  color: #3a1e10;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.lux-card-link:hover {
  border-color: #c47a3a;
  color: #6b3a22;
  background: #fbf6ef;
}

.lux-section--products {
  background: #fbf6ef;
}

.lux-products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.55vw, 1.25rem);
}

.lux-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.lux-product-card__media {
  display: block;
  background: #f4e7d6;
  overflow: hidden;
}

.lux-fav {
  position: absolute;
  top: 0.68rem;
  right: 0.68rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.9);
  color: #6b3a22;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(58, 30, 16, 0.08);
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.lux-fav:hover {
  color: #c47a3a;
  background: #fffdf9;
  transform: scale(1.06);
}

.lux-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem 0.92rem 1.05rem;
}

.lux-product-card__type {
  margin: 0 0 0.25rem;
  color: #8a6d5f;
  font-size: 0.72rem;
}

.lux-product-card__price {
  margin: 0.7rem 0 0;
  color: #3a1e10;
  font-size: 0.9rem;
  font-weight: 800;
}

.lux-product-card__rating {
  margin: 0.28rem 0 0.85rem;
  color: #c47a3a;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.lux-product-card__rating span {
  color: #7c6253;
  letter-spacing: 0;
}

.lux-product-card__button {
  width: 100%;
  margin-top: auto;
  padding-inline: 0.7rem;
}

.lux-product-card .product-card-form {
  display: block;
  margin-top: auto;
}

.lux-product-card__title-link {
  color: inherit;
  text-decoration: none;
}

.lux-product-card__title-link:hover {
  color: #c47a3a;
}

.lux-product-card__price-old {
  margin-right: 0.35rem;
  color: #a08575;
  font-weight: 600;
  font-size: 0.8rem;
}

.lux-service-banner {
  background: #3a1e10;
  color: #fffdf9;
}

.lux-service-banner__inner {
  width: min(100% - 2rem, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 4vw, 3rem);
  padding: clamp(1.6rem, 3vw, 2.3rem) 0;
}

.lux-service-banner article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.lux-service-banner svg {
  color: #c47a3a;
}

.lux-service-banner h2 {
  margin: 0;
  font-family: var(--font-body);
  color: #fffdf9;
  font-size: 1rem;
  font-weight: 800;
}

.lux-service-banner p {
  margin: 0.15rem 0 0;
  color: rgba(255, 253, 249, 0.76);
  font-size: 0.86rem;
}

.lux-lifestyle {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  background: #fffdf9;
}

.lux-lifestyle__media {
  min-height: clamp(320px, 42vw, 560px);
}

.lux-lifestyle__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-lifestyle__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(2.5rem, 6vw, 5.4rem) clamp(1.4rem, 7vw, 6.2rem);
}

.lux-lifestyle h2 {
  max-width: 11em;
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1;
}

.lux-lifestyle p:not(.lux-eyebrow) {
  max-width: 31rem;
  margin: 0 0 1.55rem;
  color: #594235;
  line-height: 1.7;
}

.lux-section--benefits {
  background: linear-gradient(180deg, #fbf6ef 0%, #fffaf4 100%);
  padding-block: clamp(2.2rem, 4.5vw, 3.5rem);
}

.lux-product-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.lux-product-benefit {
  min-height: 5.6rem;
  padding: 1.05rem 1.1rem;
  background: #fffdf9;
  border: 1px solid rgba(58, 30, 16, 0.09);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(58, 30, 16, 0.05);
}

.lux-section--instagram {
  background: #fffdf9;
}

.lux-instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}

.lux-instagram-item {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #f4e7d6;
}

.lux-section--testimonials {
  background: #fbf6ef;
  padding-top: clamp(2.3rem, 4vw, 3.2rem);
}

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

.lux-testimonial {
  padding: clamp(1.25rem, 2vw, 1.65rem);
  text-align: center;
}

.lux-testimonial__stars {
  margin: 0 0 0.55rem;
  color: #c47a3a;
  letter-spacing: 0.08em;
}

.lux-testimonial blockquote {
  margin: 0;
  color: #4d372c;
  font-size: 0.94rem;
  line-height: 1.65;
}

.lux-testimonial__name {
  margin: 0.8rem 0 0;
  color: #3a1e10;
  font-size: 0.86rem;
  font-weight: 800;
}

.lux-newsletter {
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 0.68fr);
  min-height: 230px;
  background: #3a1e10;
  color: #fffdf9;
}

.lux-newsletter__image {
  overflow: hidden;
}

.lux-newsletter__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.lux-newsletter__content {
  display: flex;
  width: min(100%, 760px);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  padding: clamp(1.75rem, 4vw, 2.6rem) clamp(1.5rem, 5vw, 4.5rem);
}

.lux-newsletter h2 {
  max-width: 17em;
  margin: 0;
  color: #fffdf9;
  font-size: clamp(1.7rem, 2.35vw, 2.35rem);
  font-weight: 600;
  line-height: 1.08;
}

.lux-newsletter__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(100%, 560px);
  gap: 0.65rem;
  align-items: center;
}

.lux-newsletter input[type="email"] {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(255, 253, 249, 0.28);
  border-radius: 5px;
  background: #fffdf9;
  color: #2a1a12;
  padding: 0 1rem;
  font: inherit;
}

.lux-newsletter .btn-primary {
  min-height: 3rem;
  background: #2a1309;
  border-color: rgba(255, 253, 249, 0.22);
  white-space: nowrap;
}

.lux-newsletter p {
  margin: 0;
  color: rgba(255, 253, 249, 0.74);
  font-size: 0.78rem;
  text-align: left;
}

.site-footer {
  margin-top: 0;
  background: #fffdf9;
  color: #2a1a12;
  border-top: 1px solid rgba(58, 30, 16, 0.09);
}

.footer-grid-pro {
  width: min(100% - 2rem, 1240px);
  margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 3.6rem) 0;
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(4, minmax(130px, 0.75fr));
  gap: clamp(1.3rem, 3vw, 2.6rem);
}

.footer-logo-img {
  height: 42px;
  width: auto;
  filter: none;
  opacity: 1;
}

.footer-tagline {
  max-width: 18rem;
  margin: 1rem 0 1.2rem;
  color: #6e584b;
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-col-title {
  margin: 0 0 0.9rem;
  font-family: var(--font-body);
  color: #3a1e10;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links-list,
.footer-contact {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links-list a,
.footer-contact a,
.footer-contact span {
  color: #5e4639;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-links-list a:hover,
.footer-contact a:hover {
  color: #c47a3a;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-contact svg,
.footer-social a {
  color: #9b5a31;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(58, 30, 16, 0.16);
  border-radius: 999px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
  color: #3a1e10;
  border-color: rgba(196, 122, 58, 0.4);
  background: #fbf6ef;
}

.footer-legal-bar {
  width: min(100% - 2rem, 1240px);
  margin: 0 auto;
  padding: 1rem 0 1.2rem;
  border-top: 1px solid rgba(58, 30, 16, 0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #6e584b;
}

.footer-note {
  margin: 0;
  font-size: 0.78rem;
}

.footer-pay-icons {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.55rem;
  padding: 0 0.55rem;
  border: 1px solid rgba(58, 30, 16, 0.14);
  border-radius: 5px;
  background: #fffdf9;
  color: #3a1e10;
  font-size: 0.68rem;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .lux-hero__inner {
    grid-template-columns: 1fr;
  }

  .lux-hero__copy {
    max-width: none;
    align-items: center;
    text-align: center;
    padding-bottom: 2.4rem;
  }

  .lux-hero h1,
  .lux-hero__lead {
    margin-inline: auto;
  }

  .lux-hero__actions {
    justify-content: center;
  }

  .lux-hero__media img {
    min-height: 420px;
  }

  .lux-category-grid,
  .lux-product-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .lux-newsletter__content {
    grid-template-columns: 1fr;
  }

  .lux-newsletter p {
    grid-column: auto;
    text-align: left;
  }

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

  .footer-col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .topbar-inner--premium {
    justify-content: center;
  }

  .topbar-links {
    display: none;
  }

  .search-trigger {
    width: 2.4rem;
    height: 2.4rem;
  }

  .lux-benefit-strip__inner,
  .lux-service-banner__inner,
  .lux-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .lux-benefit-strip__inner {
    gap: 0.75rem;
  }

  .lux-benefit {
    justify-content: flex-start;
    padding: 0.15rem 0;
  }

  .lux-section__head--row {
    display: block;
    text-align: center;
  }

  .lux-all-link {
    margin-top: 0.9rem;
  }

  .lux-service-banner article {
    justify-content: flex-start;
  }

  .lux-lifestyle {
    grid-template-columns: 1fr;
  }

  .lux-lifestyle__copy {
    align-items: center;
    text-align: center;
  }

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

  .lux-newsletter__image {
    display: none;
  }
}

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

  .lux-hero__copy {
    padding: 2.65rem 1rem 2rem;
  }

  .lux-hero h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .lux-hero__media img {
    min-height: 330px;
  }

  .lux-hero__actions .btn {
    flex: 1 1 100%;
  }

  .lux-benefit-strip__inner,
  .lux-category-grid,
  .lux-products-grid,
  .lux-product-benefits,
  .lux-instagram-grid,
  .footer-grid-pro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lux-benefit {
    align-items: flex-start;
  }

  .lux-category-card__body {
    padding: 0.95rem 0.75rem 1rem;
  }

  .lux-category-card h3,
  .lux-product-card h3 {
    font-size: 1.12rem;
  }

  .lux-card-link {
    width: 100%;
    padding-inline: 0.6rem;
    font-size: 0.66rem;
  }

  .lux-products-grid {
    gap: 0.75rem;
  }

  .lux-product-card__body {
    padding: 0.78rem 0.7rem 0.8rem;
  }

  .lux-product-card__button {
    min-height: 2.35rem;
    font-size: 0.66rem;
    padding-inline: 0.35rem;
  }

  .lux-newsletter__content {
    padding: 1.8rem 1rem;
    text-align: center;
  }

  .lux-newsletter h2 {
    margin-inline: auto;
  }

  .lux-newsletter__form {
    grid-template-columns: 1fr;
  }

  .lux-newsletter p {
    text-align: center;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
  }

  .footer-legal-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .lux-benefit-strip__inner,
  .lux-category-grid,
  .lux-products-grid,
  .lux-product-benefits,
  .footer-grid-pro {
    grid-template-columns: 1fr;
  }

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

  .lux-section {
    padding-block: 2.35rem;
  }
}

/* Final cascade guard for the premium homepage/header/footer refresh. */
:root {
  --color-bg: #fbf6ef;
  --color-card: #f4e7d6;
  --color-card-alt: #fffdf9;
  --color-brand: #3a1e10;
  --color-accent: #c47a3a;
  --color-text: #2a1a12;
  --color-text-muted: #7c6253;
  --color-border: rgba(58, 30, 16, 0.14);
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

.topbar {
  background: #f4e7d6;
  color: #3a1e10;
  border-bottom: 1px solid rgba(58, 30, 16, 0.08);
  font-size: 0.76rem;
  letter-spacing: 0;
}

.topbar-inner--premium {
  max-width: 1240px;
  min-height: 2.05rem;
  padding: 0.38rem clamp(1rem, 3vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-inner--premium .topbar-messages {
  position: static;
  width: auto;
  max-width: none;
  height: auto;
}

.topbar-inner--premium .topbar-msg {
  position: static;
  inset: auto;
  justify-content: flex-start;
  opacity: 1;
  transform: none;
  color: #3a1e10;
}

.topbar-inner--premium .topbar-msg strong,
.topbar-inner--premium .topbar-msg svg {
  color: #6b3a22;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.8rem);
  color: rgba(58, 30, 16, 0.78);
  white-space: nowrap;
}

.topbar-links a:hover {
  color: #3a1e10;
}

.site-header {
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid rgba(58, 30, 16, 0.09);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(58, 30, 16, 0.06);
}

.header-inner {
  max-width: 1240px;
  min-height: 4.15rem;
  padding-block: 0.56rem;
}

.logo-img {
  height: 40px;
}

.nav-main {
  gap: 0.2rem clamp(0.6rem, 1.4vw, 1.2rem);
}

.nav-link {
  color: #3f2a20;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-link::after {
  height: 1px;
  bottom: 0.18rem;
  background: #c47a3a;
}

.search-trigger,
.account-trigger,
.fav-trigger,
.cart-trigger {
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  background: transparent;
  color: #6b3a22;
  box-shadow: none;
}

.search-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.search-trigger:hover,
.account-trigger:hover,
.fav-trigger:hover,
.cart-trigger:hover {
  color: #3a1e10;
  background: rgba(196, 122, 58, 0.1);
  box-shadow: none;
}

.site-footer {
  margin-top: 0;
  background: #fffdf9;
  color: #2a1a12;
  border-top: 1px solid rgba(58, 30, 16, 0.09);
}

.footer-grid-pro {
  width: min(100% - 2rem, 1240px);
  margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 3.6rem) 0;
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(4, minmax(130px, 0.75fr));
  gap: clamp(1.3rem, 3vw, 2.6rem);
}

.footer-logo-img {
  height: 42px;
  width: auto;
  filter: none;
  opacity: 1;
}

.footer-tagline {
  max-width: 18rem;
  margin: 1rem 0 1.2rem;
  color: #6e584b;
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-col-title {
  margin: 0 0 0.9rem;
  font-family: var(--font-body);
  color: #3a1e10;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links-list,
.footer-contact {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links-list a,
.footer-contact a,
.footer-contact span {
  color: #5e4639;
  font-size: 0.88rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-contact svg,
.footer-social a {
  color: #9b5a31;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(58, 30, 16, 0.16);
  border-radius: 999px;
}

.footer-legal-bar {
  width: min(100% - 2rem, 1240px);
  margin: 0 auto;
  padding: 1rem 0 1.2rem;
  border-top: 1px solid rgba(58, 30, 16, 0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #6e584b;
}

.footer-note {
  margin: 0;
  font-size: 0.78rem;
}

.footer-pay-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.55rem;
  padding: 0 0.55rem;
  border: 1px solid rgba(58, 30, 16, 0.14);
  border-radius: 5px;
  background: #fffdf9;
  color: #3a1e10;
  font-size: 0.68rem;
  font-weight: 800;
}

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

  .footer-col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .topbar-inner--premium {
    justify-content: center;
  }

  .topbar-links {
    display: none;
  }

  .search-trigger {
    width: 2.4rem;
    height: 2.4rem;
  }

  .nav-center,
  .nav-main {
    overflow-x: hidden;
  }

  .nav-mobile-divider {
    width: auto;
  }
}

@media (max-width: 700px) {
  .footer-grid-pro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-col--brand {
    grid-column: 1 / -1;
  }

  .footer-legal-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .footer-grid-pro {
    grid-template-columns: 1fr;
  }
}

/* Desktop hero refinement: keep the premium feel without oversized scale. */
@media (min-width: 901px) {
  .lux-hero__inner {
    width: min(100% - 4rem, 1080px);
    min-height: clamp(360px, 42vw, 440px);
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }

  .lux-hero__copy {
    padding: clamp(2rem, 3.5vw, 3rem) clamp(1.25rem, 3.2vw, 3.4rem);
    max-width: 31rem;
  }

  .lux-hero .lux-eyebrow {
    margin-bottom: 0.55rem;
    font-size: 0.64rem;
    letter-spacing: 0.13em;
  }

  .lux-hero h1 {
    max-width: 9.2em;
    margin-bottom: 0.85rem;
    font-size: clamp(2.35rem, 3.15vw, 3.4rem);
    line-height: 1;
  }

  .lux-hero__lead {
    max-width: 25rem;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .lux-hero__actions {
    gap: 0.75rem;
    margin-top: 1.15rem;
  }

  .lux-hero__actions .btn {
    min-height: 2.45rem;
    padding: 0.65rem 1.15rem;
    font-size: 0.66rem;
  }

  .lux-hero__media {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lux-hero__media img {
    height: clamp(360px, 42vw, 440px);
    min-height: 0;
    max-height: 440px;
    object-position: center center;
  }
}

/* Mobile-first sizing pass for the premium homepage. */
@media (max-width: 900px) {
  .header-actions .cart-trigger,
  .header-actions .fav-trigger,
  .header-actions .account-trigger,
  .header-actions .account-dropdown,
  body.has-bottom-nav .header-actions .cart-trigger,
  body.has-bottom-nav .header-actions .fav-trigger,
  body.has-bottom-nav .header-actions .account-trigger,
  body.has-bottom-nav .header-actions .account-dropdown {
    display: none !important;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .topbar-inner--premium .topbar-msg {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  .lux-hero__inner {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .lux-hero__media {
    order: -1;
    min-height: 0;
  }

  .lux-hero__media img {
    min-height: 0;
    height: clamp(230px, 62vw, 420px);
    object-position: center;
  }

  .lux-hero__copy {
    padding: clamp(1.45rem, 5vw, 2.5rem) clamp(1rem, 4vw, 1.5rem) clamp(1.8rem, 6vw, 2.8rem);
  }

  .lux-hero h1 {
    max-width: 9.5em;
    font-size: clamp(2.35rem, 10.5vw, 3.35rem);
    line-height: 0.98;
  }

  .lux-hero__lead {
    max-width: 34rem;
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .lux-hero__actions {
    width: min(100%, 28rem);
    gap: 0.7rem;
    margin-top: 1.35rem;
  }

  .lux-benefit-strip__inner,
  .lux-service-banner__inner {
    width: min(100% - 1.5rem, 1240px);
  }

  .lux-service-banner__inner {
    gap: 0.85rem;
    padding: 1.05rem 0;
  }

  .lux-service-banner article {
    gap: 0.75rem;
  }

  .lux-service-banner svg {
    width: 26px;
    height: 26px;
  }

  .lux-lifestyle__media {
    min-height: clamp(220px, 58vw, 340px);
  }

  .lux-lifestyle__copy {
    padding: clamp(2rem, 7vw, 3rem) clamp(1rem, 5vw, 1.5rem);
  }

  .lux-lifestyle h2 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.04;
  }

  .lux-newsletter__content {
    gap: 1rem;
  }
}

@media (max-width: 700px) {
  .domol-home .btn {
    min-height: 2.85rem;
    padding: 0.72rem 1rem;
    font-size: 0.68rem;
    line-height: 1.15;
  }

  .lux-container {
    width: min(100% - 1.25rem, 1240px);
  }

  .lux-section,
  .lux-section--benefits,
  .lux-section--testimonials {
    padding-block: 2.15rem;
  }

  .lux-section__head {
    margin-bottom: 1.15rem;
  }

  .lux-eyebrow,
  .lux-section__kicker {
    margin-bottom: 0.45rem;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .lux-section__head h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.08;
  }

  .lux-section__head p:not(.lux-section__kicker) {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .lux-category-grid,
  .lux-products-grid,
  .lux-product-benefits,
  .lux-instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }

  .lux-category-card,
  .lux-product-card,
  .lux-testimonial,
  .lux-product-benefit,
  .lux-instagram-item {
    border-radius: 10px;
  }

  .lux-category-card__body {
    padding: 0.78rem 0.65rem 0.85rem;
  }

  .lux-category-card h3,
  .lux-product-card h3 {
    font-size: clamp(1rem, 4.8vw, 1.16rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .lux-category-card p,
  .lux-product-card__type,
  .lux-product-card__rating {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .lux-card-link {
    min-height: 2.25rem;
    padding-inline: 0.45rem;
    font-size: 0.6rem;
    letter-spacing: 0.025em;
  }

  .lux-product-card__body {
    padding: 0.72rem 0.62rem 0.72rem;
  }

  .lux-product-card__price {
    margin-top: 0.5rem;
    font-size: 0.84rem;
  }

  .lux-product-card__rating {
    margin-bottom: 0.65rem;
    letter-spacing: 0.02em;
  }

  .lux-product-card__button {
    min-height: 2.35rem;
    padding-inline: 0.3rem;
    font-size: 0.6rem;
    letter-spacing: 0.02em;
  }

  .lux-fav {
    top: 0.5rem;
    right: 0.5rem;
    width: 1.85rem;
    height: 1.85rem;
  }

  .lux-benefit-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    padding: 0.85rem 0;
  }

  .lux-benefit,
  .lux-product-benefit {
    gap: 0.55rem;
    align-items: flex-start;
  }

  .lux-benefit__icon svg,
  .lux-product-benefit span svg {
    width: 18px;
    height: 18px;
  }

  .lux-benefit h2,
  .lux-product-benefit h3 {
    font-size: 0.74rem;
    line-height: 1.2;
  }

  .lux-benefit p,
  .lux-product-benefit p {
    font-size: 0.68rem;
    line-height: 1.28;
  }

  .lux-product-benefit {
    min-height: 0;
    padding: 0.78rem 0.65rem;
  }

  .lux-service-banner h2 {
    font-size: 0.82rem;
  }

  .lux-service-banner p {
    font-size: 0.74rem;
    line-height: 1.3;
  }

  .lux-lifestyle p:not(.lux-eyebrow) {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .lux-testimonial-grid {
    gap: 0.75rem;
  }

  .lux-testimonial {
    padding: 1rem 0.85rem;
  }

  .lux-testimonial blockquote {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .lux-newsletter__content {
    padding: 1.65rem 1rem 1.8rem;
    text-align: left;
  }

  .lux-newsletter h2 {
    max-width: 18rem;
    margin-inline: 0;
    font-size: clamp(1.45rem, 7vw, 1.95rem);
    line-height: 1.08;
  }

  .lux-newsletter__form {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .lux-newsletter input[type="email"],
  .lux-newsletter .btn-primary {
    min-height: 2.85rem;
  }

  .lux-newsletter p {
    text-align: left;
  }

  .footer-grid-pro {
    width: min(100% - 1.5rem, 1240px);
    gap: 1.25rem 1rem;
    padding: 2rem 0 1.45rem;
  }

  .footer-tagline {
    max-width: none;
    margin: 0.65rem 0 0.9rem;
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .footer-col-title {
    margin-bottom: 0.55rem;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  .footer-links-list,
  .footer-contact {
    gap: 0.38rem;
  }

  .footer-links-list a,
  .footer-contact a,
  .footer-contact span {
    font-size: 0.82rem;
  }

  .footer-legal-bar {
    width: min(100% - 1.5rem, 1240px);
    padding: 0.95rem 0 calc(1.1rem + env(safe-area-inset-bottom, 0));
    gap: 0.7rem;
  }
}

@media (max-width: 430px) {
  .lux-hero__media img {
    height: clamp(220px, 68vw, 292px);
  }

  .lux-hero h1 {
    font-size: clamp(2.2rem, 11vw, 2.85rem);
  }

  .lux-hero__actions .btn {
    flex: 1 1 100%;
  }

  .lux-category-grid,
  .lux-products-grid,
  .lux-product-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .lux-service-banner__inner,
  .lux-testimonial-grid,
  .footer-grid-pro {
    grid-template-columns: 1fr;
  }

  .lux-service-banner article {
    justify-content: flex-start;
  }
}

@media (max-width: 340px) {
  .lux-category-grid,
  .lux-products-grid,
  .lux-product-benefits,
  .lux-benefit-strip__inner,
  .lux-instagram-grid {
    grid-template-columns: 1fr;
  }
}

/* Final desktop compact scale for the homepage. */
@media (min-width: 901px) {
  .lux-container {
    width: min(100% - 2rem, 1120px);
  }

  .lux-benefit-strip__inner,
  .lux-service-banner__inner,
  .footer-grid-pro,
  .footer-legal-bar {
    width: min(100% - 2rem, 1240px);
  }

  .lux-hero__inner {
    width: min(100% - 2rem, 1240px);
    min-height: 0;
    grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
  }

  .lux-hero__copy {
    max-width: 29rem;
    padding: 2.1rem clamp(1.5rem, 3vw, 3rem);
  }

  .lux-hero .lux-eyebrow {
    margin-bottom: 0.5rem;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }

  .lux-hero h1 {
    max-width: 9em;
    margin-bottom: 0.75rem;
    font-size: clamp(1.95rem, 2.55vw, 2.7rem);
    line-height: 1.02;
  }

  .lux-hero__lead {
    max-width: 24rem;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .lux-hero__actions {
    gap: 0.7rem;
    margin-top: 1rem;
  }

  .lux-hero__actions .btn,
  .domol-home .btn {
    min-height: 2.35rem;
    padding: 0.62rem 1rem;
    font-size: 0.62rem;
    letter-spacing: 0.035em;
  }

  .lux-hero__media {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lux-hero__media img {
    width: 100%;
    height: clamp(320px, 28vw, 380px);
    min-height: 0;
    max-height: 380px;
    object-fit: cover;
    object-position: center center;
  }

  .lux-benefit-strip__inner {
    gap: 0.8rem;
    padding: 0.82rem 0;
  }

  .lux-benefit,
  .lux-product-benefit {
    gap: 0.62rem;
  }

  .lux-benefit__icon svg,
  .lux-product-benefit span svg {
    width: 19px;
    height: 19px;
  }

  .lux-benefit h2,
  .lux-product-benefit h3 {
    font-size: 0.76rem;
  }

  .lux-benefit p,
  .lux-product-benefit p {
    font-size: 0.68rem;
  }

  .lux-section {
    padding: clamp(1.75rem, 3vw, 2.75rem) 0;
  }

  .lux-section--benefits,
  .lux-section--testimonials {
    padding-block: clamp(1.55rem, 2.6vw, 2.25rem);
  }

  .lux-section__head {
    margin-bottom: clamp(1rem, 2vw, 1.55rem);
  }

  .lux-eyebrow,
  .lux-section__kicker {
    margin-bottom: 0.45rem;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }

  .lux-section__head h2 {
    font-size: clamp(1.55rem, 2.15vw, 2.25rem);
    line-height: 1.08;
  }

  .lux-section__head p:not(.lux-section__kicker) {
    font-size: 0.86rem;
  }

  .lux-category-grid,
  .lux-products-grid,
  .lux-product-benefits,
  .lux-testimonial-grid {
    gap: 0.85rem;
  }

  .lux-instagram-grid {
    gap: 0.65rem;
  }

  .lux-category-card,
  .lux-product-card,
  .lux-product-benefit,
  .lux-testimonial,
  .lux-instagram-item {
    border-radius: 10px;
  }

  .lux-category-card__body {
    padding: 0.78rem 0.78rem 0.9rem;
  }

  .lux-category-card h3,
  .lux-product-card h3 {
    font-size: 1.08rem;
    line-height: 1.1;
  }

  .lux-category-card p {
    margin: 0.28rem 0 0.7rem;
    font-size: 0.76rem;
  }

  .lux-card-link {
    min-height: 2.1rem;
    padding: 0 0.75rem;
    font-size: 0.6rem;
  }

  .lux-product-card__body {
    padding: 0.72rem 0.7rem 0.75rem;
  }

  .lux-product-card__type {
    font-size: 0.64rem;
  }

  .lux-product-card__price {
    margin-top: 0.45rem;
    font-size: 0.8rem;
  }

  .lux-product-card__rating {
    margin-bottom: 0.6rem;
    font-size: 0.68rem;
  }

  .lux-product-card__button {
    min-height: 2.2rem;
    padding-inline: 0.45rem;
    font-size: 0.58rem;
  }

  .lux-fav {
    width: 1.75rem;
    height: 1.75rem;
  }

  .lux-service-banner__inner {
    padding: 1rem 0;
  }

  .lux-service-banner h2 {
    font-size: 0.82rem;
  }

  .lux-service-banner p {
    font-size: 0.74rem;
  }

  .lux-lifestyle__media {
    min-height: clamp(300px, 32vw, 420px);
  }

  .lux-lifestyle__copy {
    padding: clamp(2rem, 4.4vw, 3.8rem) clamp(1.4rem, 5vw, 4.5rem);
  }

  .lux-lifestyle h2 {
    font-size: clamp(1.9rem, 3vw, 3rem);
  }

  .lux-lifestyle p:not(.lux-eyebrow) {
    max-width: 27rem;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .lux-product-benefit {
    min-height: 4.6rem;
    padding: 0.82rem 0.85rem;
  }

  .lux-testimonial {
    padding: 1rem;
  }

  .lux-testimonial blockquote {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .lux-newsletter {
    grid-template-columns: minmax(220px, 0.3fr) minmax(0, 0.7fr);
    min-height: 190px;
  }

  .lux-newsletter__content {
    width: min(100%, 680px);
    gap: 0.75rem;
    padding: 1.5rem clamp(1.5rem, 4vw, 3.5rem);
  }

  .lux-newsletter h2 {
    max-width: 18em;
    font-size: clamp(1.45rem, 2vw, 2rem);
  }

  .lux-newsletter__form {
    width: min(100%, 500px);
  }

  .lux-newsletter input[type="email"],
  .lux-newsletter .btn-primary {
    min-height: 2.55rem;
  }

  .footer-grid-pro {
    padding: clamp(1.8rem, 3.5vw, 2.8rem) 0;
    gap: clamp(1rem, 2vw, 1.8rem);
  }

  .footer-tagline,
  .footer-links-list a,
  .footer-contact a,
  .footer-contact span {
    font-size: 0.8rem;
  }
}

/* Gift card page refresh. */
.page-giftcard {
  background: linear-gradient(180deg, #fffdf9 0%, #fbf6ef 38%, #fffaf4 100%);
}

.page-giftcard .breadcrumbs {
  width: min(100% - 2rem, 1240px);
  margin: 0.95rem auto 0;
}

.giftcard-hero {
  padding: clamp(1.35rem, 3vw, 2.4rem) 1rem clamp(1.6rem, 4vw, 2.8rem);
  background:
    radial-gradient(circle at 15% 10%, rgba(196, 122, 58, 0.12), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #fbf6ef 100%);
  text-align: left;
}

.giftcard-hero-inner {
  width: min(100% - 2rem, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.4rem);
}

.giftcard-hero-copy {
  max-width: 34rem;
}

.giftcard-title {
  max-width: 9em;
  margin: 0.35rem 0 0.8rem;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.98;
}

.giftcard-lead {
  max-width: 31rem;
  margin: 0 0 1.15rem;
  color: #4f3a2e;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.65;
}

.giftcard-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.15rem;
}

.giftcard-hero-actions .btn {
  min-height: 2.6rem;
  border-radius: 5px;
  padding: 0.72rem 1.15rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.giftcard-hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #f4e7d6;
  box-shadow: 0 24px 60px rgba(58, 30, 16, 0.12);
}

.giftcard-hero-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.giftcard-perks--inline {
  justify-content: flex-start;
  gap: 0.45rem 1rem;
}

.giftcard-perks--inline li {
  color: #5e4639;
  font-size: 0.82rem;
}

.giftcard-section {
  padding: clamp(1.8rem, 4vw, 3.4rem) 1rem clamp(2.8rem, 6vw, 4.5rem);
}

.giftcard-section-head {
  width: min(100% - 2rem, 860px);
  margin: 0 auto clamp(1.25rem, 3vw, 2rem);
  text-align: center;
}

.giftcard-section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  color: #2a1a12;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 600;
  line-height: 1.05;
}

.giftcard-section-head p:not(.shop-eyebrow) {
  max-width: 34rem;
  margin: 0.55rem auto 0;
  color: #6e584b;
  font-size: 0.95rem;
}

.giftcard-layout {
  max-width: 1120px;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
  gap: clamp(1.2rem, 3vw, 2rem);
}

.giftcard-form {
  gap: 1rem;
}

.gc-step {
  border: 1px solid rgba(58, 30, 16, 0.1);
  border-radius: 10px;
  padding: 1.05rem 1.05rem 1.1rem;
  background: #fffdf9;
  box-shadow: 0 12px 32px rgba(58, 30, 16, 0.045);
}

.gc-step legend {
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
}

.gc-step-num {
  width: 24px;
  height: 24px;
  background: #3a1e10;
  font-size: 0.76rem;
}

.gc-step-label {
  font-size: 0.98rem;
}

.giftcard-amount-grid {
  gap: 0.55rem;
}

.giftcard-amount-pill {
  min-height: 5rem;
  border-radius: 8px;
  padding: 0.78rem 0.7rem;
  background: #fffaf4;
}

.giftcard-amount-pill strong {
  font-size: 1rem;
}

.giftcard-form .field {
  gap: 0.38rem;
}

.giftcard-form label {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.giftcard-form input[type="text"],
.giftcard-form input[type="email"],
.giftcard-form input[type="tel"],
.giftcard-form input[type="date"],
.giftcard-form input[type="number"],
.giftcard-form textarea {
  min-height: 2.7rem;
  border-radius: 8px;
  background: #fffdf9;
  font-size: 0.9rem;
}

.giftcard-form textarea {
  min-height: 6rem;
}

.giftcard-preview-sticky {
  top: 5.25rem;
  padding: 1.1rem;
  border: 1px solid rgba(58, 30, 16, 0.1);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(255, 250, 244, 0.96)),
    #fffdf9;
  box-shadow: 0 18px 42px rgba(58, 30, 16, 0.08);
}

.giftcard-preview-title {
  color: #a55f32;
  font-size: 0.66rem;
}

.giftcard-card,
.giftcard-card--preview {
  width: min(100%, 320px);
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.95), rgba(244, 231, 214, 0.98)),
    #fffdf9;
  color: #3a1e10;
  border: 1px solid rgba(196, 122, 58, 0.28);
  box-shadow: 0 18px 38px rgba(58, 30, 16, 0.12);
}

.giftcard-card::after {
  background: radial-gradient(ellipse, rgba(196, 122, 58, 0.14) 0%, transparent 58%);
}

.giftcard-card-tag,
.giftcard-card-bottom,
.giftcard-card-recipient {
  color: #6e584b;
  opacity: 1;
}

.giftcard-card-value {
  color: #3a1e10;
}

.giftcard-preview-message {
  max-width: 100%;
  border-radius: 10px;
  background: #fffaf4;
}

.giftcard-preview-checklist {
  max-width: 100%;
}

.giftcard-preview-checklist li {
  font-size: 0.8rem;
}

.btn-gc-submit {
  min-height: 3rem;
  border-radius: 8px;
  font-size: 0.88rem;
}

.giftcard-trust-row {
  justify-content: flex-start;
}

@media (max-width: 920px) {
  .giftcard-hero-inner,
  .giftcard-layout {
    grid-template-columns: 1fr;
  }

  .giftcard-hero-copy {
    max-width: none;
  }

  .giftcard-preview-aside {
    order: 0;
  }

  .giftcard-preview-sticky {
    position: static;
  }
}

@media (max-width: 700px) {
  .page-giftcard .breadcrumbs,
  .giftcard-hero-inner,
  .giftcard-section-head {
    width: min(100% - 1.25rem, 1240px);
  }

  .giftcard-hero {
    padding-inline: 0;
  }

  .giftcard-hero-media {
    order: -1;
  }

  .giftcard-title {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .giftcard-hero-actions .btn {
    flex: 1 1 100%;
  }

  .giftcard-perks--inline {
    display: grid;
    grid-template-columns: 1fr;
  }

  .giftcard-section {
    padding-inline: 0.65rem;
  }

  .giftcard-section-head {
    text-align: left;
  }

  .giftcard-section-head p:not(.shop-eyebrow) {
    margin-inline: 0;
  }

  .gc-step {
    padding: 0.92rem 0.8rem 0.95rem;
  }

  .giftcard-card,
  .giftcard-card--preview {
    width: min(100%, 300px);
  }
}
