/* ============================================================
   LUXURY STORE — Premium CSS Design System
   Inspired by: Bottega Veneta, The Row, Brunello Cucinelli
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ============================================================
   Design Tokens
============================================================ */
:root {
  /* Surfaces */
  --bg:              #f9f7f4;
  --bg-warm:         #f3ede5;
  --surface:         #ffffff;
  --surface-soft:    #faf8f5;
  --surface-muted:   #f0ebe3;
  --surface-deep:    #e8e0d5;
  --surface-dark:    #1c1916;

  /* Typography */
  --text:            #18160f;
  --text-soft:       #6b6355;
  --text-faint:      #a9a099;
  --text-inverse:    #f5f0ea;

  /* Lines */
  --line:            #e8e1d7;
  --line-strong:     #d5cbbf;
  --line-subtle:     #f0ebe3;

  /* Brand / Accent */
  --gold:            #b08554;
  --gold-light:      #c9a476;
  --gold-soft:       #eddfc9;
  --gold-deep:       #8d6840;
  --gold-pale:       #f7f0e5;

  /* Semantic */
  --success:         #2a5a38;
  --danger:          #8b3a33;
  --success-bg:      #eaf2ea;
  --danger-bg:       #f5eae9;

  /* Shadows — muted & warm */
  --shadow-xs:       0 1px 3px rgba(24, 22, 15, 0.04);
  --shadow-sm:       0 8px 28px rgba(24, 22, 15, 0.07);
  --shadow-md:       0 20px 50px rgba(24, 22, 15, 0.10);
  --shadow-lg:       0 32px 72px rgba(24, 22, 15, 0.13);

  /* Radii — restrained, almost square */
  --radius-xs:       2px;
  --radius-sm:       4px;
  --radius-md:       6px;
  --radius-lg:       8px;

  /* Layout */
  --container:       1340px;
  --header-h:        80px;

  /* Transitions */
  --ease:            cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:        cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ============================================================
   Reset & Base
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.01em;
}

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

button, input, select, textarea {
  font: inherit;
  letter-spacing: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

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

.hidden {
  display: none !important;
}

/* ============================================================
   Global Interactive Polish
============================================================ */
.product-card,
.arrival-card,
.overlay-result-card {
  cursor: pointer;
  user-select: none;
}

.filter-chip,
.nav-link,
.nav-btn,
.drawer-link,
.drawer-btn,
.hero-btn,
.product-clean-btn,
.card-qty-btn,
.product-qty-btn,
.arrival-add-btn {
  cursor: pointer;
  user-select: none;
}

/* Focus-visible for accessibility */
.filter-chip:focus-visible,
.nav-link:focus-visible,
.nav-btn:focus-visible,
.drawer-link:focus-visible,
.drawer-btn:focus-visible,
.hero-btn:focus-visible,
.add-btn:focus-visible,
.product-clean-btn:focus-visible,
.arrival-add-btn:focus-visible,
.card-qty-btn:focus-visible,
.product-qty-btn:focus-visible,
.sort-select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Active press feedback */
.hero-btn:active,
.add-btn:active,
.product-clean-btn:active,
.arrival-add-btn:active,
.see-all-btn:active {
  transform: scale(0.98);
}

/* Disable hover transform on mobile */
@media (max-width: 640px) {
  .product-card:hover {
    transform: none;
  }
}

/* ============================================================
   Layout
============================================================ */
.section-block {
  width: min(var(--container), calc(100% - 56px));
  margin: 0 auto;
  padding: 36px 0;
}

.section-tight {
  padding-top: 16px;
  padding-bottom: 12px;
}

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

.section-head-compact {
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 6px;
}

.section-subtitle {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   Header
============================================================ */
#siteHeader {
  position: sticky;
  top: 0;
  z-index: 60;
}

.site-header {
  background: rgba(249, 247, 244, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.top-strip {
  background: var(--surface-dark);
  color: #c8bfb2;
}

.top-strip-inner {
  width: min(var(--container), calc(100% - 56px));
  margin: 0 auto;
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-main {
  width: min(var(--container), calc(100% - 56px));
  margin: 0 auto;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Logo */
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--surface-dark);
  color: #d4b896;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: var(--radius-xs);
}

.logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  white-space: nowrap;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

/* Search bar */
.desktop-search-bar {
  display: flex;
  justify-content: center;
}

.desktop-search-box {
  width: min(100%, 580px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.desktop-search-box:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

.desktop-search-box input {
  border: none;
  outline: none;
  background: transparent;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
}

.desktop-search-box input::placeholder {
  color: var(--text-faint);
  letter-spacing: 0.08em;
}

.desktop-search-box button {
  height: 100%;
  padding: 0 22px;
  background: var(--surface-dark);
  color: #d4b896;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease);
}

.desktop-search-box button:hover {
  background: #2e2a24;
}

/* Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link,
.nav-btn {
  padding: 10px 14px;
  border-radius: var(--radius-xs);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-link:hover,
.nav-btn:hover {
  color: var(--text);
  background: var(--surface-muted);
}

.header-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xs);
  background: var(--surface);
  border: 1px solid var(--line);
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease);
}

.header-icon-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-soft);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-icon-btn:hover {
  background: var(--surface-muted);
}

.header-icon-btn:hover svg {
  stroke: var(--text);
}

/* Basket button */
.basket-btn,
.basket-drawer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-xs);
  background: var(--surface-dark);
  color: var(--text-inverse);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease);
}

.basket-btn svg,
.basket-drawer-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.basket-btn:hover,
.basket-drawer-btn:hover {
  background: #2e2a24;
}

.basket-badge {
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

.mobile-menu-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xs);
  background: var(--surface);
  border: 1px solid var(--line);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* ============================================================
   Hero
============================================================ */
.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: #e8dfd3;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(24, 22, 15, 0.22) 0%,
    rgba(24, 22, 15, 0.04) 60%
  );
}

/* Stronger overlay when hero has a background image */
.hero-section[style*="background-image"] .hero-overlay,
.hero-section.hero-section-has-media .hero-overlay {
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 60%
  );
}

.hero-section[style*="background-image"] .hero-title,
.hero-section.hero-section-has-media .hero-title {
  color: #ffffff;
}

