:root {
  --bg: #f5f0e8;
  --bg-2: #e7ddcf;
  --panel: rgba(255, 251, 246, 0.8);
  --card: rgba(255, 255, 255, 0.74);
  --muted: #5f564f;
  --text: #1f1b18;
  --line: rgba(31, 27, 24, 0.1);
  --brand: #a75c3d;
  --brand-2: #6d7d60;
  --brand-3: #d39b66;
  --highlight: #c98d57;
  --shadow: 0 24px 60px rgba(92, 64, 45, 0.14);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(700px 500px at 15% 15%, rgba(182, 129, 91, 0.18), transparent 45%),
    radial-gradient(800px 500px at 85% 10%, rgba(106, 140, 125, 0.12), transparent 45%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: var(--text);
  line-height: 1.6;
}

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

a, button {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

button, input, textarea, select {
  font: inherit;
}

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 232, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(33, 28, 24, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  box-shadow: 0 12px 28px rgba(182, 129, 91, 0.28);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--muted);
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(33, 28, 24, 0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  border-color: rgba(33, 28, 24, 0.18);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.icon-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(33, 28, 24, 0.1);
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  color: var(--text);
  cursor: pointer;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(33, 28, 24, 0.18);
}

.icon-btn svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.cart-pill {
  border: 1px solid rgba(33, 28, 24, 0.1);
  background: rgba(255,255,255,0.25);
  color: var(--text);
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  cursor: pointer;
}

.cart-pill:hover,
.cart-pill:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(33, 28, 24, 0.18);
}

.cart-pill span {
  min-width: 1.35rem;
  height: 1.35rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  font-size: 0.75rem;
}

.hero {
  padding: 4.5rem 0 2.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 2.2rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--brand);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

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

h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: 0.7rem;
}

.lead {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.12rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-3));
  color: white;
  box-shadow: 0 20px 40px rgba(182, 129, 91, 0.2);
}

.btn-secondary {
  background: rgba(255,255,255,0.2);
  border-color: rgba(33, 28, 24, 0.1);
  color: var(--text);
}

.hero-metrics {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 0;
  margin: 0;
}

.hero-metrics li {
  display: grid;
  gap: 0.15rem;
  min-width: 120px;
}

.hero-metrics strong {
  font-size: 1.1rem;
}

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

.hero-visual {
  display: flex;
  justify-content: center;
}

.showcase-wrap {
  position: relative;
  width: min(100%, 500px);
  min-height: 500px;
  display: grid;
  place-items: center;
}

.showcase-card {
  position: absolute;
  display: grid;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(33, 28, 24, 0.08);
  border-radius: 26px;
  padding: 0.9rem;
  box-shadow: var(--shadow);
}

.showcase-main {
  inset: 60px 35px 35px 30px;
}

.showcase-side {
  width: 215px;
  right: 0;
  bottom: 18px;
  transform: rotate(8deg);
}

.showcase-image {
  border-radius: 18px;
  height: 220px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}

.image-lamp {
  background-image: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1200&q=80');
}

.image-bottle {
  height: 160px;
  background-image: url('https://images.unsplash.com/photo-1521572267360-ee0c2909d518?auto=format&fit=crop&w=900&q=80');
}

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

.showcase-meta strong {
  font-size: 1.05rem;
}

.floating-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 0.15rem;
  padding: 0.7rem 0.9rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(33, 28, 24, 0.08);
  box-shadow: var(--shadow);
}

.stars {
  color: var(--highlight);
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.brands {
  padding-top: 1rem;
  color: var(--muted);
}

.brand-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 1rem;
  border-top: 1px solid rgba(33, 28, 24, 0.08);
  border-bottom: 1px solid rgba(33, 28, 24, 0.08);
  padding: 1.2rem 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.trust-strip {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trust-item {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.38);
  border: 1px solid rgba(33, 28, 24, 0.08);
  display: grid;
  gap: 0.2rem;
}

.trust-item strong {
  font-size: 1rem;
}

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

.section-spacer {
  padding-top: 5.5rem;
}

.section-heading {
  margin-bottom: 1.7rem;
}

.feature-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature-head .btn {
  white-space: nowrap;
}

.category-grid,
.product-grid,
.review-grid {
  display: grid;
  gap: 1.2rem;
}

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

.category-card {
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0.22));
  border: 1px solid rgba(33, 28, 24, 0.08);
}

.category-art {
  height: 150px;
  border-radius: 16px;
  margin-bottom: 1rem;
  background-size: cover;
  background-position: center;
}

.art-home {
  background-image: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=900&q=80');
}

.art-tech {
  background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=900&q=80');
}

.art-wellness {
  background-image: url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=900&q=80');
}

.art-travel {
  background-image: url('https://images.unsplash.com/photo-1527631746610-bca00a040d60?auto=format&fit=crop&w=900&q=80');
}

