:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --surface-soft: #eee8df;
  --ink: #25221f;
  --muted: #746d65;
  --line: #ddd4c9;
  --accent: #8c7b68;
  --accent-dark: #4a423a;
  --gold-soft: #d8c8a9;
  --silver: #c9c9c7;
  --shadow: 0 24px 80px rgba(37, 34, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42) 0 18%, transparent 18% 100%),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 18px),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(37, 34, 31, 0.48), rgba(37, 34, 31, 0));
  backdrop-filter: blur(14px);
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(247, 244, 239, 0.92);
  box-shadow: 0 8px 40px rgba(37, 34, 31, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.hero-actions,
.toolbar,
.cart-header,
.cart-total {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.top-nav a {
  position: relative;
  padding: 8px 0;
}

.top-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
  content: "";
}

.top-nav a:hover {
  color: var(--accent);
}

.top-nav a:hover::after {
  transform: scaleX(1);
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.95rem;
}

.header-action,
.button,
.filter,
.newsletter button {
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-action {
  padding: 10px 18px;
  border-color: currentColor;
  font-size: 0.9rem;
}

.header-action:hover,
.button:hover,
.filter:hover,
.newsletter button:hover,
.product-card button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.menu-backdrop {
  position: fixed;
  z-index: 48;
  inset: 0;
  background: rgba(37, 34, 31, 0.42);
  border: 0;
  backdrop-filter: blur(6px);
}

.side-menu {
  position: fixed;
  z-index: 49;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(390px, calc(100vw - 34px));
  overflow-y: auto;
  padding: 24px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 244, 239, 0.96)),
    var(--surface);
  box-shadow: var(--shadow);
  animation: sideMenuIn 260ms ease both;
  backdrop-filter: blur(18px);
}

@keyframes sideMenuIn {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.side-menu-header,
.side-socials,
.footer-socials {
  display: flex;
  align-items: center;
}

.side-menu-header {
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.side-menu-close {
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.side-nav {
  display: grid;
  margin: 18px 0;
}

.side-nav a {
  padding: 15px 0;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  transition: color 180ms ease, padding-left 180ms ease;
}

.side-nav a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.side-socials {
  gap: 10px;
  padding-top: 10px;
}

.social-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--accent-dark);
  border-radius: 50%;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

body.menu-open {
  overflow: hidden;
}

@keyframes vellareFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.hero-content,
.trust-strip div,
.section-heading,
.collection,
.product-card,
.lookbook-copy,
.lookbook-panel,
.split > *,
.guarantee-card,
.guarantee-commitment,
.policy-card,
.content-card,
.content-note,
.testimonial-card,
.cart,
.contact-card {
  animation: vellareFadeUp 620ms ease both;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(20px, 6vw, 84px) 86px;
}

.page-hero {
  min-height: 52vh;
  display: grid;
  align-content: end;
  padding: 160px clamp(20px, 6vw, 84px) 72px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.74), transparent 18%),
    linear-gradient(135deg, var(--surface), var(--surface-soft));
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(37, 34, 31, 0.72), rgba(37, 34, 31, 0.32) 42%, rgba(37, 34, 31, 0.08));
}