.hero-section[style*="background-image"] .hero-subtitle,
.hero-section.hero-section-has-media .hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.hero-section[style*="background-image"] .hero-pill,
.hero-section.hero-section-has-media .hero-pill {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.85);
}

/* Decorative corner rule */
.hero-section::before {
  content: '';
  position: absolute;
  top: 36px;
  right: 56px;
  width: 1px;
  height: 220px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 36px;
  right: 36px;
  width: 220px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-content {
  position: relative;
  width: min(var(--container), calc(100% - 56px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.18);
  color: rgba(24, 22, 15, 0.7);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-title {
  max-width: 820px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 60px;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  font-weight: 500;
}

.hero-subtitle {
  max-width: 500px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.03em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-btn {
  min-width: 168px;
  padding: 14px 24px;
  border-radius: var(--radius-xs);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
}

.hero-btn-primary {
  background: var(--surface-dark);
  color: var(--text-inverse);
  border: 1px solid var(--surface-dark);
}

.hero-btn-primary:hover {
  background: #2e2a24;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* ============================================================
   Sort / Filter Controls
============================================================ */
.sort-wrap {
  flex-shrink: 0;
}

.sort-select {
  padding: 11px 14px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  min-width: 200px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236b6355' stroke-width='1.25'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease);
}

.sort-select:focus {
  outline: none;
  border-color: var(--gold);
}

/* ============================================================
   Image Placeholders
============================================================ */
.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--surface-soft);
}

.arrival-thumb-img,
.product-media-img,
.overlay-result-thumb-img,
.product-main-image-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--surface-soft);
  transition: transform 0.6s var(--ease-out);
}

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

.arrival-thumb,
.product-media,
.overlay-result-thumb,
.product-main-image-inner {
  overflow: hidden;
}

/* ============================================================
   New Arrivals Slider
============================================================ */
.new-arrivals-slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 20px 0;
}

.new-arrivals-track {
  display: flex;
  gap: 16px;
  padding: 0 20px;
  width: max-content;
  animation: arrivalsScroll 32s linear infinite;
}

.new-arrivals-slider-wrap:hover .new-arrivals-track {
  animation-play-state: paused;
}

@keyframes arrivalsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-35%); }
}

.arrival-card {
  width: 248px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease);
}

.arrival-card:hover {
  box-shadow: var(--shadow-sm);
}

.arrival-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  text-align: center;
  font-size: 11px;
}

.arrival-body {
  padding: 16px;
}

.arrival-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.arrival-meta {
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.arrival-price {
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  color: var(--gold-deep);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.slider-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.slider-fade-left {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.slider-fade-right {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.arrival-add-btn {
  width: 100%;
  margin-top: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.arrival-add-btn:hover {
  background: var(--surface-dark);
  color: var(--text-inverse);
}

.arrival-qty {
  margin-top: 10px;
}

/* ============================================================
   Category Chips
============================================================ */
.category-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.category-chips::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex-shrink: 0;
  padding: 9px 16px;
  border-radius: var(--radius-xs);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s var(--ease);
}

.filter-chip:hover {
  border-color: var(--line-strong);
  color: var(--text);
}

.filter-chip.active {
  background: var(--surface-dark);
  color: var(--text-inverse);
  border-color: var(--surface-dark);
}

.chip-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--text-faint);
  font-size: 10px;
  font-weight: 500;
  margin-left: 6px;
  letter-spacing: 0;
}

.filter-chip.active .chip-count {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-inverse);
}

/* ============================================================
   Products Grid
============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.product-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  text-align: center;
  font-size: 11px;
  overflow: hidden;
}

.product-body {
  padding: 18px 18px 20px;
}

.product-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  min-height: 50px;
  margin-bottom: 10px;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: var(--radius-xs);
  background: var(--surface-muted);
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge.in-stock {
  background: var(--success-bg);
  color: var(--success);
}

.badge.out-stock {
  background: var(--danger-bg);
  color: var(--danger);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line-subtle);
}

.price-label,
.sku-label {
  display: block;
  color: var(--text-faint);
  font-size: 9px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.price-value {
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.sku-value {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-soft);
  text-align: right;
  letter-spacing: 0.06em;
}

.add-btn {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-xs);
  background: var(--surface-dark);
  color: var(--text-inverse);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.22s var(--ease);
}

.add-btn:hover {
  background: #2e2a24;
}

.card-qty-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  overflow: hidden;
}

.card-qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--surface-muted);
  color: var(--text-soft);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}

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

.card-qty-value {
  min-width: 40px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 40px;
  background: var(--surface);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

/* ============================================================
   Skeleton / Empty
============================================================ */
.product-skeleton {
  height: 400px;
  border-radius: var(--radius-sm);
  background: linear-gradient(
    90deg,
    var(--surface-muted) 0%,
    var(--surface-soft) 50%,
    var(--surface-muted) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite linear;
  border: 1px solid var(--line);
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.empty-state {
  padding: 60px 20px;
  text-align: center;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
}

.empty-state h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.empty-state p {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* ============================================================
   Pagination
============================================================ */
.see-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.see-all-btn {
  min-width: 240px;
  text-align: center;
  padding: 14px 28px;
  border-radius: var(--radius-xs);
  background: var(--surface-dark);
  color: var(--text-inverse);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.22s var(--ease);
}

.see-all-btn:hover {
  background: #2e2a24;
}

.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.pagination-btn {
  min-width: 120px;
  padding: 12px 16px;
  border-radius: var(--radius-xs);
  background: var(--surface-dark);
  color: var(--text-inverse);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.22s var(--ease);
}

.pagination-btn:hover:not(:disabled) {
  background: #2e2a24;
}

.pagination-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pagination-info {
  padding: 11px 16px;
  border-radius: var(--radius-xs);
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0.08em;
}

/* ============================================================
   All Products Hero Banner
============================================================ */
.all-products-hero {
  padding-top: 24px;
  padding-bottom: 10px;
}

.all-products-hero-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
}

.all-products-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.all-products-count-box {
  min-width: 145px;
  padding: 14px 18px;
  border-radius: var(--radius-xs);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  text-align: center;
}

.all-products-count-box span {
  display: block;
  font-size: 9px;
  color: var(--text-faint);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.all-products-count-box strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* ============================================================
   Search Overlay
============================================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 22, 15, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.search-overlay-panel {
  position: relative;
  width: min(780px, calc(100% - 24px));
  margin: 64px auto 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 20px;
}

.search-overlay-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.search-overlay-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.search-close-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: background 0.2s var(--ease);
}

.search-close-btn:hover {
  background: var(--surface-muted);
}

.search-input-wrap {
  margin-bottom: 14px;
}

.search-overlay-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--line);
  background: var(--surface-soft);
  outline: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: border-color 0.2s var(--ease);
}

.search-overlay-input:focus {
  border-color: var(--gold);
}

.search-overlay-input::placeholder {
  color: var(--text-faint);
  letter-spacing: 0.08em;
}

.overlay-search-results {
  display: grid;
  gap: 10px;
  max-height: 56vh;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}

.overlay-search-results::-webkit-scrollbar {
  width: 6px;
}

.overlay-search-results::-webkit-scrollbar-track {
  background: transparent;
}

.overlay-search-results::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 3px;
}

