:root {
  --bg: #faf9f6;
  --surface: #efc3b8;
  --surface-strong: #e5b8ad;
  --primary: #1f3552;
  --accent: #bc7783;
  --text: #2d2d2d;
  --muted: #6b6b6b;
  --border: rgba(31, 53, 82, 0.12);
  --shadow: 0 22px 44px rgba(31, 53, 82, 0.08);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1680px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(199, 164, 107, 0.12), transparent 24%),
    linear-gradient(180deg, #f8f5f1 0%, var(--bg) 100%);
}

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

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

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

.site-shell {
  width: min(calc(100% - 16px), var(--container));
  margin: 0 auto;
  padding: 0 0 18px;
}

.site-header,
.site-footer,
.site-tools,
.hero,
.spotlight-slider,
.retail-strip,
.promo-grid,
.contact-hero,
.about-block,
.contact-layout,
.section-grid,
.marketplace-preview,
.secondary-products,
.collection-band,
.cta-banner {
  margin-bottom: 24px;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: start;
  padding: 0 0 10px;
  width: calc(100vw - 40px);
  margin-left: calc(50% - 50vw + 20px);
  margin-right: calc(50% - 50vw + 20px);
}

.topline {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 34px;
  padding: 6px 28px 8px;
  border-radius: 0 0 20px 20px;
  background: rgba(239, 195, 184, 0.46);
  color: var(--primary);
  text-align: center;
}

.topline p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.header-main {
  display: grid;
  grid-template-columns: auto minmax(320px, 620px) auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 10px 20px 0;
}

.site-header .brand {
  gap: 6px;
}

.site-header .brand-mark {
  font-size: clamp(1.62rem, 2.3vw, 2.18rem);
  line-height: 0.88;
  letter-spacing: 0.055em;
}

.site-header .brand-subline {
  column-gap: 12px;
}

.site-header .brand-subline strong {
  font-size: 0.62rem;
  letter-spacing: 0.34em;
}

.site-header .brand-subline span {
  width: clamp(26px, 2vw, 42px);
}

.site-header .brand-tag {
  white-space: nowrap;
  font-size: 0.56rem;
  letter-spacing: 0.22em;
}

.site-search-wrap {
  position: relative;
}

.site-search-wrap-header {
  width: 100%;
}

.site-search-header {
  width: min(100%, 620px);
}

.site-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(188, 119, 131, 0.18) 0%,
      rgba(188, 119, 131, 0.14) 18%,
      rgba(188, 119, 131, 0.08) 34%,
      rgba(250, 249, 246, 0.02) 68%,
      rgba(250, 249, 246, 0) 100%
    );
  padding: 0 8px 0 16px;
  transition: background 180ms ease, opacity 180ms ease;
}

.header-catalog-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 2px 20px 0;
}

.site-search:hover,
.site-search:focus-within {
  background:
    linear-gradient(
      90deg,
      rgba(188, 119, 131, 0.24) 0%,
      rgba(188, 119, 131, 0.19) 18%,
      rgba(188, 119, 131, 0.11) 36%,
      rgba(250, 249, 246, 0.03) 70%,
      rgba(250, 249, 246, 0) 100%
    );
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 12;
  padding: 14px;
  border: 1px solid rgba(31, 53, 82, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 44px rgba(31, 53, 82, 0.12);
}

.search-dropdown-head {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.search-results {
  display: grid;
  gap: 8px;
}

.search-result {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.search-result:hover,
.search-result:focus-visible {
  border-color: rgba(199, 164, 107, 0.34);
  background: rgba(243, 240, 236, 0.9);
  outline: none;
}

.search-result-media {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(31, 53, 82, 0.06);
  background: #fff;
  object-fit: contain;
  padding: 6px;
}

.search-result-copy {
  min-width: 0;
}

.search-result-brand {
  display: block;
  margin-bottom: 3px;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-result-name {
  display: block;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.3;
}

.search-result-empty {
  padding: 12px 10px;
  color: var(--muted);
  line-height: 1.6;
}

.site-search-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.site-search-icon::before,
.site-search-icon::after {
  content: "";
  position: absolute;
}

.site-search-icon::before {
  inset: 0;
  border: 2px solid rgba(188, 119, 131, 0.88);
  border-radius: 50%;
}

.site-search-icon::after {
  width: 8px;
  height: 2px;
  right: -3px;
  bottom: 1px;
  background: rgba(188, 119, 131, 0.88);
  transform: rotate(45deg);
  transform-origin: center;
}

.site-search input {
  flex: 1;
  border: 0;
  background: transparent;
  font: inherit;
  color: rgba(188, 119, 131, 0.96);
}

.site-search input::placeholder {
  color: rgba(188, 119, 131, 0.78);
}

.site-search input:focus {
  outline: none;
}

.site-search-button,
.site-tool-button {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.site-search-button {
  min-height: 38px;
  width: 0;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 18px rgba(188, 119, 131, 0.2);
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: width 220ms ease, min-width 220ms ease, padding 220ms ease, opacity 180ms ease, transform 180ms ease;
}

.site-search:focus-within .site-search-button,
.site-search.is-active .site-search-button {
  width: auto;
  min-width: 92px;
  padding: 0 14px;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--primary);
  gap: 8px;
  width: max-content;
  max-width: 100%;
}

.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.35rem, 4.4vw, 3.75rem);
  line-height: 0.86;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.brand-subline {
  display: grid;
  grid-template-columns: minmax(42px, 1fr) auto minmax(42px, 1fr);
  align-items: center;
  column-gap: 14px;
  color: var(--accent);
  width: 100%;
}

.brand-subline strong {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.48em;
  color: var(--accent);
  justify-self: center;
}

.brand-subline span {
  height: 1px;
  width: 100%;
  background: currentColor;
}

.brand-tag {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
}

.brand-hero {
  align-items: center;
  text-align: center;
  margin-bottom: 22px;
}

.brand-hero .brand-mark {
  font-size: clamp(3.15rem, 7.4vw, 5.85rem);
  line-height: 0.88;
  letter-spacing: 0.055em;
}

.brand-hero .brand-subline strong {
  font-size: 1rem;
  letter-spacing: 0.42em;
}

.brand-hero .brand-subline span {
  width: clamp(76px, 10vw, 146px);
}

.brand-hero .brand-tag {
  font-size: 0.94rem;
  letter-spacing: 0.31em;
}

.brand-footer {
  margin-bottom: 10px;
}

.brand-footer .brand-mark {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
}

.brand-footer .brand-subline strong {
  font-size: 0.74rem;
}

.brand-footer .brand-tag {
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  align-self: flex-start;
}

.storefront-footer .brand-mark,
.storefront-footer .brand-tag {
  color: var(--primary);
}

.storefront-footer .brand-subline strong {
  color: var(--accent);
}

.storefront-footer .brand-subline span {
  background: var(--accent);
}

.main-nav,
.header-catalog-nav,
.header-service-nav,
.toolbar,
.lang-switch,
.hero-actions,
.cta-banner,
.cta-banner-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.main-nav {
  gap: 0;
  flex-wrap: nowrap;
  justify-content: center;
}

.main-nav-header {
  justify-self: center;
  padding: 8px 12px;
  border: 1px solid rgba(188, 119, 131, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(188, 119, 131, 0.08);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  min-width: 0;
  padding: 0 18px;
  border-radius: 0;
  border: 0;
  background: transparent;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--primary);
  position: relative;
  transition: color 220ms ease, transform 220ms ease;
}

.main-nav a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  background: rgba(188, 119, 131, 0.24);
  transform: translateY(-50%);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  transform: translateY(-1px);
  color: var(--accent);
  outline: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 1px;
  background: rgba(188, 119, 131, 0.82);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.lang-switch {
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(31, 53, 82, 0.1);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.7));
  box-shadow: 0 12px 24px rgba(31, 53, 82, 0.08);
}

.site-header .lang-switch {
  border-color: rgba(188, 119, 131, 0.34);
  background: rgba(188, 119, 131, 0.16);
  box-shadow: 0 12px 24px rgba(188, 119, 131, 0.16);
  flex: 0 0 auto;
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--primary);
  font: inherit;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-switch button.is-active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 18px rgba(31, 53, 82, 0.18);
}