.category-card h3 {
  margin-bottom: 0.5rem;
}

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

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

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2));
  border: 1px solid rgba(33, 28, 24, 0.08);
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(33, 28, 24, 0.14);
  box-shadow: 0 25px 50px rgba(73, 54, 42, 0.08);
}

.product-thumb {
  height: 230px;
  background-size: cover;
  background-position: center;
}

.thumb-one {
  background-image: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=900&q=80');
}

.thumb-two {
  background-image: url('https://images.unsplash.com/photo-1523275335684-37898b6baf30?auto=format&fit=crop&w=900&q=80');
}

.thumb-three {
  background-image: url('https://images.unsplash.com/photo-1521572267360-ee0c2909d518?auto=format&fit=crop&w=900&q=80');
}

.thumb-four {
  background-image: url('https://images.unsplash.com/photo-1527631746610-bca00a040d60?auto=format&fit=crop&w=900&q=80');
}

.product-body {
  padding: 1rem 1rem 1.15rem;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(182, 129, 91, 0.12);
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.muted-pill {
  background: rgba(106, 140, 125, 0.12);
  color: var(--brand-2);
}

.price {
  font-weight: 700;
}

.product-body h3 {
  margin-bottom: 0.55rem;
}

.product-body p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.product-meta button {
  border: 1px solid rgba(33, 28, 24, 0.1);
  background: rgba(255,255,255,0.2);
  color: var(--text);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
}

.promo-strip {
  margin-top: 5.5rem;
  padding: 1.5rem 1.6rem;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(182, 129, 91, 0.12), rgba(106, 140, 125, 0.1));
  border: 1px solid rgba(33, 28, 24, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 720px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .feature-head {
    align-items: flex-start;
  }
}

.contact-section {
  margin-top: 5.5rem;
}

.contact-panel {
  background: linear-gradient(135deg, rgba(255,255,255,0.56), rgba(255,255,255,0.22));
  border: 1px solid rgba(33, 28, 24, 0.08);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-copy p {
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.3rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

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

.contact-card {
  background: rgba(255,255,255,0.46);
  border: 1px solid rgba(33, 28, 24, 0.08);
  border-radius: 18px;
  padding: 1rem 1rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-label {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

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

.review-card {
  padding: 1.4rem;
  border-radius: 22px;
  border: 1px solid rgba(33, 28, 24, 0.08);
  background: rgba(255, 255, 255, 0.38);
}

.review-card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.site-footer {
  margin-top: 5rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(33, 28, 24, 0.08);
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  margin-bottom: 0.8rem;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
}

.catalog-hero {
  padding: 4rem 0 1.5rem;
}

.catalog-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 1.5rem;
}

.catalog-highlight {
  display: grid;
  gap: 0.8rem;
  padding: 1.4rem 1.3rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(33, 28, 24, 0.08);
  box-shadow: var(--shadow);
}

.catalog-highlight p {
  margin-bottom: 0;
  color: var(--muted);
}

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

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

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

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

.cart-page,
.checkout-page {
  padding: 4rem 0 5rem;
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.5rem;
  align-items: start;
}

.cart-panel,
.summary-panel,
.checkout-panel,
.checkout-address {
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(33, 28, 24, 0.08);
  border-radius: 26px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.cart-review-list,
.summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.cart-review-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.8rem 0.6rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(33, 28, 24, 0.08);
}

.cart-review-copy {
  display: grid;
  gap: 0.2rem;
}

.cart-review-copy span {
  color: var(--muted);
  font-size: 0.8rem;
}

.cart-review-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: flex-end;
}

.review-remove {
  border: 0;
  background: transparent;
  color: var(--brand);
  font-weight: 700;
  cursor: pointer;
}

.summary-row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(33, 28, 24, 0.08);
}

.promo-form {
  display: flex;
  gap: 0.7rem;
  margin: 1rem 0 1.2rem;
  flex-wrap: wrap;
}

.promo-form input,
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  min-height: 2.9rem;
  border-radius: 12px;
  border: 1px solid rgba(33, 28, 24, 0.12);
  background: rgba(255,255,255,0.5);
  padding: 0.75rem 0.8rem;
  color: var(--text);
}

.promo-note {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.primary-action,
.secondary-action {
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.primary-action {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
}

.secondary-action {
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(33, 28, 24, 0.09);
  color: var(--text);
}

.total-row {
  border-top: 1px solid rgba(33, 28, 24, 0.08);
  padding-top: 0.9rem;
  margin-top: 0.7rem;
}

.checkout-form {
  display: grid;
  gap: 1rem;
}

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

.checkout-form textarea {
  min-height: 120px;
  resize: vertical;
}

.summary-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(33, 28, 24, 0.08);
}

@media (max-width: 980px) {
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

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

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: linear-gradient(180deg, rgba(182,129,91,0.95), rgba(106,140,125,0.9));
  transform: translateY(-100%);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.page-transition.show {
  transform: translateY(0);
}

.search-overlay,
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 13, 10, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 90;
}

.search-overlay.visible,
.cart-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.search-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(430px, 92vw);
  height: 100vh;
  background: rgba(255, 250, 245, 0.97);
  backdrop-filter: blur(18px);
  border-left: 1px solid rgba(33, 28, 24, 0.08);
  box-shadow: -28px 0 60px rgba(36, 23, 18, 0.12);
  transform: translateX(110%);
  transition: transform 260ms ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
}

.search-panel.open {
  transform: translateX(0);
}

.search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.search-header h3 {
  margin-bottom: 0;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.search-field-wrap {
  margin-bottom: 1rem;
}

.search-field-wrap input {
  width: 100%;
  border: 1px solid rgba(33, 28, 24, 0.12);
  border-radius: 14px;
  min-height: 3.1rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
}

.search-results {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
  overflow-y: auto;
}

.search-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(33, 28, 24, 0.08);
  background: rgba(255, 255, 255, 0.44);
  text-align: left;
  cursor: pointer;
}

.search-meta {
  display: grid;
  gap: 0.15rem;
}

.search-meta strong {
  font-size: 0.98rem;
}

.search-meta span {
  color: var(--muted);
  font-size: 0.8rem;
}

.search-empty {
  padding: 1rem;
  border-radius: 14px;
  border: 1px dashed rgba(33, 28, 24, 0.18);
  color: var(--muted);
  background: rgba(255,255,255,0.2);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100vh;
  background: rgba(255, 250, 245, 0.97);
  backdrop-filter: blur(18px);
  border-left: 1px solid rgba(33, 28, 24, 0.08);
  box-shadow: -28px 0 60px rgba(36, 23, 18, 0.12);
  transform: translateX(110%);
  transition: transform 260ms ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

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

.cart-header,
.cart-summary {
  padding: 1.2rem 1.2rem 1rem;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(33, 28, 24, 0.08);
}

.cart-eyebrow {
  margin-bottom: 0.35rem;
}

.cart-header h3 {
  margin-bottom: 0;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.cart-close {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(33, 28, 24, 0.12);
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  color: var(--text);
  font-size: 1.35rem;
  cursor: pointer;
}

.cart-items {
  list-style: none;
  margin: 0;
  padding: 1rem 1.2rem;
  display: grid;
  gap: 0.85rem;
  overflow-y: auto;
  flex: 1;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.65rem 0.5rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(33, 28, 24, 0.08);
}

.cart-thumb {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
}

.cart-item-details {
  min-width: 0;
}

.cart-item-name {
  display: block;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.cart-item-price {
  color: var(--muted);
  font-size: 0.82rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(33, 28, 24, 0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.4);
  overflow: hidden;
}

.qty-btn {
  width: 1.8rem;
  height: 1.8rem;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
}

.qty-badge {
  display: inline-grid;
  place-items: center;
  min-width: 1.7rem;
  height: 1.7rem;
  padding: 0.1rem 0.45rem;
  background: rgba(182, 129, 91, 0.1);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
}

.cart-item-remove {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
}

.cart-empty {
  padding: 1rem 0.8rem;
  border: 1px dashed rgba(33, 28, 24, 0.15);
  border-radius: 16px;
  color: var(--muted);
  text-align: center;
}

.cart-summary {
  border-top: 1px solid rgba(33, 28, 24, 0.08);
  background: rgba(255,255,255,0.35);
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.total-row {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(33, 28, 24, 0.08);
  color: var(--text);
  font-size: 1.05rem;
}

.view-cart-btn {
  width: 100%;
  margin-top: 1rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  min-height: 3.2rem;
  font-weight: 700;
  cursor: pointer;
}

.add-to-cart {
  border: 1px solid rgba(33, 28, 24, 0.1);
  background: rgba(255,255,255,0.2);
  color: var(--text);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
}

.add-to-cart:disabled {
  opacity: 0.8;
  cursor: default;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
}

.nav-toggle .hamburger,
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
}

.nav-toggle .hamburger::before { top: -7px; }
.nav-toggle .hamburger::after { bottom: -7px; }

.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .hero-inner,
  .category-grid,
  .product-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 1rem auto 1rem;
    background: rgba(245, 239, 232, 0.96);
    border: 1px solid rgba(33, 28, 24, 0.08);
    border-radius: 18px;
    padding: 0.8rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    display: block;
    text-align: center;
  }

  .header-actions {
    display: none;
  }

  .category-grid,
  .product-grid,
  .review-grid,
  .brand-row {
    grid-template-columns: 1fr;
  }

  .promo-strip,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .btn,
  .product-card,
  .page-transition,
  .site-nav {
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