.overlay-result-card {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 14px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px;
  transition: background 0.2s var(--ease);
}

.overlay-result-card:hover {
  background: var(--surface-soft);
}

.overlay-result-thumb {
  width: 68px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xs);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 10px;
  text-align: center;
  overflow: hidden;
}

.overlay-result-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.overlay-result-meta {
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.overlay-result-price {
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

/* ============================================================
   Mobile Drawer
============================================================ */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(24, 22, 15, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), visibility 0.28s var(--ease);
  z-index: 80;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(86vw, 340px);
  height: 100vh;
  background: var(--surface);
  border-right: 1px solid var(--line);
  box-shadow: 0 24px 64px rgba(24, 22, 15, 0.14);
  transform: translateX(-100%);
  transition: transform 0.3s var(--ease);
  z-index: 90;
  padding: 22px;
}

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

.mobile-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.mobile-drawer-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.mobile-drawer-nav {
  display: grid;
  gap: 6px;
}

.drawer-link,
.drawer-btn {
  width: 100%;
  text-align: left;
  padding: 13px 14px;
  border-radius: var(--radius-xs);
  background: transparent;
  border: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  border-bottom: 1px solid var(--line-subtle);
  transition: color 0.2s var(--ease);
}

.drawer-link:hover,
.drawer-btn:hover {
  color: var(--text);
}

/* ============================================================
   Footer
============================================================ */
.site-footer {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  background: var(--surface-dark);
  color: #c8bfb2;
}

.footer-inner {
  width: min(var(--container), calc(100% - 56px));
  margin: 0 auto;
  padding: 48px 0 52px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-store-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8e0d3;
  margin-bottom: 14px;
}

.footer-text {
  max-width: 480px;
  color: #8a8278;
  line-height: 1.9;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-powered {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.footer-link-btn,
.footer-link-anchor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 12px 16px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8bfb2;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.footer-link-btn:hover,
.footer-link-anchor:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  color: #e8e0d3;
}

/* ============================================================
   Product Page — Premium Minimal
============================================================ */
.product-clean-shell {
  padding-top: 20px;
  padding-bottom: 10px;
}

.product-clean-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.product-clean-breadcrumb a {
  color: var(--text-faint);
  transition: color 0.2s var(--ease);
}

.product-clean-breadcrumb a:hover {
  color: var(--text);
}

.product-clean-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  gap: 0;
  align-items: stretch;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-clean-image-wrap {
  background: var(--surface-soft);
  border-right: 1px solid var(--line);
  min-width: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--surface-soft);
  overflow: hidden;
}

.product-main-image-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-soft);
  color: var(--text-faint);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-clean-info {
  background: var(--surface);
  padding: 52px 60px 48px;
  min-width: 0;
}

.product-clean-category {
  display: inline-block;
  margin-bottom: 20px;
  background: transparent;
  color: var(--text-faint);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.product-clean-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  margin: 0 0 20px;
  font-size: 50px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: var(--text);
  max-width: 540px;
}

.product-clean-price {
  margin-bottom: 30px;
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* Thin rule divider */
.product-clean-divider {
  width: 40px;
  height: 1px;
  background: var(--line-strong);
  margin: 0 0 28px;
}

.product-clean-meta {
  margin-bottom: 32px;
}

.product-clean-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-subtle);
}

.product-clean-meta-row:first-child {
  border-top: 1px solid var(--line-subtle);
}

.product-clean-meta-label {
  min-width: 60px;
  font-size: 9px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.product-clean-meta-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.product-qty-row {
  margin-bottom: 16px;
}

.product-qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  overflow: hidden;
  background: var(--surface);
}

.product-qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--text-soft);
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}

.product-qty-btn:hover {
  background: var(--surface-muted);
  color: var(--text);
}

.product-qty-input {
  width: 64px;
  height: 44px;
  border: none;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: var(--surface-soft);
  outline: none;
  -moz-appearance: textfield;
}

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

.product-qty-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-soft);
}

.product-clean-actions {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 32px;
}

.product-clean-btn {
  min-width: 0;
  height: 50px;
  padding: 0 26px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.22s var(--ease);
  border-radius: var(--radius-xs);
}

.product-clean-btn-dark {
  background: var(--gold);
  color: #ffffff;
  border: 1px solid var(--gold);
  min-width: 220px;
}

.product-clean-btn-dark:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.product-clean-btn-light {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
  min-width: 170px;
}

.product-clean-btn-light:hover {
  background: var(--surface-soft);
  border-color: var(--text-faint);
}

.product-clean-description {
  padding-top: 10px;
  border-top: 1px solid var(--line-subtle);
}

.product-clean-description h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
}

.product-clean-description p {
  color: var(--text-soft);
  line-height: 2;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  max-width: 520px;
}

.related-products-section {
  padding-top: 32px;
}

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .product-clean-layout {
    grid-template-columns: 1fr;
  }

  .product-clean-image-wrap {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .product-clean-info {
    padding: 38px 32px 34px;
  }

  .product-clean-title {
    max-width: none;
    font-size: clamp(36px, 6vw, 56px);
  }
}