.site-header .lang-switch button.is-active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 18px rgba(188, 119, 131, 0.24);
}

.header-utilities {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  justify-self: end;
}

.header-catalog-nav,
.header-service-nav {
  gap: 14px;
  flex-wrap: wrap;
}

.header-catalog-nav a,
.header-service-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(188, 119, 131, 0.16);
  background: rgba(255, 255, 255, 0.56);
  color: var(--primary);
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 26px rgba(188, 119, 131, 0.07);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-catalog-nav a:hover,
.header-catalog-nav a:focus-visible,
.header-service-nav a:hover,
.header-service-nav a:focus-visible {
  transform: translateY(-1px);
  color: var(--accent);
  border-color: rgba(188, 119, 131, 0.28);
  background: rgba(255, 255, 255, 0.82);
  outline: none;
}

.header-service-nav a {
  min-height: 34px;
  padding: 0 12px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  font-size: 0.88rem;
}

.header-service-nav a:hover,
.header-service-nav a:focus-visible {
  background: rgba(239, 195, 184, 0.36);
}

.catalog-accent {
  background: rgba(239, 195, 184, 0.86) !important;
  border-color: rgba(188, 119, 131, 0.2) !important;
}

.utility-trigger,
.utility-icon-button {
  border: 1px solid rgba(188, 119, 131, 0.16);
  background: rgba(255, 255, 255, 0.54);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(188, 119, 131, 0.08);
}

.utility-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
}

.utility-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.utility-trigger:hover,
.utility-trigger:focus-visible,
.utility-icon-button:hover,
.utility-icon-button:focus-visible,
.utility-menu.is-open .utility-trigger,
.utility-menu.is-open .utility-icon-button {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(188, 119, 131, 0.28);
  transform: translateY(-1px);
  outline: none;
}

.utility-menu {
  position: relative;
}

.utility-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 30;
  width: 320px;
  padding: 18px;
  border: 1px solid rgba(188, 119, 131, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 60px rgba(31, 53, 82, 0.12);
}

.utility-popover[hidden] {
  display: none;
}

.utility-popover:not([hidden]),
.support-quick-panel:not([hidden]) {
  animation: popover-rise 180ms ease both;
}

@keyframes popover-rise {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.utility-popover-account {
  display: grid;
  gap: 14px;
}

.utility-popover-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 1rem;
}

.utility-popover-copy p {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.55;
}

.utility-divider {
  position: relative;
  text-align: center;
}

.utility-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(31, 53, 82, 0.1);
}

.utility-divider span {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.utility-socials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.utility-social {
  min-height: 48px;
  border: 1px solid rgba(31, 53, 82, 0.14);
  border-radius: 14px;
  background: #fff;
  color: var(--primary);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.utility-popover-support,
.support-quick-panel {
  display: grid;
  gap: 6px;
}

.utility-popover-link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--primary);
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, color 180ms ease;
}

.utility-popover-link:hover,
.utility-popover-link:focus-visible {
  background: rgba(239, 195, 184, 0.34);
  color: var(--accent);
  transform: translateX(2px);
  outline: none;
}

.popover-link-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.popover-link-icon-chat {
  border: 2px solid currentColor;
  border-radius: 12px;
}

.popover-link-icon-chat::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -4px;
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skewX(-26deg);
}

.popover-link-icon-mail {
  border: 2px solid currentColor;
  border-radius: 4px;
}

.popover-link-icon-mail::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-top: 2px solid currentColor;
  transform: skewY(-18deg);
}

.popover-link-icon-help {
  border: 2px solid currentColor;
  border-radius: 999px;
}

.popover-link-icon-help::before {
  content: "?";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.utility-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
}

.utility-icon-user::before,
.utility-icon-user::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 1.8px solid currentColor;
}

.utility-icon-user::before {
  top: 1px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.utility-icon-user::after {
  bottom: 0;
  width: 14px;
  height: 8px;
  border-radius: 10px 10px 6px 6px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.utility-icon-headset::before,
.utility-icon-headset::after {
  content: "";
  position: absolute;
}

.utility-icon-headset::before {
  content: "SOS";
  left: 0;
  right: 0;
  top: -6px;
  color: currentColor;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
}

.utility-icon-headset::after {
  left: 50%;
  top: 8px;
  width: 4px;
  height: 7px;
  background: currentColor;
  border-radius: 3px;
  transform: translateX(-7px);
  box-shadow: 10px 0 0 currentColor;
}

.utility-icon-headset {
  background:
    linear-gradient(currentColor, currentColor) center 14px / 6px 2px no-repeat;
}

.support-fab-headset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.utility-link {
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.utility-link:hover,
.utility-link:focus-visible {
  color: var(--accent);
  outline: none;
}

.utility-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(188, 119, 131, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--primary);
  box-shadow: 0 10px 26px rgba(188, 119, 131, 0.08);
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.utility-cart:hover,
.utility-cart:focus-visible {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(188, 119, 131, 0.28);
  transform: translateY(-1px);
  outline: none;
}

.utility-cart-icon {
  position: relative;
  width: 18px;
  height: 14px;
  border: 1.8px solid currentColor;
  border-radius: 3px 3px 5px 5px;
}

.utility-cart-icon::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 4px;
  width: 8px;
  height: 6px;
  border: 1.8px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.utility-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 26px rgba(31, 53, 82, 0.18);
}

.site-header .button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 26px rgba(188, 119, 131, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
  border: 1px solid rgba(31, 53, 82, 0.18);
  backdrop-filter: blur(6px);
}

.button-block {
  width: 100%;
}

.panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.14)),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

#categories,
#products,
#brands {
  scroll-margin-top: 116px;
}

body {
  opacity: 1;
  transition: opacity 220ms ease;
}

