:root {
  --primary: #ef8fa8;
  --primary-hover: #e9809a;
  --primary-active: #dc6c88;
  --primary-soft: #ffe5ec;
  --bg: #fffafa;
  --bg-soft: #fff3f6;
  --surface: #ffffff;
  --surface-tint: #fff8fa;
  --text: #251b20;
  --muted: #6e5a62;
  --border: #f0d9e1;
  --shadow-sm: 0 4px 12px rgba(23, 13, 18, 0.06);
  --shadow-md: 0 10px 24px rgba(23, 13, 18, 0.08);
  --shadow-lg: 0 18px 34px rgba(23, 13, 18, 0.1);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --container: min(1200px, 92vw);
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@supports (color: color-mix(in srgb, black, white)) {
  :root {
    --primary-hover: color-mix(in srgb, var(--primary), #000 8%);
    --primary-active: color-mix(in srgb, var(--primary), #000 16%);
    --primary-soft: color-mix(in srgb, var(--primary), #fff 82%);
  }
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: clip;
}

body {
  font-family: "Segoe UI", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  color: var(--text);
  line-height: 1.5;
  background:
    radial-gradient(720px 320px at 10% -10%, #ffe8ef 0%, transparent 55%),
    radial-gradient(580px 260px at 92% 0%, #fff1e6 0%, transparent 60%),
    linear-gradient(180deg, #fffdfd, var(--bg));
  overflow-x: hidden;
}

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

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

.site-shell {
  min-height: 100dvh;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-main {
  min-height: 70vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, #fff 89%, var(--primary-soft));
  backdrop-filter: saturate(155%) blur(10px);
}

.site-header.is-scrolled {
  border-color: color-mix(in srgb, var(--primary-soft), #fff 35%);
  box-shadow: 0 12px 26px rgba(39, 16, 27, 0.09);
  background: color-mix(in srgb, #fff 82%, var(--primary-soft));
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 0.7rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand img {
  width: 136px;
}

.brand-mark {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a5568;
  border-left: 1px solid var(--border);
  padding-left: 0.55rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid color-mix(in srgb, var(--primary-soft), #fff 20%);
  border-radius: 999px;
  padding: 0.28rem;
  box-shadow: 0 8px 20px rgba(23, 13, 18, 0.06);
}

.nav-link,
.cart-link {
  position: relative;
  padding: 0.58rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.94rem;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav-link::after,
.animated-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.4rem;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}

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

.nav-link:hover,
.cart-link:hover {
  color: var(--text);
  background: var(--bg-soft);
}

.nav-link.is-active,
.cart-link.is-active {
  background: linear-gradient(145deg, #fff, #ffeaf1);
  color: #7a334b;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--primary), #fff 55%);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
}

.header-hotline {
  display: inline-flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #fff, #fff3f8);
  border-radius: 12px;
  padding: 0.4rem 0.65rem;
  line-height: 1.1;
  box-shadow: var(--shadow-sm);
}

.header-hotline__label {
  font-size: 0.67rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.header-hotline strong {
  font-size: 0.84rem;
  color: #7d334c;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

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

.hero {
  padding: clamp(2.4rem, 5vw, 4rem) 0;
  position: relative;
  overflow: clip;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.58;
}

.hero-glow--one {
  width: 280px;
  height: 280px;
  left: -120px;
  top: 24px;
  background: radial-gradient(circle at center, rgba(255, 170, 196, 0.52) 0%, rgba(255, 170, 196, 0) 70%);
  animation: float-glow 7s ease-in-out infinite;
}

.hero-glow--two {
  width: 230px;
  height: 230px;
  right: -60px;
  bottom: 8px;
  background: radial-gradient(circle at center, rgba(255, 206, 166, 0.46) 0%, rgba(255, 206, 166, 0) 72%);
  animation: float-glow 8.5s ease-in-out infinite reverse;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.1rem, 3vw, 2.2rem);
  align-items: center;
}

.hero-copy {
  max-width: 62ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #8b3f58;
  background: var(--primary-soft);
  letter-spacing: 0.03em;
}

.hero h1 {
  margin: 0.85rem 0;
  font-size: clamp(2rem, 5vw, 3.65rem);
  line-height: 1.02;
  text-wrap: balance;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.08rem);
}

.hero-quickstats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.hero-quickstats div {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #fff, #fff2f7);
  border-radius: 12px;
  padding: 0.52rem 0.56rem;
}

.hero-quickstats strong {
  display: block;
  font-size: 0.95rem;
  color: #7e334c;
}

.hero-quickstats span {
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.hero-trust span {
  border: 1px dashed color-mix(in srgb, var(--primary), #fff 45%);
  background: #fff;
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: #8a3f57;
}

.hero-media {
  border-radius: var(--radius-lg);
  overflow: clip;
  border: 1px solid var(--border);
  box-shadow: 0 18px 34px rgba(23, 13, 18, 0.16);
  background: #f9f2f4;
  position: relative;
  min-height: clamp(360px, 46vw, 620px);
}

.hero-media picture {
  display: block;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease-out), filter 0.35s ease;
}

.hero-media:hover img {
  transform: scale(1.05);
  filter: saturate(1.06);
}

.hero-media .hero-copy {
  position: absolute;
  left: clamp(0.8rem, 2vw, 1.4rem);
  top: clamp(0.8rem, 2vw, 1.4rem);
  max-width: min(560px, calc(100% - 2rem));
  z-index: 2;
  padding: clamp(0.85rem, 2vw, 1.2rem);
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: 0 1px 6px rgba(255, 255, 255, 0.6);
}

.hero-media-card {
  position: absolute;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 26px rgba(31, 12, 22, 0.18);
  backdrop-filter: blur(6px);
  padding: 0.5rem 0.62rem;
}

.hero .hero-media-card {
  display: none !important;
}

.hero-media-card strong {
  display: block;
  font-size: 0.78rem;
  color: #742f46;
}

.hero-media-card span {
  display: block;
  font-size: 0.72rem;
  color: #5b434d;
}

.hero-media-card--top {
  top: 0.8rem;
  left: 0.8rem;
}

.hero-media-card--bottom {
  right: 0.8rem;
  bottom: 0.8rem;
}

.section {
  padding: clamp(1.7rem, 4vw, 2.6rem) 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: 1rem;
}

.section-title {
  margin: 0.3rem 0 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.15;
}

.section-note {
  margin: 0;
  color: var(--muted);
}

.animated-link {
  position: relative;
  font-weight: 600;
  color: #8b3f58;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.7rem, 2vw, 1.1rem);
}

.products-grid {
  align-items: stretch;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: clip;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border));
}

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

@supports not (aspect-ratio: 1 / 1) {
  .card-media::before {
    content: "";
    display: block;
    padding-top: 100%;
  }

  .card-media > picture,
  .card-media > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

.trend-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  border-radius: 999px;
  padding: 0.22rem 0.52rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, #ef8fa8, #da5478);
  box-shadow: 0 8px 16px rgba(218, 84, 120, 0.28);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #f8f0f3;
  transform-origin: center;
  transition: transform 0.55s var(--ease-out);
}

.card-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

.card-body {
  padding: 0.95rem;
}

.card-title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  line-height: 1.35;
}

.card-title a:hover {
  color: #8b3f58;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.price {
  font-weight: 700;
  color: #9f3d59;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.58rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #8a3e57;
  background: var(--primary-soft);
  white-space: nowrap;
}

.badge-danger {
  color: #8f2e2e;
  background: #ffeaea;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 0.7rem 1rem;
  font: inherit;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--primary-hover));
  border-color: color-mix(in srgb, var(--primary), #000 8%);
  box-shadow: 0 8px 16px rgba(220, 108, 136, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(145deg, var(--primary-hover), var(--primary-active));
}

.btn-primary:active {
  background: var(--primary-active);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost {
  background: #fff;
  border-color: var(--border);
  color: var(--muted);
  padding: 0.5rem 0.65rem;
  font-size: 0.84rem;
}

.btn:focus-visible,
.input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.filter-fab:focus-visible,
.filter-close:focus-visible,
.accordion-toggle:focus-visible,
.page-pill:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.page-head {
  padding: clamp(1.4rem, 3.2vw, 2.3rem) 0 0.9rem;
}

.page-head h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.55rem, 3.5vw, 2.45rem);
  line-height: 1.1;
}

.breadcrumbs {
  color: var(--muted);
  font-size: 0.92rem;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: clamp(0.95rem, 2.4vw, 1.2rem);
}

.form-grid {
  display: grid;
  gap: 0.78rem;
}

.input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  padding: 0.68rem 0.75rem;
  font: inherit;
}

label {
  display: grid;
  gap: 0.35rem;
}

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

.two-col {
  display: grid;
  gap: 0.78rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.notice {
  margin-bottom: 0.8rem;
  border-radius: 11px;
  padding: 0.74rem 0.86rem;
  font-weight: 500;
}

.notice.error {
  color: #8d2e2e;
  border: 1px solid #f3c7c7;
  background: #fff1f1;
}

.notice.success {
  color: #216942;
  border: 1px solid #bfe9ce;
  background: #edf9f1;
}

.table-wrap {
  overflow-x: auto;
}

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

th,
td {
  padding: 0.68rem 0.5rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
}

.cart-panel {
  border-radius: 16px;
}

.cart-table th {
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #6f5c65;
}

.cart-table td {
  font-size: 0.92rem;
}

.cart-product {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.cart-product__img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
}

.cart-product__meta {
  min-width: 0;
}

.cart-product__name {
  display: inline-block;
  color: var(--text);
}

.cart-product__sub {
  color: var(--muted);
  font-size: 0.85rem;
}

.cart-product__color {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cart-color-swatch {
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border), #fff 15%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  flex: 0 0 auto;
}

.cart-qty {
  max-width: 92px;
  text-align: center;
}

.cart-line-total {
  font-weight: 600;
}

.cart-remove-btn {
  min-height: 36px;
}

.cart-summary {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
  align-items: center;
}

.cart-summary__stats {
  display: grid;
  gap: 0.28rem;
}

.cart-summary__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .cart-table thead {
    display: none;
  }

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

  .cart-table tr {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.65rem;
    margin-bottom: 0.65rem;
    background: #fff;
    box-shadow: 0 6px 16px rgba(34, 18, 24, 0.06);
  }

  .cart-table td {
    border: 0;
    padding: 0.42rem 0;
  }

  .cart-table td[data-label]::before {
    content: attr(data-label);
    display: inline-block;
    min-width: 64px;
    margin-right: 0.42rem;
    color: #7f6a73;
    font-size: 0.74rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    vertical-align: middle;
  }

  .cart-table td[data-label="Product"]::before {
    display: none;
  }

  .cart-product {
    align-items: flex-start;
  }

  .cart-product__img {
    width: 66px;
    height: 66px;
  }

  .cart-table td[data-label="Qty"],
  .cart-table td[data-label="Action"] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .cart-qty {
    max-width: 86px;
    margin-left: auto;
  }

  .cart-remove-btn {
    margin-left: auto;
  }

  .cart-summary {
    gap: 0.7rem;
  }

  .cart-summary__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .cart-summary__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

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

.checkout-summary-before-btn {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.9rem;
  padding: 0.95rem;
  border-radius: 12px;
}

.checkout-summary-title {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  line-height: 1.2;
}

.checkout-summary-items {
  display: grid;
  gap: 0.55rem;
  max-height: 200px;
  overflow: auto;
  padding-right: 0.2rem;
}

.checkout-summary-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.checkout-summary-item__img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  flex: 0 0 48px;
}

.checkout-summary-item__meta {
  min-width: 0;
}

.checkout-summary-item__name {
  display: block;
  font-size: 0.92rem;
  line-height: 1.25;
}

.checkout-summary-item__qty {
  color: var(--muted);
}

.checkout-summary-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0.8rem 0;
}

.checkout-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.checkout-summary-row--total {
  margin-top: 0.55rem;
  font-size: 1.08rem;
}

.checkout-place-order-btn {
  width: 100%;
  justify-content: center;
}

.checkout-boxing__note {
  margin: 0.45rem 0 0.55rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.checkout-boxing__mode {
  display: inline-flex;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.checkout-boxing__mode label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
}

.checkout-box-dropdown {
  position: relative;
}

.checkout-box-dropdown.is-hidden,
.checkout-box-items.is-hidden,
.checkout-box-items__hint.is-hidden {
  display: none;
}

.checkout-box-dropdown__toggle {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 0.42rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  cursor: pointer;
}

.checkout-box-dropdown__value {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.checkout-box-dropdown__chevron {
  color: #8a3e57;
  font-size: 0.92rem;
}

.checkout-box-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.3rem);
  left: 0;
  right: 0;
  z-index: 25;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(29, 13, 20, 0.14);
  padding: 0.4rem;
  display: none;
  gap: 0.35rem;
  max-height: 260px;
  overflow: auto;
}

.checkout-box-dropdown.is-open .checkout-box-dropdown__menu {
  display: grid;
}

.checkout-box-option {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--border), #fff 12%);
  border-radius: 10px;
  background: #fff;
  padding: 0.42rem 0.45rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  text-align: left;
}

.checkout-box-option.is-selected {
  border-color: color-mix(in srgb, var(--primary), #fff 40%);
  background: color-mix(in srgb, #fff 88%, var(--primary-soft));
}

.checkout-box-option__thumb {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex: 0 0 auto;
  background: #fff;
}

.checkout-box-option__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-box-option__price {
  font-weight: 600;
  color: #7a334b;
}

.checkout-box-option__empty {
  color: var(--muted);
  font-size: 0.88rem;
}

.checkout-box-items {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.42rem;
}

.checkout-box-items__hint {
  margin: 0.65rem 0 0.4rem;
  color: #6f5c65;
  font-size: 0.84rem;
}

.checkout-box-items.is-disabled {
  opacity: 0.6;
}

.checkout-box-items--images {
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.5rem;
}

.checkout-box-item-thumb {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.checkout-box-item-thumb input {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.checkout-box-item-thumb__img {
  width: 72px;
  height: 72px;
  border: 2px solid color-mix(in srgb, var(--border), #fff 10%);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: inline-flex;
}

.checkout-box-item-thumb__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-box-item-thumb input:checked + .checkout-box-item-thumb__img {
  border-color: color-mix(in srgb, var(--primary), #fff 36%);
  box-shadow: 0 8px 18px rgba(221, 104, 143, 0.2);
}


.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1rem;
}

.product-gallery-main {
  border-radius: 18px;
  overflow: clip;
  border: 1px solid var(--border);
  background: #f8f2f4;
  box-shadow: var(--shadow-sm);
}

.product-gallery-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.product-thumbs button {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  cursor: pointer;
}

.product-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-color-list {
  gap: 0;
}

.product-color-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  border-bottom: 1px solid #f0e8e4;
  padding: 0.45rem 0;
}

.product-color-row:last-child {
  border-bottom: 0;
}

.product-color-main {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.product-color-text {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.product-color-swatch {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border), #fff 15%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  flex: 0 0 auto;
}

.product-color-row.is-out {
  opacity: 0.6;
}

.product-color-qty {
  text-align: center;
}

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

.shop-layout--single {
  grid-template-columns: minmax(0, 1fr);
}

.shop-main {
  min-width: 0;
}

.filter-panel {
  position: sticky;
  top: 86px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.filter-panel--floating {
  display: none;
}

.filter-panel--floating.is-modal {
  display: block;
}

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

.filter-panel__header h2 {
  margin: 0;
  font-size: 1.1rem;
}

.filter-close {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  width: 34px;
  height: 34px;
  place-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.filter-form {
  display: grid;
  gap: 0.72rem;
}

.filter-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.filter-actions .btn {
  width: 100%;
  justify-content: center;
}

.filter-categories {
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
}

.filter-categories h3 {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
}

.category-links {
  display: grid;
  gap: 0.35rem;
}

.category-links a {
  color: var(--muted);
  padding: 0.45rem 0.58rem;
  border-radius: 9px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.category-links a:hover,
.category-links a.is-active {
  color: var(--text);
  background: var(--bg-soft);
}

.filter-subcats {
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--surface-tint);
}

.accordion-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0.72rem 0.78rem;
  font: inherit;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.accordion-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.32s var(--ease-out), opacity 0.2s ease;
}

.accordion-panel.is-open {
  opacity: 1;
}

.subcat-item {
  display: flex;
  align-items: center;
  gap: 0.46rem;
  margin: 0;
  padding: 0.45rem 0.78rem;
  border-top: 1px solid color-mix(in srgb, var(--border), #fff 40%);
  font-size: 0.92rem;
}

.filter-fab {
  display: inline-flex;
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + 56px + 0.7rem);
  z-index: 96;
  border: 0;
  border-radius: 999px;
  width: 54px;
  height: 54px;
  min-height: 54px;
  padding: 0;
  background: linear-gradient(145deg, var(--primary), var(--primary-hover));
  color: #fff;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.filter-fab svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.filter-fab:hover {
  transform: translateY(-2px);
}

.filter-fab[aria-expanded="true"] {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.filter-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(8, 8, 10, 0.62);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.filter-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.filter-panel.is-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(340px, 36vw, 480px);
  max-width: 100%;
  z-index: 99999;
  border-radius: 0;
  transform: translateX(105%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.28s var(--ease-out), opacity 0.2s ease;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

.filter-panel.is-modal .filter-close {
  display: inline-grid;
}

.filter-panel.is-modal.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
  justify-content: center;
  align-items: center;
}

.page-pill {
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border), #fff 30%);
  background: #fff;
  color: var(--muted);
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-pill:hover {
  transform: translateY(-1px);
  color: var(--text);
  background: var(--bg-soft);
  border-color: color-mix(in srgb, var(--primary), #fff 55%);
}

.page-pill.is-current {
  border-color: color-mix(in srgb, var(--primary), #000 10%);
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--primary-hover));
  box-shadow: 0 8px 16px rgba(220, 108, 136, 0.25);
}

.section-why {
  background: linear-gradient(180deg, #fff8fa, #fff);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.why-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.why-card p {
  margin: 0;
  color: var(--muted);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.stat-item {
  background: linear-gradient(145deg, #fff, #fff1f6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.stat-item strong {
  display: block;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  color: #8e3752;
  line-height: 1.1;
}

.stat-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.quote-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.quote-card p {
  margin: 0 0 0.55rem;
  color: #472d38;
}

.quote-card cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
  font-size: 0.88rem;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 0.2rem 0.75rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.58rem 0;
}

.faq-item p {
  margin: 0 0 0.7rem;
  color: var(--muted);
}

.site-footer {
  margin-top: var(--space-7);
  border-top: 1px solid color-mix(in srgb, var(--primary-soft), #fff 25%);
  background:
    radial-gradient(560px 220px at 10% 0%, #ffe9f0 0%, transparent 68%),
    radial-gradient(460px 180px at 92% 12%, #fff1e8 0%, transparent 70%),
    linear-gradient(180deg, #fff, #fff5f8);
}

.footer-cta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}

.footer-cta h3 {
  margin: 0.35rem 0;
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
}

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

.footer-cta__actions {
  display: inline-flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 1rem;
  padding: 1.5rem 0;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 0.62rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--muted);
  line-height: 1.7;
}

.site-footer a:hover {
  color: #8a3e57;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.7rem;
}

.footer-tags span {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 0.24rem 0.55rem;
  font-size: 0.74rem;
  color: #7d3a51;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.32rem;
}

.footer-copy {
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 0.85rem 0;
  font-size: 0.9rem;
}

.footer-copy-inner {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}

.footer-copy a {
  font-weight: 600;
  color: #8a3e57;
}

.whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 96;
  width: 54px;
  height: 54px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0;
  background: linear-gradient(145deg, var(--primary), var(--primary-hover));
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform 0.22s ease, filter 0.22s ease;
}

.whatsapp-fab svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.whatsapp-fab:hover {
  filter: brightness(0.96);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  transition: opacity 0.65s ease, transform 0.65s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.products-grid > :nth-child(1),
.why-grid > :nth-child(1),
.testimonials-grid > :nth-child(1),
.stats-strip > :nth-child(1),
.faq-list > :nth-child(1) {
  --reveal-delay: 0.02s;
}

.products-grid > :nth-child(2),
.why-grid > :nth-child(2),
.testimonials-grid > :nth-child(2),
.stats-strip > :nth-child(2),
.faq-list > :nth-child(2) {
  --reveal-delay: 0.09s;
}

.products-grid > :nth-child(3),
.why-grid > :nth-child(3),
.testimonials-grid > :nth-child(3),
.stats-strip > :nth-child(3),
.faq-list > :nth-child(3) {
  --reveal-delay: 0.16s;
}

.products-grid > :nth-child(4),
.why-grid > :nth-child(4),
.testimonials-grid > :nth-child(4),
.stats-strip > :nth-child(4),
.faq-list > :nth-child(4) {
  --reveal-delay: 0.23s;
}

@keyframes float-glow {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

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

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .shop-layout,
  .product-layout,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    display: none;
  }

  .filter-panel.is-modal {
    display: block;
  }

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

}

@media (max-width: 860px) {
  .checkout-grid > aside[aria-label="Order summary"] {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-quickstats {
    grid-template-columns: 1fr;
  }

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

  .primary-nav {
    position: fixed;
    top: 78px;
    left: 1rem;
    right: 1rem;
    z-index: 91;
    display: grid;
    gap: 0.3rem;
    padding: 0.6rem;
    border: 1px solid color-mix(in srgb, var(--primary-soft), #fff 15%);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s var(--ease-out);
  }

  .primary-nav.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .primary-nav .nav-link,
  .primary-nav .cart-link {
    border-radius: 10px;
  }

  .header-hotline,
  .brand-mark {
    display: none;
  }

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

  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .stats-strip,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .two-col,
  .footer-grid,
  .footer-copy-inner {
    grid-template-columns: 1fr;
  }

  .footer-copy-inner {
    display: grid;
    text-align: center;
  }

  .filter-panel.is-modal {
    width: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    max-height: 100dvh;
    border-radius: 0;
    transform: translateX(105%);
    opacity: 0;
  }

  .filter-panel.is-modal.is-open {
    transform: translateX(0);
    opacity: 1;
  }

  .filter-fab {
    right: 0.78rem;
    bottom: calc(0.78rem + 54px + 0.62rem);
  }

  .whatsapp-fab {
    right: 0.78rem;
    bottom: 0.78rem;
    width: 54px;
    height: 54px;
    min-height: 54px;
  }

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

  .filter-actions {
    grid-template-columns: 1fr;
  }

  .page-pill {
    min-width: 2.15rem;
    height: 2.15rem;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-glow {
    animation: none !important;
  }
}

/* Completed redesign pass for navbar, home hero, and footer */
.site-header {
  border-bottom: 1px solid color-mix(in srgb, var(--primary-soft), #fff 25%);
  background: color-mix(in srgb, #fff 84%, var(--primary-soft));
  box-shadow: 0 6px 20px rgba(39, 16, 27, 0.05);
}

.site-header .container.nav-wrap {
  min-height: 82px;
}

.brand img {
  width: clamp(124px, 12vw, 142px);
}

.primary-nav {
  padding: 0.34rem;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 24px rgba(34, 14, 25, 0.08);
}

.nav-link,
.cart-link {
  padding: 0.6rem 0.95rem;
}

.hero {
  padding: clamp(1.4rem, 3.2vw, 2.8rem) 0 clamp(1.8rem, 4vw, 3.2rem);
}

.hero .container {
  position: relative;
}

.hero-cover {
  position: relative;
  border-radius: clamp(18px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--primary-soft), #fff 28%);
  background: #fff1f5;
  min-height: clamp(420px, 65vw, 680px);
  box-shadow: 0 20px 46px rgba(40, 16, 28, 0.17);
}

.hero-cover__img {
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 65vw, 680px);
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(1.03) contrast(1.02);
}

.hero-cover__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(28, 13, 21, 0.72) 0%, rgba(37, 13, 25, 0.58) 37%, rgba(31, 15, 22, 0.15) 72%),
    radial-gradient(540px 240px at 20% 15%, rgba(255, 184, 210, 0.34) 0%, rgba(255, 184, 210, 0) 75%),
    radial-gradient(440px 200px at 90% 88%, rgba(255, 220, 194, 0.3) 0%, rgba(255, 220, 194, 0) 70%);
}

.hero-cover__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: center;
  max-width: min(640px, 84%);
  padding: clamp(1.2rem, 3.5vw, 3.4rem);
}

.hero-cover .eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(6px);
}

.hero-cover h1 {
  color: #fff;
  margin: 0.75rem 0 0.85rem;
  font-size: clamp(1.8rem, 5.3vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.hero-cover p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.98rem, 1.7vw, 1.14rem);
  max-width: 54ch;
}

.hero-actions {
  margin-top: 1.1rem;
}

.hero-actions .btn {
  min-height: 44px;
}

.hero-actions .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.hero-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-trust {
  margin-top: 1rem;
  gap: 0.52rem;
}

.hero-trust span {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  margin-top: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid color-mix(in srgb, var(--primary-soft), #fff 20%);
}

.footer-cta {
  border-bottom-color: color-mix(in srgb, var(--border), #fff 30%);
  padding: clamp(1.1rem, 2.2vw, 1.55rem) 0;
}

.footer-cta__actions .btn {
  min-height: 44px;
}

.footer-grid {
  gap: clamp(0.95rem, 2.5vw, 1.5rem);
  padding: clamp(1.2rem, 3.4vw, 2rem) 0;
}

.footer-grid > div {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid color-mix(in srgb, var(--border), #fff 28%);
  border-radius: 16px;
  padding: 0.95rem;
  backdrop-filter: blur(3px);
}

@media (max-width: 960px) {
  .hero-cover {
    min-height: clamp(440px, 74vw, 560px);
  }

  .hero-cover__img {
    min-height: clamp(440px, 74vw, 560px);
  }

  .hero-cover__overlay {
    background:
      linear-gradient(180deg, rgba(26, 12, 19, 0.28) 0%, rgba(29, 12, 20, 0.58) 42%, rgba(22, 12, 18, 0.8) 100%),
      radial-gradient(360px 180px at 15% 0%, rgba(255, 184, 210, 0.3) 0%, rgba(255, 184, 210, 0) 72%);
  }

  .hero-cover__content {
    align-content: end;
    max-width: 100%;
    padding: 1rem 1rem 1.2rem;
  }
}

@media (max-width: 860px) {
  body.nav-open {
    overflow: hidden;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .primary-nav {
    top: 84px;
    left: 0.75rem;
    right: 0.75rem;
    border-radius: 14px;
    padding: 0.55rem;
  }

  .primary-nav .nav-link,
  .primary-nav .cart-link {
    padding: 0.72rem 0.84rem;
  }

  .footer-grid > div {
    background: rgba(255, 255, 255, 0.72);
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 0.9rem;
  }

  .hero-cover {
    min-height: 430px;
  }

  .hero-cover__img {
    min-height: 430px;
  }

  .hero-cover h1 {
    font-size: clamp(1.6rem, 8.4vw, 2.35rem);
  }

  .hero-cover p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero-trust {
    gap: 0.42rem;
  }

  .hero-trust span {
    font-size: 0.75rem;
    padding: 0.28rem 0.5rem;
  }
}

@media (max-width: 460px) {
  .hero-cover__content {
    padding: 0.92rem 0.85rem 1rem;
  }

  .hero-actions {
    display: grid;
    gap: 0.45rem;
    width: 100%;
  }

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

/* Hotfix: cleaner hero + faster rendering */
.site-header {
  backdrop-filter: none;
}

.primary-nav {
  background: #fff;
  backdrop-filter: none;
  box-shadow: 0 8px 20px rgba(23, 13, 18, 0.05);
}

.hero {
  padding: clamp(1.25rem, 3.8vw, 2.6rem) 0 clamp(1.8rem, 4vw, 3rem);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(0.9rem, 2.6vw, 1.8rem);
}

.hero-copy {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(1rem, 2.5vw, 1.45rem);
  box-shadow: var(--shadow-sm);
}

.hero-media .hero-copy {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero h1 {
  font-size: clamp(1.8rem, 4.2vw, 3.2rem);
  line-height: 1.05;
}

.hero p {
  font-size: 1rem;
}

.hero-media {
  box-shadow: 0 12px 24px rgba(23, 13, 18, 0.1);
  min-height: clamp(420px, 42vw, 640px);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(112deg, rgba(22, 12, 17, 0.56) 0%, rgba(22, 12, 17, 0.25) 42%, rgba(22, 12, 17, 0.08) 64%, rgba(22, 12, 17, 0) 100%);
}

.hero-media img {
  height: 100%;
  transform: none;
  filter: none;
}

.hero-media:hover img {
  transform: scale(1.02);
}

.hero-media .hero-copy {
  z-index: 2;
  max-width: min(560px, calc(100% - 2rem));
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.hero-media .hero-copy h1,
.hero-media .hero-copy p {
  color: #fff;
}

.hero-media .hero-copy p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 52ch;
}

.hero-media .hero-copy .eyebrow {
  background: rgba(255, 255, 255, 0.9);
  color: #8b3f58;
}

.hero-media .hero-trust span {
  background: rgba(22, 12, 17, 0.62);
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  text-shadow: none;
  font-weight: 600;
}

.site-footer {
  background: linear-gradient(180deg, #fff, #fff6f9);
}

.footer-grid > div {
  background: #fff;
  border: 1px solid var(--border);
  backdrop-filter: none;
}

.section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 700px;
}

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

  .hero-media {
    min-height: clamp(470px, 108vw, 620px);
  }

  .hero-media::before {
    background: linear-gradient(180deg, rgba(22, 12, 17, 0.56) 0%, rgba(22, 12, 17, 0.3) 50%, rgba(22, 12, 17, 0.08) 100%);
  }

  .hero-media .hero-copy {
    top: auto;
    bottom: 0.65rem;
    left: 0.65rem;
    right: 0.65rem;
    max-width: none;
    padding: 0.78rem;
  }

  .hero-media .hero-copy h1 {
    margin: 0.42rem 0;
    font-size: clamp(1.32rem, 7vw, 1.82rem);
    line-height: 1.08;
  }

  .hero-media .hero-copy p {
    margin-bottom: 0.65rem;
    font-size: 0.9rem;
  }

  .hero-media .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
  }

  .hero-media .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-media-card--bottom {
    display: none;
  }

  .hero-media-card {
    padding: 0.42rem 0.5rem;
  }

  .hero-media-card strong {
    font-size: 0.73rem;
  }

  .hero-media-card span {
    font-size: 0.69rem;
  }
}

@media (max-width: 460px) {
  .hero-media {
    min-height: clamp(430px, 122vw, 560px);
  }

  .hero-media .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-media .hero-trust {
    display: none;
  }
}

/* Final hero lock: desktop must stay landscape and full width */
.hero .hero-grid {
  grid-template-columns: minmax(0, 1fr) !important;
}

.hero .hero-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: clamp(320px, 34vw, 560px);
}

.hero .hero-media picture,
.hero .hero-media img {
  width: 100%;
  height: 100%;
}

@media (max-width: 860px) {
  .hero .hero-media {
    aspect-ratio: 4 / 5;
    min-height: clamp(470px, 108vw, 620px);
  }
}

/* Final full-width hero lock: edge-to-edge across X axis */
body.page-home .hero {
  padding-left: 0;
  padding-right: 0;
}

body.page-home .hero > .container {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

body.page-home .hero .hero-grid {
  display: block;
}

body.page-home .hero .hero-media {
  width: 100%;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  margin: 0;
}

body.page-home .hero .hero-media picture,
body.page-home .hero .hero-media img {
  width: 100%;
  height: 100%;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(0.9rem, 2vw, 1.3rem);
}

.new-arrivals-cta .btn {
  min-height: 46px;
  padding: 0.72rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(221, 104, 143, 0.25);
}

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

/* Footer rebuild: cleaner, simpler, modern */
.footer-v2 {
  margin-top: clamp(1.2rem, 3vw, 2rem);
  padding: 0.5rem 0 0;
  border-top: 1px solid color-mix(in srgb, var(--primary-soft), #fff 15%);
  background:
    radial-gradient(620px 240px at 0% 0%, #ffe8f0 0%, transparent 68%),
    radial-gradient(520px 220px at 100% 10%, #fff1e8 0%, transparent 72%),
    linear-gradient(180deg, #fff, #fff6f9);
}

.footer-v2 .footer-v2__shell {
  width: 100%;
  max-width: none;
  border: 1px solid color-mix(in srgb, var(--border), #fff 10%);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 -6px 24px rgba(30, 12, 20, 0.06);
  overflow: hidden;
}

.footer-v2 .footer-v2__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--border);
}

.footer-v2 .footer-v2__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #8b3f58;
  background: var(--primary-soft);
}

.footer-v2 .footer-v2__intro h3 {
  margin: 0 0 0.2rem;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
}

.footer-v2 .footer-v2__intro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-v2 .footer-v2__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-v2 .footer-v2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(0.8rem, 2vw, 1.2rem);
  padding: 0.8rem 0.9rem;
}

.footer-v2 .footer-v2__col {
  padding: 0.2rem 0.1rem;
}

.footer-v2 h4 {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
}

.footer-v2 p,
.footer-v2 li,
.footer-v2 a {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.84rem;
}

.footer-v2 a:hover {
  color: #8a3e57;
}

.footer-v2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.24rem;
}

.footer-v2 .footer-v2__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.6rem 0.9rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.footer-v2 .footer-v2__bottom-links {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

@media (max-width: 980px) {
  .footer-v2 .footer-v2__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .footer-v2 .footer-v2__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-v2 .footer-v2__actions {
    width: 100%;
  }

  .footer-v2 .footer-v2__actions .btn {
    flex: 1 1 0;
    justify-content: center;
  }

  .footer-v2 .footer-v2__grid {
    grid-template-columns: 1fr;
  }

  .footer-v2 .footer-v2__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Final hero alignment fix: no top gap + centered content */
body.page-home .hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.page-home .hero .hero-copy {
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%);
  right: auto !important;
  bottom: auto !important;
  width: min(760px, calc(100% - 2rem));
  max-width: min(760px, calc(100% - 2rem));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.page-home .hero .hero-copy p {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

body.page-home .hero .hero-actions,
body.page-home .hero .hero-trust {
  justify-content: center;
}

@media (max-width: 860px) {
  body.page-home .hero {
    padding-top: 0 !important;
  }

  body.page-home .hero .hero-copy {
    width: calc(100% - 1.2rem);
    max-width: calc(100% - 1.2rem);
  }
}

/* Global hard override: all card thumbnails are square across pages */
.grid-cards .card-media,
.products-grid .card-media,
.shop-main .card-media {
  aspect-ratio: 1 / 1 !important;
}

/* Shop page grid sizing: 3 per row desktop, 2 per row mobile */
.page-shop .products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 680px) {
  .page-shop .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* Header override: centered nav links + top-right cart icon with order-count badge */
.site-header .nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.site-header .brand {
  justify-self: start;
}

.site-header .primary-nav {
  justify-self: center;
}

.site-header .cart-icon-link {
  justify-self: end;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--primary-soft), #fff 22%);
  border-radius: 999px;
  background: #fff;
  color: #7a334b;
  box-shadow: 0 6px 16px rgba(23, 13, 18, 0.08);
}

.site-header .cart-icon-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.site-header .cart-icon-link .cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 0.25rem;
  border: 2px solid #fff;
  font-size: 0.68rem;
  line-height: 1;
}

@media (max-width: 860px) {
  .site-header .nav-wrap {
    grid-template-columns: auto auto auto;
  }

  .site-header .primary-nav {
    justify-self: stretch;
  }

  .site-header .cart-icon-link {
    margin-left: auto;
  }

  .site-header .menu-toggle {
    justify-self: end;
  }
}

/* Footer polish: stronger spacing, hierarchy, and alignment */
.footer-v2 {
  margin-top: clamp(2rem, 5vw, 3.2rem);
  padding-top: 0;
  border-top: 1px solid color-mix(in srgb, var(--primary-soft), #fff 12%);
  background:
    radial-gradient(780px 300px at 0% 0%, #ffe7ef 0%, transparent 70%),
    radial-gradient(660px 280px at 100% 8%, #fff1e7 0%, transparent 72%),
    linear-gradient(180deg, #fff9fb, #fff4f8);
}

.footer-v2 .footer-v2__shell {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.footer-v2 .footer-v2__container {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid color-mix(in srgb, var(--border), #fff 18%);
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(36, 16, 24, 0.08);
  overflow: hidden;
  margin-bottom: 1rem;
}

.footer-v2 .footer-v2__top {
  padding: clamp(1rem, 2.8vw, 1.35rem) clamp(1rem, 2.6vw, 1.4rem);
  border-bottom: 1px solid color-mix(in srgb, var(--border), #fff 26%);
}

.footer-v2 .footer-v2__intro h3 {
  margin: 0;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  color: #3a2029;
  line-height: 1.2;
}

.footer-v2 .footer-v2__intro p {
  margin-top: 0.32rem;
  font-size: 0.93rem;
  color: #6a5760;
}

.footer-v2 .footer-v2__actions .btn {
  min-height: 42px;
  padding: 0.66rem 1rem;
  border-radius: 999px;
  font-size: 0.86rem;
}

.footer-v2 .footer-v2__grid {
  padding: clamp(1rem, 2.4vw, 1.3rem) clamp(1rem, 2.6vw, 1.4rem);
  gap: clamp(0.8rem, 2vw, 1.2rem);
}

.footer-v2 .footer-v2__col {
  border: 1px solid color-mix(in srgb, var(--border), #fff 26%);
  border-radius: 14px;
  background: #fff;
  padding: 0.78rem 0.85rem;
}

.footer-v2 h4 {
  margin: 0 0 0.46rem;
  font-size: 0.92rem;
  color: #41252f;
}

.footer-v2 p,
.footer-v2 li,
.footer-v2 a {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #6b5a62;
}

.footer-v2 .footer-v2__bottom {
  justify-content: center;
  padding: 0.78rem 1rem 0.88rem;
  border-top: 1px solid color-mix(in srgb, var(--border), #fff 26%);
  font-size: 0.82rem;
}

@media (max-width: 720px) {
  .footer-v2 .footer-v2__container {
    border-radius: 16px;
  }

  .footer-v2 .footer-v2__top {
    gap: 0.75rem;
  }

  .footer-v2 .footer-v2__actions .btn {
    width: 100%;
  }
}

/* Spacing fix: remove excessive vertical gap before footer on short pages */
.site-main {
  min-height: auto;
}

.footer-v2 {
  margin-top: clamp(0.6rem, 1.4vw, 1rem);
}

/* Minimal footer redesign: compact, light, and premium */
.footer-v2 {
  margin-top: clamp(0.4rem, 1vw, 0.75rem);
  padding: 0;
  border-top: 1px solid color-mix(in srgb, var(--border), #fff 30%);
  background: linear-gradient(180deg, #fcfafb, #f9f6f8);
}

.footer-v2 .footer-v2__shell {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-v2 .footer-v2__container {
  padding-top: clamp(1.15rem, 2.2vw, 1.8rem);
  padding-bottom: clamp(0.85rem, 1.8vw, 1.3rem);
}

.footer-v2 .footer-v2__top,
.footer-v2 .footer-v2__actions,
.footer-v2 .footer-v2__intro {
  display: none;
}

.footer-v2 .footer-v2__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.6vw, 1.2rem);
  padding: 0;
  margin: 0;
}

.footer-v2 .footer-v2__col {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.footer-v2 h4 {
  margin: 0 0 0.38rem;
  font-size: 0.78rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4a2d37;
}

.footer-v2 ul {
  display: grid;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-v2 p,
.footer-v2 li,
.footer-v2 a {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #6a5961;
}

.footer-v2 a {
  text-decoration: none;
  text-underline-offset: 2px;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.footer-v2 a:hover {
  color: #8a3e57;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, #8a3e57, #fff 55%);
}

.footer-v2 .footer-v2__meta {
  margin-top: 0.7rem;
  padding-top: 0.62rem;
  border-top: 1px solid color-mix(in srgb, var(--border), #fff 35%);
}

.footer-v2 .footer-v2__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}

.footer-v2 .footer-v2__social a {
  width: 1.85rem;
  height: 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--border), #fff 20%);
  border-radius: 999px;
  color: #715762;
  text-decoration: none;
}

.footer-v2 .footer-v2__social a:hover {
  color: #8a3e57;
  border-color: color-mix(in srgb, #8a3e57, #fff 60%);
  background: color-mix(in srgb, #8a3e57, #fff 94%);
}

.footer-v2 .footer-v2__social svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
}

.footer-v2 .footer-v2__copy {
  margin: 0;
  text-align: center;
  font-size: 0.74rem;
  color: #7e6b74;
}

.footer-v2 .footer-v2__bottom,
.footer-v2 .footer-v2__bottom-links {
  display: none;
}

@media (max-width: 780px) {
  .footer-v2 .footer-v2__grid {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .footer-v2 .footer-v2__meta {
    margin-top: 0.62rem;
    padding-top: 0.56rem;
  }
}

/* Footer layout hard-fix: full-width background + true page-bottom anchoring */
html,
body {
  height: 100%;
}

body {
  min-height: 100%;
}

.site-shell {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1 0 auto;
  min-height: auto;
}

.site-footer.footer-v2 {
  width: 100%;
  margin-top: 0;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

.footer-v2 .footer-v2__container {
  max-width: none;
  width: 100%;
  margin: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  padding-inline: clamp(0.9rem, 2.2vw, 2rem);
}

.footer-v2 .footer-v2__col {
  border: 0;
  background: transparent;
  text-align: center;
}

/* About page redesign */
.about-modern {
  padding-top: 0.2rem;
}

.about-modern .container {
  display: grid;
  gap: 1rem;
}

.about-modern__hero {
  border: 1px solid color-mix(in srgb, var(--border), #fff 22%);
  border-radius: 20px;
  background:
    radial-gradient(420px 200px at 0% 0%, #ffeaf1 0%, transparent 72%),
    linear-gradient(155deg, #fff, #fff8fa);
  padding: clamp(1rem, 2.5vw, 1.5rem);
}

.about-modern__eyebrow {
  margin: 0 0 0.5rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a3e57;
  background: #ffe6ee;
}

.about-modern__hero h2 {
  margin: 0;
  font-size: clamp(1.3rem, 3.2vw, 2rem);
  line-height: 1.12;
}

.about-modern__hero p {
  margin: 0.72rem 0 0;
  color: var(--muted);
  max-width: 66ch;
}

.about-modern__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0.9rem;
}

.about-modern__panel,
.about-modern__value {
  border: 1px solid color-mix(in srgb, var(--border), #fff 24%);
  border-radius: 16px;
  background: #fff;
}

.about-modern__panel {
  padding: clamp(0.9rem, 2vw, 1.2rem);
}

.about-modern__panel h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}

.about-modern__panel p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.about-modern__values {
  display: grid;
  gap: 0.65rem;
}

.about-modern__value {
  padding: 0.75rem 0.85rem;
}

.about-modern__value h4 {
  margin: 0 0 0.2rem;
  font-size: 0.94rem;
}

.about-modern__value p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.about-modern__contact {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.about-modern__contact article {
  border: 1px solid color-mix(in srgb, var(--border), #fff 20%);
  border-radius: 14px;
  background: #fff;
  padding: 0.68rem 0.75rem;
}

.about-modern__contact h4 {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7f5562;
}

.about-modern__contact p {
  margin: 0.32rem 0 0;
  font-size: 0.9rem;
  color: var(--text);
}

.about-modern__contact a {
  color: #8a3e57;
}

/* Contact page redesign */
.contact-modern {
  padding-top: 0.2rem;
}

.contact-modern .container {
  display: grid;
  gap: 1rem;
}

.contact-modern__hero {
  border: 1px solid color-mix(in srgb, var(--border), #fff 22%);
  border-radius: 20px;
  background:
    radial-gradient(440px 220px at 100% 0%, #ffecea 0%, transparent 72%),
    linear-gradient(155deg, #fff, #fff8fa);
  padding: clamp(1rem, 2.5vw, 1.5rem);
}

.contact-modern__eyebrow {
  margin: 0 0 0.5rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a3e57;
  background: #ffe6ee;
}

.contact-modern__hero h2 {
  margin: 0;
  font-size: clamp(1.3rem, 3.2vw, 2rem);
  line-height: 1.12;
}

.contact-modern__hero p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  max-width: 62ch;
}

.contact-modern__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0.9rem;
}

.contact-modern__info,
.contact-modern__form {
  border: 1px solid color-mix(in srgb, var(--border), #fff 22%);
  border-radius: 16px;
  background: #fff;
  padding: clamp(0.9rem, 2vw, 1.2rem);
}

.contact-modern__info h3 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
}

.contact-modern__info p {
  margin: 0;
  color: var(--muted);
}

.contact-modern__info ul {
  list-style: none;
  padding: 0;
  margin: 0.85rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.contact-modern__info li {
  display: grid;
  gap: 0.12rem;
}

.contact-modern__info li strong {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7f5562;
}

.contact-modern__info li span,
.contact-modern__info li a {
  font-size: 0.92rem;
}

.contact-modern__social {
  margin-top: 0.8rem;
  display: inline-flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.contact-modern__social a {
  border: 1px solid color-mix(in srgb, var(--border), #fff 12%);
  border-radius: 999px;
  padding: 0.36rem 0.66rem;
  font-size: 0.78rem;
  color: #7a334b;
  background: #fff6f9;
}

.contact-modern__social a:hover {
  background: #ffe9f1;
}

.contact-modern__form .input {
  border-radius: 11px;
  background: #fffdfd;
}

.contact-modern__form .btn {
  min-height: 44px;
}

@media (max-width: 980px) {
  .about-modern__grid,
  .contact-modern__layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .about-modern__contact {
    grid-template-columns: 1fr;
  }
}

/* Mobile header fix: cart left of menu, menu at far right */
@media (max-width: 860px) {
  .site-header .nav-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "brand cart menu";
    align-items: center;
    column-gap: 0.45rem;
    row-gap: 0;
  }

  .site-header .brand {
    grid-area: brand;
    min-width: 0;
  }

  .site-header .primary-nav {
    position: fixed;
  }

  .site-header .cart-icon-link {
    grid-area: cart;
    align-self: center;
    justify-self: end;
    margin: 0;
  }

  .site-header .menu-toggle {
    grid-area: menu;
    align-self: center;
    justify-self: end;
    margin: 0;
  }
}

/* Mobile footer refinement: cleaner spacing and readable hierarchy */
@media (max-width: 860px) {
  .site-footer.footer-v2 {
    background:
      radial-gradient(380px 200px at 0% 0%, #ffeaf1 0%, transparent 72%),
      linear-gradient(180deg, #fff9fb, #f8f3f6);
  }

  .footer-v2 .footer-v2__container {
    padding: 1rem 0.9rem calc(0.9rem + env(safe-area-inset-bottom, 0px));
  }

  .footer-v2 .footer-v2__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 0.75rem;
  }

  .footer-v2 .footer-v2__col {
    text-align: left;
    padding: 0.75rem 0.7rem;
    border: 1px solid color-mix(in srgb, var(--border), #fff 20%);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
  }

  .footer-v2 h4 {
    margin-bottom: 0.48rem;
    font-size: 0.74rem;
    letter-spacing: 0.05em;
  }

  .footer-v2 ul {
    gap: 0.3rem;
  }

  .footer-v2 p,
  .footer-v2 li,
  .footer-v2 a {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .footer-v2 .footer-v2__meta {
    margin-top: 0.9rem;
    padding-top: 0.78rem;
  }

  .footer-v2 .footer-v2__social {
    margin-bottom: 0.55rem;
    gap: 0.55rem;
  }

  .footer-v2 .footer-v2__social a {
    width: 2rem;
    height: 2rem;
  }

  .footer-v2 .footer-v2__copy {
    font-size: 0.72rem;
  }
}

@media (max-width: 460px) {
  .footer-v2 .footer-v2__grid {
    grid-template-columns: 1fr;
  }

  .footer-v2 .footer-v2__container {
    padding-inline: 0.75rem;
  }
}