@media (max-width: 992px) {
  .desktop-nav,
  .desktop-search-bar {
    display: none;
  }

  .mobile-menu-btn,
  .header-icon-btn {
    display: inline-flex;
  }

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

  .section-title {
    font-size: 28px;
  }

  .hero-section {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .section-block {
    width: min(var(--container), calc(100% - 24px));
    padding: 24px 0;
  }

  .top-strip-inner,
  .header-main,
  .hero-content,
  .footer-inner {
    width: min(var(--container), calc(100% - 24px));
  }

  .header-main {
    min-height: 68px;
    gap: 10px;
  }

  .logo-mark {
    width: 32px;
    height: 32px;
  }

  .logo-text {
    font-size: 16px;
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .basket-btn {
    padding: 9px 12px;
    font-size: 11px;
  }

  .hero-section {
    min-height: 380px;
  }

  .hero-content {
    padding: 56px 0;
  }

  .hero-title {
    font-size: 44px;
    line-height: 0.96;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .hero-btn {
    width: 100%;
  }

  .storefront-root.catalogue-loading .hero-section,
  .hero-section[style*="background-image"],
  .hero-section.hero-section-has-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .storefront-root.catalogue-loading .hero-section .hero-content,
  .hero-section[style*="background-image"] .hero-content,
  .hero-section.hero-section-has-media .hero-content {
    min-height: 100%;
    padding: 18px 0 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .storefront-root.catalogue-loading .hero-section .hero-pill,
  .hero-section[style*="background-image"] .hero-pill,
  .hero-section.hero-section-has-media .hero-pill {
    margin-bottom: 10px;
    padding: 5px 10px;
    font-size: 9px;
  }

  .storefront-root.catalogue-loading .hero-section .hero-title,
  .hero-section[style*="background-image"] .hero-title,
  .hero-section.hero-section-has-media .hero-title {
    max-width: 240px;
    font-size: clamp(24px, 8vw, 34px);
    margin-bottom: 10px;
  }

  .storefront-root.catalogue-loading .hero-section .hero-subtitle,
  .hero-section[style*="background-image"] .hero-subtitle,
  .hero-section.hero-section-has-media .hero-subtitle {
    max-width: 240px;
    font-size: 11px;
    line-height: 1.5;
  }

  .storefront-root.catalogue-loading .hero-section .hero-actions,
  .hero-section[style*="background-image"] .hero-actions,
  .hero-section.hero-section-has-media .hero-actions {
    margin-top: 14px;
    gap: 8px;
  }

  .storefront-root.catalogue-loading .hero-section .hero-btn,
  .hero-section[style*="background-image"] .hero-btn,
  .hero-section.hero-section-has-media .hero-btn {
    width: auto;
    min-width: 132px;
    padding: 10px 14px;
    font-size: 10px;
  }

  .section-head {
    flex-direction: column;
    align-items: stretch;
  }

  .sort-select {
    width: 100%;
    min-width: 0;
  }

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

  .product-body {
    padding: 14px;
  }

  .product-name {
    font-size: 18px;
    min-height: 46px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sku-value {
    text-align: left;
  }

  .price-value {
    font-size: 22px;
  }

  .add-btn {
    padding: 12px;
    font-size: 10px;
  }

  .arrival-card {
    width: 190px;
  }

  .search-overlay-panel {
    width: calc(100% - 14px);
    margin-top: 18px;
    padding: 16px;
    border-radius: var(--radius-sm);
  }

  .overlay-result-card {
    grid-template-columns: 58px 1fr;
  }

  .overlay-result-price {
    grid-column: 2;
  }

  .all-products-hero-card {
    flex-direction: row;
    align-items: center;
    padding: 14px 16px;
    gap: 14px;
  }

  .all-products-hero-card .hero-pill {
    display: none;
  }

  .all-products-hero-card .section-subtitle {
    display: none;
  }

  .all-products-title {
    font-size: 22px;
    margin-bottom: 0;
  }

  .all-products-count-box {
    min-width: auto;
    padding: 10px 14px;
    flex-shrink: 0;
  }

  .all-products-count-box strong {
    font-size: 22px;
  }

  .pagination-wrap {
    gap: 8px;
  }

  .pagination-btn {
    flex: 1;
    min-width: 0;
  }

  .pagination-info {
    width: 100%;
    text-align: center;
  }

  .footer-inner {
    padding: 36px 0 42px;
  }

  .footer-links {
    width: 100%;
  }

  .footer-link-btn,
  .footer-link-anchor {
    width: 100%;
  }

  .product-clean-shell {
    padding-top: 14px;
  }

  .product-clean-breadcrumb {
    margin-bottom: 16px;
    font-size: 10px;
  }

  .product-clean-info {
    padding: 26px 20px 26px;
  }

  .product-clean-title {
    font-size: 38px;
    line-height: 0.97;
    margin-bottom: 16px;
  }

  .product-clean-price {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .product-clean-meta-row {
    gap: 14px;
    padding: 9px 0;
  }

  .product-clean-actions {
    flex-direction: column;
    gap: 10px;
  }

  .product-clean-btn-dark,
  .product-clean-btn-light {
    width: 100%;
    min-width: 0;
  }

  .product-clean-description h2 {
    font-size: 18px;
  }

  .product-clean-description p {
    font-size: 13px;
    line-height: 1.9;
  }
}
/* ============================================================
   Contact Page
============================================================ */
.contact-shell {
  padding-top: 24px;
  padding-bottom: 8px;
}

.contact-hero {
  max-width: 760px;
}

.contact-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 18px;
}

.contact-subtitle {
  max-width: 560px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  gap: 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-details-card {
  padding: 42px 42px 36px;
  border-right: 1px solid var(--line);
  background: var(--surface-soft);
}

.contact-action-card {
  padding: 42px 42px 36px;
  background: var(--surface);
}

.contact-section-label {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--text-faint);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.contact-detail-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-subtle);
}

.contact-detail-row:first-of-type {
  border-top: 1px solid var(--line-subtle);
}

.contact-detail-label {
  font-size: 9px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.contact-detail-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  word-break: break-word;
}

.contact-action-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--text);
}

.contact-action-text {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  margin: 0 0 28px;
  max-width: 420px;
}

.contact-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.contact-note-box {
  padding-top: 16px;
  border-top: 1px solid var(--line-subtle);
}

.contact-note-box h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--text);
}

.contact-note-box p {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  margin: 0;
}