body.page-is-leaving {
  opacity: 0.58;
}

.hero,
.contact-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  padding: 48px;
  align-items: center;
}

.hero-copy,
.contact-copy,
.about-copy,
.value-stack,
.contact-form-wrap,
.info-card {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--primary);
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  font-size: clamp(3.4rem, 9vw, 5.6rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 0.96;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-subtitle {
  margin: 10px 0 18px;
  color: var(--accent);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-family: "Cormorant Garamond", serif;
}

.hero-text,
.section-note,
.category-card p,
.product-meta p,
.about-copy p,
.value-item p,
.info-card p,
.contact-item,
.contact-form span,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-visual,
.contact-visual {
  position: relative;
}

.hero-visual::before,
.contact-visual::before {
  content: "";
  position: absolute;
  inset: 5% 10% auto auto;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(199, 164, 107, 0.42);
  border-radius: 50%;
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 4%;
  top: 16%;
  bottom: 8%;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.14));
}

.hero-visual img,
.contact-visual img {
  width: 100%;
  border-radius: 24px;
}

.spotlight-slider {
  position: relative;
  margin-bottom: 28px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow:
    0 28px 54px rgba(31, 53, 82, 0.11),
    0 10px 26px rgba(31, 53, 82, 0.06);
}

.spotlight-track {
  position: relative;
  min-height: 680px;
}

.spotlight-slide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  min-height: 680px;
  padding: 64px 60px;
  border-radius: 38px;
  overflow: hidden;
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity 420ms ease, transform 520ms ease, visibility 420ms ease;
}

.spotlight-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  z-index: 1;
}

.spotlight-slide::before,
.spotlight-slide::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.spotlight-slide::before {
  width: 520px;
  height: 520px;
  right: -90px;
  top: -140px;
  opacity: 0.7;
}

.spotlight-slide::after {
  width: 320px;
  height: 320px;
  left: -90px;
  bottom: -120px;
  opacity: 0.58;
  filter: blur(8px);
}

.spotlight-slide-brand {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.1)),
    url("./hero/hero-cream.png");
  background-size: cover;
  background-position: center;
}

.spotlight-slide-brand::before {
  background: radial-gradient(circle at 50% 50%, rgba(240, 221, 197, 0.45), rgba(240, 221, 197, 0.06) 60%, transparent 72%);
}

.spotlight-slide-brand::after {
  background: radial-gradient(circle at 50% 50%, rgba(255, 248, 241, 0.88), rgba(255, 248, 241, 0.08) 62%, transparent 72%);
}

.spotlight-slide-selection {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08)),
    url("./hero/hero-blush.png");
  background-size: cover;
  background-position: center;
}

.spotlight-slide-selection::before {
  background: radial-gradient(circle at 50% 50%, rgba(248, 220, 227, 0.42), rgba(248, 220, 227, 0.06) 60%, transparent 72%);
}

.spotlight-slide-selection::after {
  background: radial-gradient(circle at 50% 50%, rgba(255, 243, 247, 0.86), rgba(255, 243, 247, 0.08) 62%, transparent 72%);
}

.spotlight-slide-partnership {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08)),
    url("./hero/hero-water.png");
  background-size: cover;
  background-position: center;
}

.spotlight-slide-partnership::before {
  background: radial-gradient(circle at 50% 50%, rgba(229, 221, 210, 0.28), rgba(229, 221, 210, 0.04) 60%, transparent 72%);
}

.spotlight-slide-partnership::after {
  background: radial-gradient(circle at 50% 50%, rgba(255, 251, 247, 0.84), rgba(255, 251, 247, 0.08) 62%, transparent 72%);
}

.spotlight-copy p:last-of-type {
  color: var(--muted);
  line-height: 1.7;
  max-width: 590px;
}

.spotlight-copy-centered {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  justify-content: center;
  min-height: 100%;
}

.spotlight-copy-centered .button {
  margin-top: 0;
}

.spotlight-visual,
.spotlight-visual-brand,
.spotlight-visual-selection,
.spotlight-visual-partnership,
.spotlight-visual-card {
  display: none;
}

.spotlight-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  box-shadow: 0 14px 30px rgba(31, 53, 82, 0.16);
  transform: translateY(-50%);
  opacity: 0;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.spotlight-slider:hover .spotlight-arrow,
.spotlight-slider:focus-within .spotlight-arrow {
  opacity: 1;
}

.spotlight-arrow:hover,
.spotlight-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-50%) scale(1.03);
}

.spotlight-arrow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  line-height: 1;
}

.spotlight-arrow-prev {
  left: 18px;
}

.spotlight-arrow-next {
  right: 18px;
}

.hero-product-stage,
.contact-product-stage {
  position: relative;
  min-height: 420px;
}

.hero-card,
.contact-card {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(31, 53, 82, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(31, 53, 82, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card img,
.contact-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.hero-card-large {
  inset: 16% 8% 4% 18%;
}

.hero-card-top {
  width: 36%;
  height: 46%;
  top: 0;
  left: 6%;
}

.hero-card-bottom {
  width: 34%;
  height: 42%;
  right: 0;
  bottom: 4%;
}

.contact-card-main {
  inset: 8% 10% 8% 14%;
}

.contact-card-side {
  width: 34%;
  height: 56%;
  top: 18%;
  left: 0;
}

.retail-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 20px 26px;
}

.retail-point {
  padding-right: 18px;
  border-right: 1px solid rgba(31, 53, 82, 0.08);
}

.retail-point:last-child {
  border-right: 0;
  padding-right: 0;
}

.retail-kicker,
.category-chip,
.product-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.retail-kicker,
.category-chip {
  background: rgba(199, 164, 107, 0.12);
  color: var(--accent);
}

.retail-point strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--primary);
  font-size: 1.05rem;
}

.retail-point p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
}

.section-heading-shifted {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  margin-left: clamp(56px, 8vw, 132px);
}

.section-heading-offset {
  margin-left: clamp(56px, 8vw, 132px);
}

.section-heading.compact {
  align-items: flex-start;
}

.section-note {
  max-width: 480px;
  margin: 0;
}

.category-grid,
.product-grid,
.about-block,
.contact-layout {
  display: grid;
  gap: 20px;
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.category-card,
.product-card {
  background: #fff;
  border: 1px solid rgba(31, 53, 82, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 18px 34px rgba(31, 53, 82, 0.055);
}

.category-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 244, 0.74)),
    radial-gradient(circle at 18% 0%, rgba(239, 195, 184, 0.34), transparent 34%);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: auto -22% -34% 28%;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(188, 119, 131, 0.16), transparent 70%);
  pointer-events: none;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(188, 119, 131, 0.24);
  box-shadow: 0 24px 48px rgba(31, 53, 82, 0.09);
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.category-card h3,
.product-meta h3 {
  margin-top: 14px;
}

.category-chip {
  margin-top: 14px;
}