.hero-content {
  position: relative;
  max-width: 680px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #efe7dc;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(4rem, 13vw, 9rem);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-badge,
.hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  color: #fff;
  background: rgba(140, 123, 104, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-highlights {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-weight: 700;
}

.button,
.filter,
.product-card,
.collection,
.testimonial-card,
.why-grid article,
.bestseller-grid article {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.button.primary {
  color: #fff;
  background: var(--accent-dark);
  border-color: var(--accent);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

.button.full {
  width: 100%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 24px clamp(18px, 3vw, 42px);
  background: var(--surface);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.why-vellare {
  background: var(--bg);
}

.why-grid,
.bestseller-grid {
  display: grid;
  gap: 18px;
}

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

.why-grid article,
.bestseller-grid article {
  min-height: 210px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.why-grid article:hover,
.bestseller-grid article:hover,
.testimonial-card:hover {
  border-color: rgba(140, 123, 104, 0.48);
  box-shadow: 0 18px 46px rgba(37, 34, 31, 0.1);
  transform: translateY(-4px);
}

.why-grid span {
  display: inline-flex;
  margin-bottom: 18px;
}

.why-grid h3,
.bestseller-grid h3 {
  font-size: 1.5rem;
}

.why-grid p,
.bestseller-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.section,
.lookbook {
  scroll-margin-top: 96px;
  padding: clamp(66px, 10vw, 120px) clamp(20px, 5vw, 72px);
}

.content-page {
  background: var(--bg);
}

.content-page.single {
  display: grid;
  place-items: start center;
}

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

.content-card,
.content-note {
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(37, 34, 31, 0.08);
}

.content-page.single .content-card {
  width: min(980px, 100%);
}

.content-card h2,
.content-note h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.content-card h3 {
  margin: 26px 0 12px;
  color: var(--accent-dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-card p,
.content-card li,
.content-note p {
  color: var(--muted);
}

.content-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding-left: 20px;
}

.content-note {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.content-note .button,
.content-card .button {
  justify-self: start;
}

.page-testimonials {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow),
.split-copy,
.lookbook-copy p,
.contact-card p,
.site-footer p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.collection-grid,
.product-grid,
.contact,
.split {
  display: grid;
  gap: 18px;
}

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

.collection {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(37, 34, 31, 0.02), rgba(37, 34, 31, 0.74)),
    radial-gradient(circle at 74% 24%, rgba(255, 255, 255, 0.56), transparent 12%),
    linear-gradient(135deg, #b8b0a7, #6d655d);
  border-radius: 8px;
}

.collection:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(37, 34, 31, 0.02), rgba(37, 34, 31, 0.74)),
    radial-gradient(circle at 64% 22%, rgba(255, 255, 255, 0.52), transparent 11%),
    linear-gradient(135deg, #d4d0ca, #82796f);
}

.collection:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(37, 34, 31, 0.02), rgba(37, 34, 31, 0.74)),
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.52), transparent 10%),
    linear-gradient(135deg, #a59c92, #514941);
}

.collection span {
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.product-section {
  background: var(--surface);
}

.toolbar {
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.filter {
  padding: 10px 16px;
  color: var(--accent-dark);
  background: transparent;
  border-color: var(--line);
}

.filter.active {
  color: #fff;
  background: var(--accent-dark);
}

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

.product-card {
  overflow: hidden;
  background: #fbfaf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(37, 34, 31, 0.06);
}

.product-card:hover {
  border-color: rgba(140, 123, 104, 0.46);
  box-shadow: 0 22px 54px rgba(37, 34, 31, 0.12);
  transform: translateY(-6px);
}

.product-media {
  aspect-ratio: 1 / 1;
  min-height: 210px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.9), transparent 30%),
    linear-gradient(145deg, #eee8df, #cfc7bb);
}

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

.product-card:hover .product-media img,
.product-card:hover .jewel {
  transform: scale(1.04);
}

.jewel {
  position: relative;
  width: 112px;
  height: 112px;
}

.jewel::before,
.jewel::after {
  position: absolute;
  content: "";
}

.jewel.ring::before {
  inset: 18px;
  border: 12px solid var(--silver);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #f7f7f5;
}

.jewel.ring::after {
  top: 8px;
  left: 44px;
  width: 24px;
  height: 24px;
  background: #f9faf9;
  clip-path: polygon(50% 0, 100% 45%, 78% 100%, 22% 100%, 0 45%);
}

.jewel.necklace::before {
  inset: 4px 18px 36px;
  border: 6px solid var(--silver);
  border-top: 0;
  border-radius: 0 0 90px 90px;
}

.jewel.necklace::after {
  left: 44px;
  bottom: 20px;
  width: 24px;
  height: 34px;
  background: #f5f3ee;
  border: 4px solid #c0b8aa;
  border-radius: 50% 50% 54% 54%;
}

.jewel.earring::before {
  left: 16px;
  top: 24px;
  width: 34px;
  height: 58px;
  border: 8px solid var(--silver);
  border-radius: 50%;
}

.jewel.earring::after {
  right: 16px;
  top: 24px;
  width: 34px;
  height: 58px;
  border: 8px solid #c9b79e;
  border-radius: 50%;
}

.jewel.bracelet::before {
  inset: 28px 10px;
  border: 10px solid #c9b79e;
  border-radius: 999px;
}

.jewel.bracelet::after {
  top: 42px;
  right: 18px;
  width: 18px;
  height: 18px;
  background: #f9faf9;
  border-radius: 50%;
}

.product-info {
  padding: 18px;
}

.product-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.product-top h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.tag {
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.product-description {
  min-height: 44px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.price {
  display: block;
  margin-bottom: 16px;
  font-weight: 800;
}

.product-card button {
  width: 100%;
  min-height: 42px;
  color: #fff;
  background: var(--accent-dark);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.04em;
}

.lookbook {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--surface-soft);
}

.bestsellers {
  background: var(--bg);
}

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

.bestseller-rank {
  display: block;
  margin-bottom: 48px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.lookbook-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.lookbook-panel div {
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.lookbook-panel div:last-child {
  border-right: 0;
}

.lookbook-panel span {
  display: block;
  margin-bottom: 48px;
  color: var(--accent);
  font-weight: 800;
}

.lookbook-panel strong {
  display: block;
  margin-bottom: 8px;
}

.lookbook-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.split,
.contact {
  grid-template-columns: 0.9fr 1.1fr;
}

.split-copy {
  display: grid;
  gap: 18px;
}

.split-copy p {
  margin-bottom: 0;
}

.guarantee {
  background: var(--surface-soft);
}

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

.guarantee-card,
.guarantee-commitment {
  padding: clamp(24px, 4vw, 38px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.guarantee-card h3,
.guarantee-commitment h3 {
  margin-bottom: 16px;
}

.guarantee-card h4 {
  margin: 24px 0 10px;
  color: var(--accent-dark);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guarantee-card p,
.guarantee-card li,
.guarantee-commitment p {
  color: var(--muted);
}

.guarantee-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 20px;
}

.guarantee-card p:last-child,
.guarantee-commitment p:last-child {
  margin-bottom: 0;
}

.guarantee-commitment {
  margin-top: 18px;
}

.policy-section {
  background: var(--surface);
}

.policy-section.soft {
  background: var(--surface-soft);
}

.policy-card {
  max-width: 980px;
  padding: clamp(26px, 5vw, 48px);
  margin: 0 auto;
  background: linear-gradient(135deg, #fffdf8, #f6efe2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.payment-policy {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(239, 229, 212, 0.96)),
    radial-gradient(circle at top right, rgba(191, 143, 46, 0.26), transparent 34%);
}

.policy-card h3 {
  margin: 26px 0 12px;
  color: var(--accent-dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-card p,
.policy-card li,
.policy-card small {
  color: var(--muted);
}

.policy-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 20px;
}

.payment-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-left: 0;
  list-style: none;
}

.payment-list li {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 110px;
  align-content: center;
  padding: 18px 18px 18px 24px;
  color: var(--accent-dark);
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.payment-list li::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  background: var(--accent);
  content: "";
}

.payment-list strong,
.payment-list span {
  display: block;
}

.payment-list strong {
  font-size: 1.05rem;
}

.payment-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonials {
  background: var(--surface-soft);
}

.reviews,
.page-reviews {
  background: var(--surface-soft);
}

.review-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  align-items: stretch;
}

.review-summary,
.review-form,
.review-card {
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(37, 34, 31, 0.08);
}

.review-summary {
  display: grid;
  align-content: center;
  gap: 10px;
}

.review-label {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-summary strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 600;
  line-height: 0.9;
}

.review-stars,
.review-card-stars {
  color: var(--accent);
  letter-spacing: 0.08em;
}

.review-summary p {
  margin-bottom: 0;
  color: var(--muted);
}

.review-form {
  display: grid;
  gap: 12px;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: #fbfaf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-form input,
.review-form select {
  height: 48px;
  padding: 0 14px;
}

.review-form textarea {
  min-height: 130px;
  padding: 14px;
  resize: vertical;
}

.review-form button {
  min-height: 48px;
  color: #fff;
  background: var(--accent-dark);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.review-message {
  min-height: 20px;
  color: var(--muted);
}

.reviews-block {
  margin-top: 34px;
}

.reviews-block h2,
.reviews-block h3 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  display: grid;
  gap: 14px;
}

.review-card.featured {
  border-color: rgba(140, 123, 104, 0.58);
  background: rgba(255, 255, 255, 0.82);
}

.review-card p {
  margin-bottom: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  line-height: 1.35;
}

.review-card strong {
  color: var(--accent-dark);
}

.reviews-empty {
  padding: 22px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.48);
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.testimonials .section-heading h2,
.testimonials .testimonial-card strong {
  color: var(--ink);
}

.testimonials .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.testimonial-card p {
  margin-bottom: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.35;
}

.stars {
  color: var(--accent);
  letter-spacing: 0.08em;
}

.contact {
  align-items: stretch;
}

.contact-card,
.cart {
  padding: clamp(24px, 4vw, 42px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.whatsapp-direct {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 12px 24px;
  color: #fff;
  background: #25d366;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-direct:hover {
  background: #1fb85a;
  transform: translateY(-2px);
}

.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-icon.whatsapp {
  background: #25d366;
}

.social-icon.instagram {
  background: #c13584;
}

.contact-info {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-info p {
  margin-bottom: 0;
}

.contact-info strong {
  color: var(--ink);
}

.contact-info a {
  color: var(--accent-dark);
  font-weight: 800;
}

.newsletter {
  margin-top: 28px;
}

.newsletter label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.newsletter div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter input {
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  color: var(--ink);
  background: #fbfaf8;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.newsletter button {
  padding: 0 20px;
  color: #fff;
  background: var(--accent-dark);
}

.form-message {
  display: block;
  min-height: 20px;
  margin-top: 8px;
  color: var(--muted);
}

.cart {
  align-self: start;
}

.cart-header,
.cart-total {
  justify-content: space-between;
  gap: 16px;
}

.cart-header {
  margin-bottom: 18px;
}

.cart-header h3 {
  margin-bottom: 0;
}

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

.cart-items {
  display: grid;
  gap: 10px;
  min-height: 88px;
  margin-bottom: 18px;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line button {
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.empty {
  color: var(--muted);
}

.cart-total {
  padding-top: 18px;
  margin-bottom: 18px;
  border-top: 1px solid var(--line);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.8fr));
  gap: 34px;
  padding: 48px clamp(20px, 5vw, 72px) 28px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(135deg, #4a423a, #2f2a25);
}

.site-footer p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand p {
  max-width: 330px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
  padding-top: 4px;
}

.footer-column h3 {
  margin-bottom: 6px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-socials {
  gap: 10px;
  margin-top: 10px;
}

.footer-socials .social-icon {
  color: var(--accent-dark);
  background: #fff;
}

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

.payment-badges span {
  padding: 8px 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.compact-footer {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.chatbot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.chatbot-toggle,
.chatbot-close,
.chatbot-suggestions button,
.chatbot-form button {
  cursor: pointer;
}

.chatbot-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  color: #fff;
  background: var(--accent-dark);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(37, 34, 31, 0.22);
}

.chatbot-dot {
  width: 10px;
  height: 10px;
  background: #d8c8a9;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(216, 200, 169, 0.18);
}

.chatbot-panel {
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  color: #fff;
  background: var(--accent-dark);
}

.chatbot-header strong,
.chatbot-header span {
  display: block;
}

.chatbot-header span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.chatbot-close {
  width: 34px;
  height: 34px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.chatbot-messages {
  display: grid;
  gap: 10px;
  max-height: 330px;
  min-height: 220px;
  overflow-y: auto;
  padding: 18px;
  background: #fbfaf8;
}

.chat-message {
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.chat-message.bot {
  justify-self: start;
  color: var(--ink);
  background: var(--surface-soft);
}

.chat-message.user {
  justify-self: end;
  color: #fff;
  background: var(--accent-dark);
}

.chatbot-suggestions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 18px 14px;
  background: #fbfaf8;
}

.chatbot-suggestions button {
  min-height: 34px;
  padding: 0 11px;
  color: var(--accent-dark);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.chatbot-form input {
  min-width: 0;
  height: 42px;
  padding: 0 13px;
  color: var(--ink);
  background: #fbfaf8;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.chatbot-form button {
  min-width: 78px;
  color: #fff;
  background: var(--accent-dark);
  border: 0;
  border-radius: 999px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .top-nav {
    display: none;
  }

  .header-action {
    display: none;
  }

  .trust-strip,
  .collection-grid,
  .why-grid,
  .bestseller-grid,
  .content-grid,
  .review-layout,
  .reviews-grid,
  .guarantee-grid,
  .testimonial-grid,
  .product-grid,
  .lookbook,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

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

  .lookbook-panel {
    grid-template-columns: 1fr;
  }

  .lookbook-panel div {
    min-height: 160px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .lookbook-panel div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 88vh;
    padding: 116px 20px 54px;
  }

  .page-hero {
    min-height: 48vh;
    padding: 118px 20px 50px;
  }

  .site-header {
    padding: 14px 16px;
  }

  .brand {
    font-size: 1.08rem;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 6.4rem);
  }

  h2 {
    font-size: clamp(2.2rem, 13vw, 3.5rem);
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(37, 34, 31, 0.26), rgba(37, 34, 31, 0.78));
  }

  .hero-content {
    max-width: none;
  }

  .button,
  .hero-actions,
  .hero-highlights {
    width: 100%;
  }

  .hero-highlights span {
    flex: 1 1 100%;
    justify-content: center;
  }

  .button {
    min-height: 50px;
  }

  .trust-strip div {
    padding: 20px;
  }

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

  .why-grid article,
  .bestseller-grid article,
  .review-card,
  .testimonial-card {
    min-height: auto;
  }

  .payment-list {
    grid-template-columns: 1fr;
  }

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

  .newsletter button {
    min-height: 48px;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 96px;
  }

  .footer-bottom {
    display: grid;
  }

  .payment-badges {
    flex-wrap: wrap;
  }

  .chatbot {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .chatbot-toggle,
  .chatbot-panel {
    width: 100%;
  }

  .chatbot-toggle {
    justify-content: center;
  }

  .chatbot-messages {
    max-height: 300px;
  }
}