@media (max-width: 1100px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-details-card {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .contact-title {
    font-size: 40px;
    line-height: 0.98;
  }

  .contact-details-card,
  .contact-action-card {
    padding: 26px 20px;
  }

  .contact-detail-value {
    font-size: 18px;
  }

  .contact-action-title {
    font-size: 28px;
  }
}

/* ============================================================
   THEME: Playful — Bright, fun, for Toy / Kids / Gift stores
   ============================================================ */
body.theme-playful {
  --bg:              #fef9f0;
  --bg-warm:         #fff4e6;
  --surface:         #ffffff;
  --surface-soft:    #fff8f0;
  --surface-muted:   #ffeed6;
  --surface-deep:    #ffe0b2;
  --surface-dark:    #ff6b35;

  --text:            #2d1b00;
  --text-soft:       #7a5c3c;
  --text-faint:      #b89872;
  --text-inverse:    #ffffff;

  --line:            #ffe0b2;
  --line-strong:     #ffd194;
  --line-subtle:     #ffeed6;

  --gold:            #ff6b35;
  --gold-light:      #ff8c5a;
  --gold-soft:       #ffdbc4;
  --gold-deep:       #e05a2b;
  --gold-pale:       #fff0e6;

  --success:         #2e7d32;
  --danger:          #d32f2f;
  --success-bg:      #e8f5e9;
  --danger-bg:       #ffebee;

  --shadow-xs:       0 1px 3px rgba(255, 107, 53, 0.06);
  --shadow-sm:       0 8px 28px rgba(255, 107, 53, 0.10);
  --shadow-md:       0 20px 50px rgba(255, 107, 53, 0.12);
  --shadow-lg:       0 32px 72px rgba(255, 107, 53, 0.15);

  --radius-xs:       8px;
  --radius-sm:       12px;
  --radius-md:       16px;
  --radius-lg:       20px;
}

body.theme-playful .hero-section {
  background: linear-gradient(135deg, #ff9a56 0%, #ff6b35 50%, #ff4500 100%);
}

body.theme-playful .hero-title {
  color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
}

body.theme-playful .hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

body.theme-playful .hero-pill {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

body.theme-playful .hero-overlay {
  background: linear-gradient(105deg, rgba(255, 69, 0, 0.15) 0%, transparent 60%);
}

body.theme-playful .hero-btn-primary {
  background: #ffffff;
  color: #ff6b35;
  border-color: #ffffff;
}

body.theme-playful .hero-btn-primary:hover {
  background: #fff4e6;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

body.theme-playful .hero-btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

body.theme-playful .top-strip {
  background: #e05a2b;
  color: #ffdbc4;
}

body.theme-playful .logo-mark {
  background: #ff6b35;
  color: #ffffff;
  border-radius: 10px;
}

body.theme-playful .section-title {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
}

body.theme-playful .product-name,
body.theme-playful .arrival-name {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}

body.theme-playful .price-value {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  color: #ff6b35;
}

body.theme-playful .arrival-price {
  color: #ff6b35;
}

body.theme-playful .add-btn {
  background: #ff6b35;
  border-radius: 10px;
}

body.theme-playful .add-btn:hover {
  background: #e05a2b;
}

body.theme-playful .basket-btn,
body.theme-playful .basket-drawer-btn {
  background: #ff6b35;
  border-radius: 10px;
}

body.theme-playful .basket-btn:hover,
body.theme-playful .basket-drawer-btn:hover {
  background: #e05a2b;
}

body.theme-playful .basket-badge {
  background: #2d1b00;
}

body.theme-playful .filter-chip.active {
  background: #ff6b35;
  border-color: #ff6b35;
}

body.theme-playful .desktop-search-box button {
  background: #ff6b35;
  color: #ffffff;
}

body.theme-playful .desktop-search-box button:hover {
  background: #e05a2b;
}

body.theme-playful .site-header {
  background: rgba(254, 249, 240, 0.96);
}

body.theme-playful .site-footer {
  background: #2d1b00;
}

/* ============================================================
   THEME: Modern — Minimal, monochrome, for Fashion / Garments
   ============================================================ */
body.theme-modern {
  --bg:              #f5f5f5;
  --bg-warm:         #eeeeee;
  --surface:         #ffffff;
  --surface-soft:    #fafafa;
  --surface-muted:   #f0f0f0;
  --surface-deep:    #e0e0e0;
  --surface-dark:    #111111;

  --text:            #111111;
  --text-soft:       #666666;
  --text-faint:      #999999;
  --text-inverse:    #ffffff;

  --line:            #e5e5e5;
  --line-strong:     #d0d0d0;
  --line-subtle:     #f0f0f0;

  --gold:            #111111;
  --gold-light:      #333333;
  --gold-soft:       #e0e0e0;
  --gold-deep:       #000000;
  --gold-pale:       #f5f5f5;

  --success:         #1b5e20;
  --danger:          #b71c1c;
  --success-bg:      #e8f5e9;
  --danger-bg:       #ffebee;

  --shadow-xs:       0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm:       0 8px 28px rgba(0, 0, 0, 0.06);
  --shadow-md:       0 20px 50px rgba(0, 0, 0, 0.08);
  --shadow-lg:       0 32px 72px rgba(0, 0, 0, 0.10);

  --radius-xs:       0;
  --radius-sm:       0;
  --radius-md:       0;
  --radius-lg:       2px;
}

body.theme-modern .hero-section {
  background: #111111;
  min-height: 560px;
}

body.theme-modern .hero-title {
  color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 72px);
}

body.theme-modern .hero-subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  letter-spacing: 0.08em;
}

body.theme-modern .hero-pill {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.2em;
}

body.theme-modern .hero-overlay {
  background: none;
}

body.theme-modern .hero-section::before {
  background: rgba(255, 255, 255, 0.08);
}

body.theme-modern .hero-section::after {
  background: rgba(255, 255, 255, 0.08);
}

body.theme-modern .hero-btn-primary {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
  letter-spacing: 0.18em;
}

body.theme-modern .hero-btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

body.theme-modern .hero-btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.18em;
}

body.theme-modern .hero-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

body.theme-modern .top-strip {
  background: #000000;
  color: #888888;
}

body.theme-modern .logo-mark {
  background: #111111;
  color: #ffffff;
  border-radius: 0;
}

body.theme-modern .logo-text {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  letter-spacing: 0.25em;
}

body.theme-modern .section-title {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.theme-modern .section-subtitle {
  letter-spacing: 0.15em;
}

body.theme-modern .product-name,
body.theme-modern .arrival-name {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

body.theme-modern .price-value {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}

body.theme-modern .arrival-price {
  color: #111111;
}

body.theme-modern .filter-chip {
  letter-spacing: 0.15em;
}

body.theme-modern .filter-chip.active {
  background: #111111;
  border-color: #111111;
}

body.theme-modern .add-btn {
  background: #111111;
  letter-spacing: 0.18em;
}

body.theme-modern .add-btn:hover {
  background: #333333;
}

body.theme-modern .product-media {
  aspect-ratio: 1 / 1;
}

body.theme-modern .site-header {
  background: rgba(245, 245, 245, 0.96);
}

body.theme-modern .desktop-search-box button {
  background: #111111;
  color: #ffffff;
}

body.theme-modern .desktop-search-box button:hover {
  background: #333333;
}

body.theme-modern .site-footer {
  background: #111111;
}

/* ============================================================
   THEME: Fresh — Natural green tones, for Grocery / General
   ============================================================ */
body.theme-fresh {
  --bg:              #f4f9f4;
  --bg-warm:         #e8f3e8;
  --surface:         #ffffff;
  --surface-soft:    #f7fbf7;
  --surface-muted:   #e4efe4;
  --surface-deep:    #c8dcc8;
  --surface-dark:    #1a3a2a;

  --text:            #1a2e1a;
  --text-soft:       #4a6b4a;
  --text-faint:      #85a585;
  --text-inverse:    #f0f9f0;

  --line:            #d4e6d4;
  --line-strong:     #b8d4b8;
  --line-subtle:     #e4efe4;

  --gold:            #2e8b57;
  --gold-light:      #4caf6e;
  --gold-soft:       #c8e6d0;
  --gold-deep:       #1b6b3a;
  --gold-pale:       #ecf6ef;

  --success:         #1b5e20;
  --danger:          #c62828;
  --success-bg:      #e8f5e9;
  --danger-bg:       #ffebee;

  --shadow-xs:       0 1px 3px rgba(26, 58, 42, 0.04);
  --shadow-sm:       0 8px 28px rgba(26, 58, 42, 0.07);
  --shadow-md:       0 20px 50px rgba(26, 58, 42, 0.09);
  --shadow-lg:       0 32px 72px rgba(26, 58, 42, 0.12);

  --radius-xs:       6px;
  --radius-sm:       10px;
  --radius-md:       14px;
  --radius-lg:       18px;
}

body.theme-fresh .hero-section {
  background: linear-gradient(150deg, #2e8b57 0%, #1a5c38 50%, #0d3d22 100%);
}

body.theme-fresh .hero-title {
  color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}

body.theme-fresh .hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

body.theme-fresh .hero-pill {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.85);
}

body.theme-fresh .hero-overlay {
  background: linear-gradient(105deg, rgba(13, 61, 34, 0.2) 0%, transparent 60%);
}

body.theme-fresh .hero-btn-primary {
  background: #ffffff;
  color: #1a5c38;
  border-color: #ffffff;
}

body.theme-fresh .hero-btn-primary:hover {
  background: #f0f9f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 139, 87, 0.3);
}

body.theme-fresh .hero-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

body.theme-fresh .top-strip {
  background: #0d3d22;
  color: #9ac4aa;
}

body.theme-fresh .logo-mark {
  background: #2e8b57;
  color: #ffffff;
  border-radius: 8px;
}

body.theme-fresh .section-title {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}

body.theme-fresh .product-name,
body.theme-fresh .arrival-name {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}

body.theme-fresh .price-value {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  color: #1b6b3a;
}

body.theme-fresh .arrival-price {
  color: #1b6b3a;
}

body.theme-fresh .add-btn {
  background: #2e8b57;
  border-radius: 8px;
}

body.theme-fresh .add-btn:hover {
  background: #1b6b3a;
}

body.theme-fresh .basket-btn,
body.theme-fresh .basket-drawer-btn {
  background: #1a3a2a;
  border-radius: 8px;
}

body.theme-fresh .basket-btn:hover,
body.theme-fresh .basket-drawer-btn:hover {
  background: #0d3d22;
}

body.theme-fresh .basket-badge {
  background: #2e8b57;
}

body.theme-fresh .filter-chip.active {
  background: #2e8b57;
  border-color: #2e8b57;
}

body.theme-fresh .desktop-search-box button {
  background: #1a3a2a;
  color: #c8e6d0;
}

body.theme-fresh .desktop-search-box button:hover {
  background: #0d3d22;
}

body.theme-fresh .site-header {
  background: rgba(244, 249, 244, 0.96);
}

body.theme-fresh .site-footer {
  background: #1a3a2a;
}

/* ============================================================
   Bizo Marketing Homepage
============================================================ */
.marketing-home {
  background:
    radial-gradient(circle at 8% 8%, rgba(192, 139, 94, 0.14), transparent 20%),
    radial-gradient(circle at 92% 10%, rgba(107, 90, 78, 0.12), transparent 18%),
    linear-gradient(180deg, #f5f3f0 0%, #f1ede8 52%, #ece6df 100%);
  color: #2c2520;
}

.marketing-shell {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.marketing-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(245, 243, 240, 0.84);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107, 90, 78, 0.10);
}

.marketing-header-inner {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.marketing-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.marketing-logo-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #6b5a4e 0%, #504136 100%);
  box-shadow: 0 14px 28px rgba(80, 65, 54, 0.20);
  overflow: hidden;
}

.marketing-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marketing-logo-text,
.marketing-footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.marketing-nav {
  display: inline-flex;
  align-items: center;
  gap: 28px;
}

.marketing-nav a,
.marketing-link-btn {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5c534c;
  transition: color 180ms ease;
}

.marketing-nav a:hover,
.marketing-link-btn:hover {
  color: #17130d;
}

.marketing-nav-link-muted {
  color: #827769 !important;
}

.marketing-header-actions,
.marketing-hero-actions,
.marketing-final-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.marketing-proof-row {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
}

.marketing-proof-card {
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(107, 90, 78, 0.10);
  box-shadow: 0 20px 42px rgba(44, 37, 32, 0.05);
}

.marketing-proof-card strong,
.marketing-console-item strong,
.marketing-mini-strip strong,
.marketing-flow-card h3 {
  display: block;
  color: #2c2520;
}

.marketing-proof-card strong {
  margin-bottom: 6px;
  font-size: 15px;
}

.marketing-proof-card span,
.marketing-console-item p,
.marketing-mini-strip small,
.marketing-flow-card p {
  color: #62584b;
  font-size: 14px;
  line-height: 1.7;
}

.marketing-primary-btn,
.marketing-secondary-btn {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.marketing-primary-btn {
  background: #6b5a4e;
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(107, 90, 78, 0.22);
}

.marketing-primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(107, 90, 78, 0.28);
}

.marketing-secondary-btn {
  border: 1px solid rgba(107, 90, 78, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: #2c2520;
}

.marketing-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.marketing-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 86px;
}

.marketing-hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(107, 90, 78, 0.08), transparent 40%),
    radial-gradient(circle at 78% 18%, rgba(192, 139, 94, 0.20), transparent 18%),
    radial-gradient(circle at 16% 34%, rgba(138, 119, 104, 0.12), transparent 24%);
  pointer-events: none;
}

.marketing-hero-grid,
.marketing-story-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.96fr);
  gap: 60px;
  align-items: center;
}