.category-thumb,
.product-art {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.product-media {
  position: relative;
  height: 246px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(31, 53, 82, 0.06);
  margin-bottom: 18px;
}

.product-backdrop {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: #fff;
}

.product-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 18px;
}

.product-backdrop-cream::after,
.product-backdrop-spf::after,
.product-backdrop-booster::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 8%;
  height: 42%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.22) 55%, transparent 57%);
}

.product-backdrop-cream::after {
  display: none;
}

.product-backdrop-korres::after {
  content: "";
  position: absolute;
  left: 22%;
  width: 56%;
  bottom: 12%;
  height: 60%;
  background: radial-gradient(circle at 50% 50%, rgba(212, 233, 89, 0.34), transparent 60%);
}

.product-backdrop-lierac::after {
  content: "";
  position: absolute;
  right: 12%;
  top: 14%;
  width: 26%;
  height: 72%;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.12), transparent);
  filter: blur(20px);
}

.category-thumb {
  height: 210px;
  background: transparent;
  border: 0;
  isolation: isolate;
}

.category-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  filter: drop-shadow(0 18px 22px rgba(31, 53, 82, 0.14)) saturate(1.04) contrast(1.03);
}

.category-thumb-stack {
  height: 248px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 22%, rgba(188, 119, 131, 0.26), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(239, 195, 184, 0.5), transparent 34%),
    radial-gradient(circle at 48% 106%, rgba(188, 119, 131, 0.24), transparent 45%),
    linear-gradient(135deg, rgba(255, 238, 233, 0.94), rgba(250, 249, 246, 0.7));
  box-shadow: inset 0 0 0 1px rgba(188, 119, 131, 0.1);
}

.category-thumb-stack::before,
.category-thumb-stack::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.category-thumb-stack::before {
  inset: auto 12% 8px 12%;
  height: 48px;
  background: radial-gradient(circle at 50% 50%, rgba(31, 53, 82, 0.16), transparent 72%);
  filter: blur(16px);
}

.category-thumb-stack::after {
  right: -34px;
  top: -26px;
  width: 154px;
  height: 154px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.34), transparent 38%),
    radial-gradient(circle at 50% 50%, rgba(239, 195, 184, 0.36), transparent 70%);
}

.category-shot {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.category-shot .category-photo {
  padding: 0;
  position: relative;
  z-index: 1;
}

.category-shot::before {
  content: "";
  position: absolute;
  inset: 24% 18%;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.06) 62%, transparent 80%);
  filter: blur(10px);
  z-index: 0;
}

.category-shot-main {
  left: 50%;
  top: 2px;
  width: 58%;
  height: 88%;
  transform: translateX(-50%);
}

.category-shot-left {
  left: 2px;
  bottom: 4px;
  width: 34%;
  height: 48%;
}

.category-shot-right {
  right: 2px;
  bottom: 4px;
  width: 34%;
  height: 48%;
}

.category-thumb-cream {
  background:
    radial-gradient(ellipse at 50% 86%, rgba(188, 119, 131, 0.32), transparent 42%),
    radial-gradient(circle at 16% 22%, rgba(239, 195, 184, 0.62), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(255, 222, 214, 0.58), transparent 30%),
    radial-gradient(circle at 42% 34%, rgba(255, 255, 255, 0.52), transparent 34%),
    linear-gradient(145deg, rgba(255, 224, 219, 0.96), rgba(250, 243, 238, 0.76));
}

.category-thumb-serum {
  background:
    radial-gradient(circle at 52% 32%, rgba(145, 214, 230, 0.54), transparent 31%),
    radial-gradient(circle at 17% 78%, rgba(177, 229, 205, 0.5), transparent 29%),
    radial-gradient(circle at 88% 78%, rgba(188, 119, 131, 0.22), transparent 30%),
    radial-gradient(circle at 42% 54%, rgba(255, 255, 255, 0.5), transparent 32%),
    linear-gradient(145deg, rgba(224, 249, 252, 0.96), rgba(250, 242, 242, 0.72));
}

.category-thumb-eye {
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 205, 158, 0.52), transparent 28%),
    radial-gradient(circle at 24% 72%, rgba(255, 229, 187, 0.54), transparent 31%),
    radial-gradient(circle at 90% 82%, rgba(188, 119, 131, 0.2), transparent 30%),
    radial-gradient(circle at 48% 46%, rgba(255, 255, 255, 0.55), transparent 34%),
    linear-gradient(145deg, rgba(255, 244, 224, 0.96), rgba(250, 244, 235, 0.72));
}

.category-thumb-fragrance .category-shot-main {
  width: 50%;
  height: 88%;
}

.category-thumb-fragrance .category-shot-left,
.category-thumb-fragrance .category-shot-right {
  width: 36%;
  height: 46%;
}

.category-thumb-fragrance {
  background:
    radial-gradient(circle at 48% 86%, rgba(188, 119, 131, 0.32), transparent 39%),
    radial-gradient(circle at 18% 24%, rgba(239, 195, 184, 0.58), transparent 31%),
    radial-gradient(circle at 84% 22%, rgba(245, 202, 214, 0.55), transparent 30%),
    radial-gradient(circle at 52% 46%, rgba(255, 255, 255, 0.48), transparent 34%),
    linear-gradient(145deg, rgba(255, 226, 235, 0.96), rgba(250, 242, 246, 0.72));
}

.category-thumb-fragrance .category-shot-main .category-photo {
  transform: scale(1.72);
}

.category-thumb-fragrance .category-shot-left .category-photo,
.category-thumb-fragrance .category-shot-right .category-photo {
  transform: scale(1.2);
}

.category-thumb-cream .category-shot-main .category-photo {
  transform: scale(1.12);
}

.category-thumb-serum .category-shot-main .category-photo {
  transform: scale(1.42);
}

.category-thumb-eye .category-shot-main .category-photo {
  transform: scale(1.48);
}

.category-thumb-eye .category-shot-left .category-photo,
.category-thumb-eye .category-shot-right .category-photo {
  transform: scale(1.32);
}

.category-thumb-cream .category-shot-left .category-photo,
.category-thumb-cream .category-shot-right .category-photo,
.category-thumb-serum .category-shot-left .category-photo,
.category-thumb-serum .category-shot-right .category-photo {
  transform: scale(1.32);
}

.product-art::before,
.product-art::after {
  content: "";
  position: absolute;
}