.marketing-eyebrow {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8a7768;
}

.marketing-hero-copy h1,
.marketing-section-head h2,
.marketing-story-copy h2,
.marketing-final-card h2 {
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.96;
  color: #2c2520;
}

.marketing-hero-copy h1 {
  font-size: clamp(52px, 6.8vw, 84px);
  max-width: 10ch;
}

.marketing-brand-lockup {
  margin-bottom: 18px;
}

.marketing-brand-lockup img {
  width: min(280px, 56vw);
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(44, 37, 32, 0.10));
}

.marketing-hero-copy p,
.marketing-section-head p,
.marketing-story-copy p,
.marketing-final-card p,
.marketing-band-title + p,
.marketing-feature-card p,
.marketing-security-card p,
.marketing-faq-item p,
.marketing-footer p {
  color: #5f574b;
  font-size: 17px;
  line-height: 1.8;
}

.marketing-hero-copy p {
  max-width: 58ch;
  margin-top: 22px;
}

.marketing-trust-inline {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.marketing-trust-inline span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(107, 90, 78, 0.10);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b5a4e;
}

.marketing-hero-panel {
  display: flex;
  justify-content: flex-end;
}

.marketing-device-stack {
  width: min(100%, 500px);
  display: grid;
  gap: 18px;
}