.thumb-beauty::before {
  left: 20%;
  bottom: 18%;
  width: 30%;
  height: 45%;
  background: linear-gradient(180deg, #fdfbf8, #d7cdc0);
  border-radius: 18px 18px 10px 10px;
}

.thumb-beauty::after {
  right: 18%;
  bottom: 18%;
  width: 18%;
  height: 56%;
  background: linear-gradient(180deg, #8c9b76, #556145);
  border-radius: 50px 50px 14px 14px;
  box-shadow: -36px 24px 0 -10px rgba(123, 146, 96, 0.4);
}

.thumb-derma::before {
  left: 18%;
  bottom: 16%;
  width: 50%;
  height: 22%;
  border-radius: 999px;
  background: rgba(199, 164, 107, 0.18);
}

.thumb-derma::after {
  left: 26%;
  bottom: 22%;
  width: 18%;
  height: 48%;
  background: linear-gradient(180deg, #faf7f1, #d7d1c7);
  border-radius: 16px;
  box-shadow: 72px 0 0 0 rgba(234, 227, 215, 0.98);
}

.thumb-wellness::before {
  left: 16%;
  bottom: 18%;
  width: 24%;
  height: 36%;
  background: linear-gradient(180deg, #ffffff, #d8cfbf);
  border-radius: 20px;
  box-shadow: 56px -12px 0 -4px rgba(236, 229, 216, 0.98);
}

.thumb-wellness::after {
  right: 14%;
  bottom: 18%;
  width: 28%;
  height: 28%;
  background: radial-gradient(circle at 35% 35%, #fff6db, #c6a66f 65%, #b78f52 100%);
  border-radius: 50%;
}

.thumb-home::before {
  left: 18%;
  bottom: 18%;
  width: 56%;
  height: 42%;
  background: linear-gradient(180deg, #faf7f1, #ddd2c4);
  border-radius: 22px 22px 12px 12px;
}

.thumb-home::after {
  right: 15%;
  bottom: 28%;
  width: 16%;
  height: 34%;
  background: linear-gradient(180deg, #ffffff, #d9d0c5);
  border-radius: 999px 999px 12px 12px;
}

.marketplace-preview {
  padding: 30px;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(31, 53, 82, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.38);
}

.catalog-search {
  flex: 1;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(31, 53, 82, 0.08);
}

.catalog-search::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border: 2px solid rgba(31, 53, 82, 0.36);
  border-radius: 50%;
  box-shadow: 8px 8px 0 -6px rgba(31, 53, 82, 0.36);
}

.catalog-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.catalog-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(199, 164, 107, 0.12);
  border: 1px solid rgba(199, 164, 107, 0.24);
  font-size: 0.88rem;
}

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

.product-grid-featured .product-card {
  padding-bottom: 22px;
}

.product-card-extra {
  display: flex;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  overflow: hidden;
  pointer-events: none;
  border-color: transparent;
  transition:
    max-height 340ms ease,
    opacity 260ms ease,
    transform 260ms ease,
    padding 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.product-grid-featured.is-expanded .product-card-extra {
  max-height: 760px;
  padding-top: 18px;
  padding-bottom: 22px;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  border-color: rgba(31, 53, 82, 0.08);
}

.product-grid-toggle {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.product-expand-button {
  min-width: 260px;
}

.product-meta {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-meta h3 {
  min-height: 2.7em;
  line-height: 1.18;
}

.product-meta p {
  margin: 12px 0 0;
  min-height: 5.9em;
}

.art-cleanser::before {
  left: 32%;
  bottom: 18%;
  width: 24%;
  height: 54%;
  background: linear-gradient(180deg, #fbfaf7, #d8cdbc);
  border-radius: 22px 22px 12px 12px;
}

.art-cleanser::after {
  left: 37%;
  bottom: 67%;
  width: 14%;
  height: 8%;
  background: #90a16f;
  border-radius: 999px;
}

.art-serum::before {
  left: 26%;
  bottom: 16%;
  width: 22%;
  height: 58%;
  background: linear-gradient(180deg, rgba(147, 126, 70, 0.95), rgba(93, 68, 31, 0.95));
  border-radius: 18px 18px 10px 10px;
}

.art-serum::after {
  left: 54%;
  bottom: 16%;
  width: 18%;
  height: 44%;
  background: linear-gradient(180deg, rgba(221, 225, 193, 0.94), rgba(144, 152, 112, 0.98));
  border-radius: 50px 50px 12px 12px;
}

.art-wellness::before {
  left: 18%;
  bottom: 22%;
  width: 24%;
  height: 28%;
  background: radial-gradient(circle at 35% 35%, #fff7e1, #cfaa72 70%);
  border-radius: 50%;
  box-shadow: 82px -6px 0 -12px rgba(255, 246, 218, 0.9);
}

.art-wellness::after {
  right: 18%;
  bottom: 18%;
  width: 18%;
  height: 52%;
  background: linear-gradient(180deg, #ffffff, #dad0c1);
  border-radius: 12px;
}

.art-home::before {
  left: 16%;
  bottom: 18%;
  width: 28%;
  height: 48%;
  background: linear-gradient(180deg, #fdfaf7, #d8cdc0);
  border-radius: 18px;
  box-shadow: 88px 0 0 -10px rgba(233, 225, 214, 0.98);
}

.art-home::after {
  left: 56%;
  bottom: 18%;
  width: 14%;
  height: 54%;
  background: linear-gradient(180deg, #ffffff, #d2c8bb);
  border-radius: 999px 999px 12px 12px;
}

.product-label,
.contact-key {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 16px;
}

.product-footer {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 14px 0 0;
}

.product-pricing strong {
  color: var(--primary);
  font-size: 1.24rem;
  line-height: 1;
}

.product-pricing span {
  color: var(--muted);
  font-size: 0.88rem;
}

.product-tag {
  background: rgba(31, 53, 82, 0.07);
  color: var(--primary);
  font-size: 0.72rem;
}

.product-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.product-add-button {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.secondary-products .section-heading {
  margin-bottom: 18px;
}

.product-grid-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card-compact .product-media {
  height: 202px;
}

.product-card-compact .product-meta h3 {
  font-size: 1.02rem;
  min-height: 2.55em;
}

.product-card-compact .product-meta p {
  font-size: 0.97rem;
  min-height: 5.7em;
}

.secondary-products .section-note {
  max-width: 520px;
}

.product-grid-featured,
.product-grid-compact {
  gap: 20px;
}

.product-grid-featured .product-card .product-photo {
  padding: 14px;
}

.product-photo-featured-jar {
  transform: scale(1.18);
}

.product-photo-featured-bottle {
  transform: scale(1.1);
}

.product-photo-featured-fragrance {
  transform: scale(1.14);
}

.product-photo-featured-eye {
  transform: scale(1.08);
}

.product-photo-torriden-cream {
  padding: 6px;
  transform: scale(1.14);
}

.product-grid-compact .product-card .product-photo {
  padding: 12px;
}

.product-grid-compact .product-card:nth-child(1) .product-photo,
.product-grid-compact .product-card:nth-child(3) .product-photo {
  transform: scale(1.03);
}

.product-grid-compact .product-card:nth-child(2) .product-photo,
.product-grid-compact .product-card:nth-child(4) .product-photo {
  transform: scale(1.06);
}

.collection-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  padding: 22px 28px;
  align-items: center;
}

.collection-copy h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
}

.collection-copy p:not(.eyebrow) {
  margin: 10px 0 0;
  max-width: 42ch;
}

.collection-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.collection-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(31, 53, 82, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.94rem;
  box-shadow: 0 10px 18px rgba(31, 53, 82, 0.035);
}

.collection-list-static .collection-pill {
  cursor: default;
}

.collection-pill:hover,
.collection-pill:focus-visible {
  border-color: rgba(199, 164, 107, 0.7);
  color: var(--accent);
}

.art-laroche-spray::before {
  left: 39%;
  bottom: 15%;
  width: 22%;
  height: 64%;
  background: linear-gradient(180deg, #ffffff, #dde2e5 68%, #e8ecef 100%);
  border-radius: 20px 20px 14px 14px;
  box-shadow: inset 0 -16px 0 rgba(191, 203, 217, 0.38);
}

.art-laroche-spray::after {
  left: 46%;
  bottom: 68%;
  width: 8%;
  height: 16%;
  background: linear-gradient(180deg, #14a0ef, #1f87ca);
  border-radius: 2px;
  box-shadow: 0 -10px 0 14px rgba(250, 249, 246, 0.96);
}

.art-torriden-cream::before {
  left: 34%;
  bottom: 17%;
  width: 32%;
  height: 62%;
  background: linear-gradient(180deg, #bcecff, #8ed2ee 45%, #edf2f5 100%);
  border-radius: 18px 18px 12px 12px;
}

.art-torriden-cream::after {
  left: 20%;
  bottom: 12%;
  width: 60%;
  height: 44%;
  background: radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.96), rgba(237, 243, 245, 0.4) 58%, transparent 60%);
}

.art-iunik-spf::before {
  left: 34%;
  bottom: 15%;
  width: 32%;
  height: 64%;
  background: linear-gradient(180deg, #eaf4be, #d7e793 44%, #fffaf4 45%, #fffaf4 100%);
  border-radius: 18px 18px 12px 12px;
}

.art-iunik-spf::after {
  left: 17%;
  bottom: 18%;
  width: 68%;
  height: 34%;
  background: radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.92), rgba(239, 245, 225, 0.45) 62%, transparent 64%);
}

.art-yardley::before {
  left: 34%;
  bottom: 14%;
  width: 32%;
  height: 68%;
  background: linear-gradient(180deg, #f6ffd6, #d8f08b 50%, #b6d86e 100%);
  border-radius: 16px 16px 12px 12px;
}

.art-yardley::after {
  left: 43%;
  bottom: 74%;
  width: 14%;
  height: 8%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
}

.art-laroche-serum::before {
  left: 36%;
  bottom: 16%;
  width: 28%;
  height: 56%;
  background: linear-gradient(180deg, #8f55ac, #6f2d8f 70%, #ffffff 70%, #ffffff 100%);
  border-radius: 16px 16px 12px 12px;
}

.art-laroche-serum::after {
  left: 44%;
  bottom: 68%;
  width: 12%;
  height: 20%;
  background: linear-gradient(180deg, #ffffff, #f8f7f4);
  border-radius: 999px 999px 10px 10px;
}

.art-torriden-booster::before {
  left: 33%;
  bottom: 12%;
  width: 34%;
  height: 70%;
  background: linear-gradient(180deg, #dff9ff, #b3effa 60%, #a2e5f2 100%);
  border-radius: 12px 12px 10px 10px;
}

.art-torriden-booster::after {
  left: 25%;
  bottom: 18%;
  width: 52%;
  height: 64%;
  background: radial-gradient(circle at 50% 28%, rgba(193, 244, 255, 0.96), rgba(193, 244, 255, 0.18) 62%, transparent 64%);
}

.art-korres-elixir::before {
  left: 34%;
  bottom: 12%;
  width: 32%;
  height: 62%;
  background: linear-gradient(180deg, #d8ed48, #b4cf2d 62%, #ffffff 62%, #ffffff 100%);
  border-radius: 16px 16px 12px 12px;
}

.art-korres-elixir::after {
  left: 43%;
  bottom: 67%;
  width: 14%;
  height: 18%;
  background: linear-gradient(180deg, #ffffff, #f6f5f2);
  border-radius: 999px 999px 10px 10px;
}

.art-lierac-gel::before {
  left: 33%;
  bottom: 12%;
  width: 34%;
  height: 68%;
  background: linear-gradient(180deg, #f7d6c8, #efc0b0 70%, #f4e2d8 100%);
  border-radius: 18px 18px 12px 12px;
}

.art-lierac-gel::after {
  left: 44%;
  bottom: 74%;
  width: 14%;
  height: 9%;
  background: #131313;
  border-radius: 4px;
  box-shadow: 6px -8px 0 2px #131313;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 600;
}

.text-link::after {
  content: "->";
  color: var(--accent);
}

.about-block {
  grid-template-columns: 1fr 1fr;
}

.about-copy,
.value-stack {
  padding: 34px;
}

.value-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.value-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(31, 53, 82, 0.08);
}

.value-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(199, 164, 107, 0.16);
  color: var(--primary);
  font-weight: 700;
}

.cta-banner {
  justify-content: space-between;
  gap: 24px;
  padding: 30px 34px;
}

.cta-banner-actions {
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 0;
  border-top: 0;
  margin-bottom: 0;
}

.storefront-footer {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 14% 12%, rgba(239, 195, 184, 0.68), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(188, 119, 131, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(239, 195, 184, 0.68), rgba(250, 249, 246, 0.94) 52%, rgba(239, 195, 184, 0.5));
  color: var(--text);
  border: 1px solid rgba(188, 119, 131, 0.18);
  box-shadow: 0 26px 55px rgba(31, 53, 82, 0.1);
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.82fr);
  gap: 24px;
  align-items: center;
  padding: 28px 38px 24px;
  background: rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(188, 119, 131, 0.16);
}

.footer-newsletter .eyebrow {
  color: var(--accent);
}

.footer-newsletter h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.7rem, 3vw, 3.05rem);
  line-height: 0.96;
  max-width: 680px;
}

.footer-newsletter p:not(.eyebrow) {
  margin: 8px 0 0;
  max-width: 520px;
  color: rgba(45, 45, 45, 0.68);
}

.footer-newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.footer-newsletter-form input,
.footer-newsletter-form button {
  min-height: 46px;
  border-radius: 999px;
  font: inherit;
}

.footer-newsletter-form input {
  width: 100%;
  border: 1px solid rgba(188, 119, 131, 0.2);
  background: rgba(255, 255, 255, 0.58);
  color: var(--primary);
  padding: 0 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.footer-newsletter-form input::placeholder {
  color: rgba(188, 119, 131, 0.68);
}

.footer-newsletter-form button {
  border: 0;
  background: var(--accent);
  color: #fff;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(188, 119, 131, 0.24);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 0.95fr) minmax(140px, 0.38fr) minmax(230px, 0.7fr) minmax(230px, 0.68fr);
  gap: 24px;
  padding: 28px 38px 32px;
}

.footer-brand-block p,
.footer-column small,
.footer-impressum p {
  color: rgba(45, 45, 45, 0.62);
}

.footer-contact-lines,
.footer-column {
  display: grid;
  gap: 10px;
}

.footer-contact-lines {
  margin-top: 16px;
  color: rgba(45, 45, 45, 0.7);
}

.footer-column strong {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
}

.footer-column a {
  color: var(--primary);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--accent);
  outline: none;
}

.footer-impressum {
  gap: 7px;
}

.footer-impressum p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.42;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(188, 119, 131, 0.2);
  border-radius: 999px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 20px rgba(31, 53, 82, 0.06);
}

.footer-links {
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.24fr) minmax(280px, 0.76fr);
  align-items: start;
}

.contact-form-wrap,
.info-card {
  padding: 28px;
}

.contact-form-wrap .section-heading.compact {
  margin-bottom: 18px;
}

.contact-form-wrap .button-primary {
  min-height: 48px;
  width: auto;
  min-width: 210px;
  justify-self: start;
  padding: 0 30px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(31, 53, 82, 0.14);
}

.legal-nav {
  justify-self: end;
  align-self: center;
}

.legal-hero {
  padding: 44px;
  background:
    radial-gradient(circle at 84% 10%, rgba(188, 119, 131, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(239, 195, 184, 0.72), rgba(250, 249, 246, 0.95));
}

.legal-hero h1 {
  margin: 6px 0 12px;
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.9;
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(45, 45, 45, 0.72);
}

.legal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.legal-card {
  padding: 26px;
  border: 1px solid rgba(188, 119, 131, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(31, 53, 82, 0.06);
}

.legal-card h2 {
  margin: 0 0 12px;
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1;
}

.legal-card p {
  margin: 0 0 12px;
  color: rgba(45, 45, 45, 0.76);
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--accent);
  font-weight: 700;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 53, 82, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
}

.contact-form textarea {
  min-height: 156px;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid rgba(199, 164, 107, 0.85);
  border-color: rgba(199, 164, 107, 0.8);
}

.full-width,
.button-block,
.hidden-field {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

.contact-side {
  display: grid;
  gap: 0;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.contact-side .info-card {
  min-height: 100%;
}

.contact-side .info-card p:last-child {
  margin-top: 18px;
}

.product-card.is-highlighted,
.category-card.is-highlighted {
  border-color: rgba(199, 164, 107, 0.5);
  box-shadow: 0 18px 36px rgba(199, 164, 107, 0.18);
}

.support-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 34;
}

.support-fab-headset {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(188, 119, 131, 0.16);
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 26px rgba(31, 53, 82, 0.18);
  cursor: pointer;
}

.support-fab-headset .utility-icon {
  width: 22px;
  height: 22px;
}

.support-quick-panel {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 33;
  width: min(320px, calc(100vw - 28px));
  padding: 14px;
  border: 1px solid rgba(188, 119, 131, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 56px rgba(31, 53, 82, 0.16);
}

.support-quick-panel[hidden] {
  display: none;
}

.support-chat-window {
  position: fixed;
  right: 22px;
  bottom: 86px;
  z-index: 35;
  width: min(360px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid rgba(188, 119, 131, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 70px rgba(31, 53, 82, 0.18);
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.support-chat-window.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.support-chat-window[hidden] {
  display: none;
}

.support-chat-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  padding: 18px 18px 16px;
  background: linear-gradient(135deg, rgba(239, 195, 184, 0.48), rgba(250, 249, 246, 0.96));
  color: var(--primary);
}

.support-chat-head strong,
.support-chat-head span {
  display: block;
}

.support-chat-head strong {
  margin-bottom: 4px;
  font-size: 1rem;
}

.support-chat-head span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.support-chat-close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--accent);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.support-chat-body {
  display: grid;
  gap: 8px;
  padding: 18px;
  color: var(--text);
  line-height: 1.6;
}

.support-chat-body p,
.support-chat-body small {
  margin: 0;
}

.support-chat-body small {
  color: var(--muted);
}

.support-chat-body .support-chat-reply {
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(239, 195, 184, 0.25);
  color: var(--primary);
  font-weight: 600;
}

.support-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 0 18px 18px;
}

.support-chat-form input {
  min-height: 44px;
  border: 1px solid rgba(188, 119, 131, 0.16);
  border-radius: 999px;
  background: rgba(250, 249, 246, 0.78);
  padding: 0 16px;
  font: inherit;
  color: var(--primary);
}

.support-chat-form input:focus {
  outline: 2px solid rgba(188, 119, 131, 0.18);
  border-color: rgba(188, 119, 131, 0.32);
}

.support-chat-form button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 0 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(188, 119, 131, 0.22);
}

.cookie-banner {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 32;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(188, 119, 131, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 64px rgba(31, 53, 82, 0.14);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 260ms ease, transform 260ms ease;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner.is-closing {
  opacity: 0;
  transform: translateY(28px);
  pointer-events: none;
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1rem;
}

.cookie-banner-copy p {
  margin: 0;
  max-width: 780px;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.6;
}

.cookie-detail-link {
  margin-top: 12px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-button {
  min-height: 44px;
  padding: 0 20px;
}

.cookie-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(239, 195, 184, 0.46);
  color: var(--accent);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(31, 53, 82, 0.22);
  backdrop-filter: blur(4px);
}

.cart-overlay[hidden] {
  display: none;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 36;
  width: min(430px, 100vw);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(188, 119, 131, 0.16);
  box-shadow: -24px 0 48px rgba(31, 53, 82, 0.12);
  transform: translateX(100%);
  transition: transform 280ms ease;
}

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

.cart-drawer-header,
.cart-drawer-footer {
  padding: 22px 22px 18px;
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(31, 53, 82, 0.08);
}

.cart-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(239, 195, 184, 0.46);
  color: var(--accent);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cart-drawer-body {
  flex: 1;
  overflow: auto;
  padding: 18px 22px;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-empty {
  color: var(--muted);
  line-height: 1.7;
}

.cart-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(31, 53, 82, 0.08);
  border-radius: 18px;
  background: #fff;
}

.cart-item-media {
  width: 82px;
  height: 82px;
  border-radius: 14px;
  border: 1px solid rgba(31, 53, 82, 0.06);
  background: #fff;
  object-fit: contain;
  padding: 8px;
}

.cart-item-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.cart-item-copy strong {
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.3;
}

.cart-item-brand {
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cart-item-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 700;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(31, 53, 82, 0.1);
  border-radius: 999px;
  background: rgba(250, 249, 246, 0.96);
  overflow: hidden;
}

.cart-qty button {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--primary);
  font: inherit;
  font-size: 1rem;
  cursor: pointer;
}

.cart-qty span {
  min-width: 30px;
  text-align: center;
  color: var(--primary);
  font-weight: 700;
}

.cart-remove {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.cart-drawer-footer {
  border-top: 1px solid rgba(31, 53, 82, 0.08);
  background: rgba(250, 249, 246, 0.88);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: var(--primary);
}

.cart-total-row strong {
  font-size: 1.2rem;
}

.cart-notice {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(188, 119, 131, 0.24);
  border-radius: 16px;
  background: rgba(239, 195, 184, 0.18);
  color: var(--primary);
  font-size: 0.95rem;
  line-height: 1.45;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 37;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(31, 53, 82, 0.28);
  backdrop-filter: blur(6px);
}

.checkout-modal[hidden] {
  display: none;
}

.checkout-dialog {
  width: min(520px, 100%);
  border: 1px solid rgba(188, 119, 131, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 64px rgba(31, 53, 82, 0.16);
  overflow: hidden;
}

.checkout-form {
  display: grid;
  gap: 16px;
  padding: 18px 22px 24px;
}

.checkout-form label {
  display: grid;
  gap: 8px;
}

.checkout-form span {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.checkout-form input {
  width: 100%;
  border: 1px solid rgba(31, 53, 82, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.search-dropdown {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.search-dropdown.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.utility-favorites-button {
  position: relative;
}

.utility-icon-heart::before {
  content: "♡";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1;
}

.utility-favorites-count {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(188, 119, 131, 0.24);
}

.utility-favorites-count:empty {
  display: none;
}

.utility-popover-favorites {
  display: grid;
  gap: 14px;
}

.favorites-popover-head h3 {
  margin: 2px 0 0;
  font-size: 1.05rem;
}

.favorites-list {
  display: grid;
  gap: 10px;
}

.favorites-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.favorite-item {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(31, 53, 82, 0.08);
  border-radius: 18px;
  background: rgba(250, 249, 246, 0.72);
}

.favorite-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(31, 53, 82, 0.06);
  padding: 8px;
}

.favorite-item-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.favorite-item-copy span {
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.favorite-item-copy strong {
  color: var(--primary);
  font-size: 0.95rem;
  line-height: 1.35;
}

.favorite-item-action {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--primary);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.favorite-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.favorite-item-remove {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(188, 119, 131, 0.26);
  border-radius: 50%;
  background: rgba(188, 119, 131, 0.1);
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.favorite-item-action:hover,
.favorite-item-action:focus-visible,
.favorite-item-remove:hover,
.favorite-item-remove:focus-visible {
  color: var(--accent);
  outline: none;
}

.favorite-item-remove:hover,
.favorite-item-remove:focus-visible {
  background: var(--accent);
  color: #fff;
}

.product-favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(188, 119, 131, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  box-shadow: 0 12px 24px rgba(31, 53, 82, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.product-favorite:hover,
.product-favorite:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(188, 119, 131, 0.24);
  outline: none;
}

.product-favorite.is-active {
  background: rgba(188, 119, 131, 0.14);
  color: var(--accent);
}

.product-favorite-icon {
  display: inline-grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.16rem;
  line-height: 1;
}

.company-story {
  padding: 34px;
}

.company-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: start;
}

.company-story-copy {
  display: grid;
  gap: 16px;
}

.company-story-copy p {
  margin: 0;
  max-width: 66ch;
}

body[data-page="contact"] .company-story .section-heading h2,
body[data-page="contact"] .contact-form-wrap .section-heading h2,
body[data-page="contact"] .info-card h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 0.98;
}

body[data-page="contact"] .brand-rail .section-heading h2 {
  font-size: clamp(1.7rem, 3.1vw, 2.55rem);
  line-height: 1.02;
}

.company-directions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.direction-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(31, 53, 82, 0.08);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 32px rgba(31, 53, 82, 0.05);
}

.direction-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.direction-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.direction-card p {
  margin: 0;
}

.brand-rail {
  padding: 28px 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.22)),
    rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.brand-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-marquee-track {
  display: flex;
  align-items: center;
  gap: 38px;
  width: max-content;
  animation: brand-marquee 34s linear infinite;
}

.brand-logo-item {
  flex: 0 0 auto;
  width: 170px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

.brand-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
  filter: drop-shadow(0 8px 18px rgba(31, 53, 82, 0.05));
}

@keyframes brand-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .retail-strip,
  .category-grid,
  .product-grid,
  .product-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-tools {
    grid-template-columns: 1fr;
  }

  .spotlight-track {
    min-height: 560px;
  }

  .spotlight-slide {
    grid-template-columns: 1fr;
    min-height: 560px;
    padding: 28px 22px;
  }

  .spotlight-arrow {
    opacity: 1;
    width: 46px;
    height: 46px;
  }

  .spotlight-visual {
    min-height: 420px;
  }

  .hero,
  .contact-hero,
  .about-block,
  .contact-layout,
  .collection-band,
  .company-story-grid,
  .footer-newsletter,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: stretch;
  }

  .site-header {
    gap: 18px;
    width: calc(100vw - 24px);
    margin-left: calc(50% - 50vw + 12px);
    margin-right: calc(50% - 50vw + 12px);
  }

  .header-main {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
    padding: 8px 16px 0;
  }

  .header-utilities {
    justify-self: start;
    flex-wrap: wrap;
  }

  .company-directions {
    grid-template-columns: 1fr;
  }

  .site-search-header {
    width: min(100%, 560px);
  }

  .header-catalog-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 2px 16px 0;
  }

  .topline {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 8px 16px;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-main {
    gap: 14px;
  }

  .header-utilities {
    flex-wrap: wrap;
    gap: 10px;
  }

  .site-shell {
    width: min(calc(100% - 12px), var(--container));
    padding-top: 0;
  }

  .hero,
  .contact-hero,
  .marketplace-preview,
  .about-copy,
  .value-stack,
  .contact-form-wrap,
  .info-card,
  .cta-banner {
    padding: 22px;
  }

  .toolbar,
  .section-heading,
  .cta-banner,
  .site-footer,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-newsletter,
  .footer-main {
    padding: 24px;
  }

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

  .favorite-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .favorite-item-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .spotlight-track {
    min-height: 440px;
  }

  .contact-form,
  .legal-layout,
  .category-grid,
  .product-grid,
  .product-grid-compact,
  .retail-strip {
    grid-template-columns: 1fr;
  }

  .spotlight-arrow-prev {
    left: 10px;
  }

  .spotlight-arrow-next {
    right: 10px;
  }

  .spotlight-slide {
    min-height: 440px;
  }

  .site-tools {
    padding: 18px;
  }

  .brand-mark {
    font-size: clamp(2.4rem, 13vw, 3.5rem);
  }

  .brand-tag {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  .brand-subline {
    gap: 10px;
  }

  .brand-subline strong {
    font-size: 0.72rem;
    letter-spacing: 0.34em;
  }

  .brand-subline span {
    width: 42px;
  }

  .brand-hero .brand-mark {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .brand-hero .brand-tag {
    font-size: 0.78rem;
    letter-spacing: 0.24em;
  }

  .header-catalog-nav,
  .header-service-nav {
    gap: 10px;
  }

  .header-catalog-nav a,
  .header-service-nav a {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.85rem;
  }

  .utility-popover,
  .support-quick-panel {
    width: min(100vw - 28px, 320px);
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 18px;
  }

  .cookie-banner-actions {
    flex-wrap: wrap;
  }
}