.marketing-device {
  border-radius: 32px;
  border: 1px solid rgba(107, 90, 78, 0.10);
  box-shadow: 0 32px 70px rgba(44, 37, 32, 0.10);
}

.marketing-device-primary {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7f4f0 100%);
}

.marketing-device-secondary,
.marketing-story-card,
.marketing-feature-card,
.marketing-security-card,
.marketing-faq-item,
.marketing-final-card,
.marketing-band-metrics > div {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(107, 90, 78, 0.10);
}

.marketing-device-secondary {
  padding: 22px 24px;
  margin-left: 52px;
  border-radius: 24px;
  background: linear-gradient(180deg, #6b5a4e 0%, #504136 100%);
  color: #ffffff;
  box-shadow: 0 24px 48px rgba(80, 65, 54, 0.24);
}

.marketing-device-label,
.marketing-story-label {
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8a7768;
}

.marketing-device-primary h2 {
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.marketing-device-topbar {
  height: 60px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1c1917;
}

.marketing-device-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.marketing-device-body {
  position: relative;
  padding: 28px 30px 30px;
}

.marketing-console-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.marketing-console-stat {
  padding: 16px 14px;
  border-radius: 22px;
  background: rgba(245, 243, 240, 0.94);
  border: 1px solid rgba(107, 90, 78, 0.10);
}

.marketing-console-stat small,
.marketing-mini-strip small,
.marketing-flow-step {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.marketing-console-stat small {
  color: #8a7768;
  margin-bottom: 8px;
}

.marketing-console-stat strong {
  display: block;
  font-size: 17px;
  line-height: 1.3;
  color: #2c2520;
}

.marketing-console-stat-accent {
  background: linear-gradient(135deg, #6b5a4e 0%, #504136 100%);
  box-shadow: 0 18px 36px rgba(80, 65, 54, 0.22);
}

.marketing-console-stat-accent small,
.marketing-console-stat-accent strong {
  color: rgba(255, 255, 255, 0.94);
}

.marketing-console-rail {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.marketing-console-item {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(107, 90, 78, 0.10);
}

.marketing-console-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 7px;
  background: linear-gradient(135deg, #c08b5e 0%, #6b5a4e 100%);
  box-shadow: 0 0 0 6px rgba(192, 139, 94, 0.12);
}

.marketing-device-primary ul,
.marketing-story-card ul {
  margin-top: 20px;
  display: grid;
  gap: 10px;
  list-style: none;
}

.marketing-device-primary li,
.marketing-story-card li {
  color: #5d5548;
  padding-left: 20px;
  position: relative;
}

.marketing-device-primary li::before,
.marketing-story-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c08b5e;
  position: absolute;
  left: 0;
  top: 10px;
}

.marketing-device-primary::before {
  content: none;
}

.marketing-device-primary::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -36px;
  top: 118px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(192, 139, 94, 0.14), rgba(107, 90, 78, 0.04));
  pointer-events: none;
}

.marketing-device-primary {
  position: relative;
}

.marketing-device-secondary .marketing-device-label,
.marketing-mini-strip small,
.marketing-mini-strip strong {
  color: rgba(255, 255, 255, 0.92);
}

.marketing-mini-strip {
  display: grid;
  gap: 14px;
}

.marketing-mini-strip > div {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.marketing-mini-strip > div:first-child {
  padding-top: 0;
  border-top: none;
}

.marketing-mini-strip strong {
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.4;
}

.marketing-trust-band {
  border-top: 1px solid rgba(107, 90, 78, 0.08);
  border-bottom: 1px solid rgba(107, 90, 78, 0.08);
  background: rgba(255, 255, 255, 0.46);
}

.marketing-trust-grid {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
}

.marketing-band-title {
  margin-bottom: 6px;
  font-size: 24px;
  color: #2c2520;
  font-weight: 600;
}

.marketing-band-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.marketing-band-metrics > div {
  padding: 18px;
  border-radius: 22px;
  box-shadow: 0 16px 32px rgba(44, 37, 32, 0.04);
}

.marketing-band-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: #2c2520;
  font-size: 15px;
}

.marketing-band-metrics span {
  color: #645a4a;
  font-size: 14px;
  line-height: 1.7;
}

.marketing-section {
  padding: 88px 0;
}

.marketing-section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(237, 234, 230, 0.88) 100%);
  border-top: 1px solid rgba(107, 90, 78, 0.08);
  border-bottom: 1px solid rgba(107, 90, 78, 0.08);
}

.marketing-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.marketing-section-head h2,
.marketing-story-copy h2,
.marketing-final-card h2 {
  font-size: clamp(38px, 5vw, 62px);
  margin-bottom: 16px;
}

.marketing-feature-grid,
.marketing-security-grid,
.marketing-faq-list {
  display: grid;
  gap: 18px;
}

.marketing-feature-grid,
.marketing-security-grid,
.marketing-download-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.marketing-download-card {
  min-height: 280px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(107, 90, 78, 0.10);
  box-shadow: 0 22px 52px rgba(44, 37, 32, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.marketing-download-card h3 {
  margin: 12px 0 10px;
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #2c2520;
}

.marketing-download-card p {
  color: #5f574b;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.marketing-download-card .marketing-primary-btn,
.marketing-download-card .marketing-secondary-btn {
  margin-top: auto;
}

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

.marketing-feature-card,
.marketing-security-card,
.marketing-faq-item {
  padding: 28px 24px;
  border-radius: 28px;
  box-shadow: 0 20px 42px rgba(44, 37, 32, 0.05);
}

.marketing-card-kicker {
  margin-bottom: 16px;
  color: #8a7768;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.marketing-feature-card h3,
.marketing-security-card h3,
.marketing-faq-item h3 {
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 500;
  color: #2c2520;
}

.marketing-story-card {
  padding: 30px 28px;
  border-radius: 30px;
  box-shadow: 0 24px 52px rgba(44, 37, 32, 0.08);
}

.marketing-flow-section {
  padding-top: 0;
}

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

.marketing-flow-card {
  position: relative;
  padding: 28px 24px 26px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 239, 232, 0.90) 100%);
  border: 1px solid rgba(107, 90, 78, 0.10);
  box-shadow: 0 24px 48px rgba(44, 37, 32, 0.06);
  overflow: hidden;
}

.marketing-flow-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -42px;
  bottom: -54px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(192, 139, 94, 0.12), rgba(107, 90, 78, 0.04));
}

.marketing-flow-step {
  margin-bottom: 20px;
  color: #8a7768;
}

.marketing-flow-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.marketing-flow-card p {
  position: relative;
  z-index: 1;
}

.marketing-final-cta {
  padding: 86px 0 96px;
}

.marketing-final-card {
  padding: 36px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  background: linear-gradient(135deg, #ffffff 0%, #f4f0ea 100%);
  box-shadow: 0 30px 72px rgba(44, 37, 32, 0.10);
}

.marketing-footer {
  padding: 0 0 46px;
}

.marketing-footer-grid {
  padding-top: 28px;
  border-top: 1px solid rgba(107, 90, 78, 0.10);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

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

.marketing-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.marketing-footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(80, 65, 54, 0.16);
}

.marketing-footer-links a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5c534c;
}

.marketing-footer-links a:hover {
  color: #18130d;
}

@media (max-width: 1100px) {
  .marketing-hero-grid,
  .marketing-story-grid,
  .marketing-trust-grid,
  .marketing-final-card {
    grid-template-columns: 1fr;
  }

  .marketing-feature-grid,
  .marketing-security-grid,
  .marketing-faq-list,
  .marketing-download-grid,
  .marketing-flow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .marketing-band-metrics {
    grid-template-columns: 1fr;
  }

  .marketing-final-card {
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .marketing-header {
    background: rgba(245, 243, 240, 0.94);
  }

  .marketing-header-inner {
    min-height: auto;
    padding: 14px 0 12px;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 14px;
  }

  .marketing-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .marketing-nav::-webkit-scrollbar {
    display: none;
  }

  .marketing-nav a {
    flex: 0 0 auto;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(107, 90, 78, 0.10);
    white-space: nowrap;
  }

  .marketing-header-actions {
    margin-left: auto;
    flex: 0 0 auto;
  }

  .marketing-feature-grid,
  .marketing-security-grid,
  .marketing-faq-list,
  .marketing-download-grid,
  .marketing-flow-grid,
  .marketing-proof-row {
    grid-template-columns: 1fr;
  }

  .marketing-footer-grid {
    flex-direction: column;
  }

  .marketing-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .marketing-shell,
  .marketing-header-inner {
    width: min(100%, calc(100% - 32px));
  }

  .marketing-header-inner {
    padding: 12px 0 10px;
    row-gap: 12px;
  }

  .marketing-logo {
    gap: 10px;
  }

  .marketing-logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .marketing-logo-text {
    font-size: 28px;
  }

  .marketing-header-actions {
    gap: 10px;
  }

  .marketing-header-actions .marketing-link-btn {
    display: none;
  }

  .marketing-header-actions .marketing-primary-btn {
    min-height: 42px;
    padding: 0 16px;
    width: auto;
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .marketing-nav {
    gap: 8px;
    padding-bottom: 2px;
  }

  .marketing-nav a,
  .marketing-nav .marketing-nav-link-muted {
    padding: 9px 12px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .marketing-hero {
    padding: 30px 0 56px;
  }

  .marketing-hero-copy h1 {
    font-size: 48px;
  }

  .marketing-brand-lockup img {
    width: min(220px, 62vw);
  }

  .marketing-device-primary,
  .marketing-device-secondary,
  .marketing-feature-card,
  .marketing-security-card,
  .marketing-faq-item,
  .marketing-story-card,
  .marketing-final-card,
  .marketing-flow-card {
    padding: 24px 20px;
  }

  .marketing-device-secondary {
    margin-left: 0;
  }

  .marketing-device-body {
    padding: 24px 20px;
  }

  .marketing-console-grid {
    grid-template-columns: 1fr;
  }

  .marketing-section {
    padding: 62px 0;
  }

  .marketing-hero-actions,
  .marketing-final-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .marketing-primary-btn,
  .marketing-secondary-btn {
    width: 100%;
  }
}
