:root {
  --paper: #fbf7ef;
  --cream: #f3eadc;
  --linen: #e8dac7;
  --stone: #d2c4b1;
  --ink: #251f18;
  --char: #17130f;
  --espresso: #2a2119;
  --muted: #766858;
  --muted-2: #a3927e;
  --gold: #bd9444;
  --gold-2: #d2ad62;
  --green: #123b2c;
  --green-2: #1d5a42;
  --clay: #a35c3d;
  --line: rgba(37, 31, 24, 0.14);
  --line-dark: rgba(251, 247, 239, 0.16);
  --shadow: 0 24px 60px rgba(45, 35, 25, 0.16);
  --shadow-soft: 0 18px 48px rgba(45, 35, 25, 0.1);
  --max: 1220px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Jost", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(37, 31, 24, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 31, 24, 0.025) 1px, transparent 1px);
  background-size: 38px 38px;
  mix-blend-mode: multiply;
}

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

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

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

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

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

h1,
h2,
.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
  text-wrap: balance;
}

h3,
h4 {
  line-height: 1.15;
  text-wrap: pretty;
}

p {
  max-width: 66ch;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  background: var(--green);
  color: var(--paper);
  padding: 10px 14px;
  transform: translateY(-140%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.announce {
  background: var(--char);
  color: var(--cream);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-page [data-site-header] {
  position: absolute;
  inset: 0 0 auto;
  z-index: 72;
}

.home-page .announce {
  background: rgba(13, 15, 12, 0.96);
  border-bottom: 1px solid rgba(251, 247, 239, 0.08);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  background: rgba(251, 247, 239, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.home-page .site-nav {
  position: relative;
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background: linear-gradient(90deg, rgba(13, 15, 12, 0.96), rgba(13, 15, 12, 0.86));
  border-bottom: 1px solid rgba(251, 247, 239, 0.08);
  color: var(--paper);
}

.home-page .nav-links a,
.home-page .nav-icon {
  color: var(--paper);
}

.home-page .nav-links a {
  color: rgba(251, 247, 239, 0.76);
}

.home-page .nav-links a:hover,
.home-page .nav-links a.active {
  color: var(--gold-2);
}

.home-page .nav-links a::after {
  background: var(--gold-2);
}

.home-page .nav-icon {
  background: rgba(251, 247, 239, 0.05);
  border-color: rgba(251, 247, 239, 0.18);
}

.home-page .nav-icon:hover {
  background: rgba(251, 247, 239, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 128px;
  height: 48px;
  object-fit: contain;
}

.logo-on-dark {
  display: none;
}

.home-page .logo-on-light {
  display: none;
}

.home-page .logo-on-dark {
  display: block;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 220ms var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.nav-icon,
.icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.72);
  color: var(--ink);
  border-radius: 8px;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.nav-icon:hover,
.icon-button:hover {
  border-color: var(--gold);
  background: var(--cream);
  transform: translateY(-1px);
}

.nav-icon:active,
.icon-button:active,
.btn:active {
  transform: translateY(1px) scale(0.98);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

[data-cart-count] {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 700;
}

.mobile-only {
  display: none;
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(88vw, 360px);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px;
  background: var(--paper);
  box-shadow: -30px 0 80px rgba(23, 19, 15, 0.26);
  transform: translateX(110%);
  transition: transform 300ms var(--ease);
}

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

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mobile-panel-head img {
  width: 126px;
  height: 52px;
  object-fit: contain;
}

.mobile-panel a {
  display: block;
  padding: 16px 6px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
}

.mobile-panel .mobile-quiet-link {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: 86px 24px;
}

.section-tight {
  padding: 54px 24px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(240px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2 {
  margin-top: 14px;
  font-size: 3.2rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.04rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: var(--char);
}

.btn-gold:hover {
  background: var(--gold-2);
}

.btn-dark {
  background: var(--green);
  color: var(--paper);
}

.btn-dark:hover {
  background: var(--green-2);
}

.btn-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}

.btn-light:hover {
  border-color: var(--gold);
  background: var(--cream);
}

.btn-line {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.btn-full {
  width: 100%;
}

.btn-small {
  min-height: 34px;
  padding: 8px 12px;
  font-size: 0.7rem;
}

.hero {
  min-height: 780px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--char);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 15, 12, 0.96), rgba(13, 15, 12, 0.78) 36%, rgba(13, 15, 12, 0.16) 68%, rgba(13, 15, 12, 0.06)),
    linear-gradient(0deg, rgba(13, 15, 12, 0.78), transparent 38%);
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 172px 24px 54px;
}

.hero-copy {
  max-width: 560px;
}

.hero h1 {
  max-width: 13.5ch;
  margin-top: 18px;
  font-size: 4.9rem;
}

.hero h1 span {
  display: block;
}

.hero p {
  margin-top: 22px;
  color: rgba(251, 247, 239, 0.78);
  font-size: 1.12rem;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 118px));
  gap: 18px;
  margin-top: 36px;
}

.hero-proof div {
  display: grid;
  justify-items: start;
  gap: 10px;
  color: rgba(251, 247, 239, 0.82);
}

.hero-proof strong {
  font-size: 0.68rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(210, 173, 98, 0.72);
  color: var(--gold-2);
  border-radius: 50%;
}

.proof-mark svg {
  width: 24px;
  height: 24px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  background: var(--char);
  color: var(--cream);
}

.trust-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 76px;
  padding: 16px;
  border-left: 1px solid var(--line-dark);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-strip div:first-child {
  border-left: 0;
}

.feature-band {
  background: var(--cream);
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 250px;
  gap: 18px;
}

.collection-tile {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--linen);
  color: var(--paper);
}

.collection-tile:first-child {
  grid-row: span 2;
}

.collection-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.collection-tile:hover img {
  transform: scale(1.05);
}

.collection-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 19, 15, 0.76), rgba(23, 19, 15, 0.02));
}

.collection-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.collection-copy h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.collection-copy p {
  color: rgba(251, 247, 239, 0.76);
  font-size: 0.9rem;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(251, 247, 239, 0.88);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 59, 44, 0.24);
  box-shadow: var(--shadow-soft);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1.08;
  background: var(--linen);
  overflow: hidden;
}

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

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

.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(23, 19, 15, 0.78);
  color: var(--paper);
  border: 1px solid rgba(251, 247, 239, 0.16);
  border-radius: 6px;
  padding: 5px 9px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.product-kicker {
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-info h3 {
  margin-top: 8px;
  font-size: 1.2rem;
}

.product-info p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
}

.product-info small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.product-meta strong,
.price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.shop-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.shop-top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: end;
  padding-top: 42px;
}

.shop-top h1,
.page-title h1 {
  margin-top: 16px;
  font-size: 4.4rem;
}

.shop-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.search-box {
  position: relative;
}

.search-box .icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

.search-box input,
.form-control input,
.form-control textarea,
.form-control select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 247, 239, 0.9);
  color: var(--ink);
  min-height: 48px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.search-box input {
  padding-left: 44px;
}

.form-control textarea {
  min-height: 110px;
  resize: vertical;
}

.search-box input:focus,
.form-control input:focus,
.form-control textarea:focus,
.form-control select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(18, 59, 44, 0.12);
  background: #fffdf8;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-filter-panel {
  margin: 22px 0 30px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 247, 239, 0.74);
  box-shadow: 0 14px 38px rgba(45, 35, 25, 0.07);
  transition: border-color 240ms var(--ease), box-shadow 240ms var(--ease), transform 240ms var(--ease);
}

.shop-filter-panel:hover {
  border-color: rgba(18, 59, 44, 0.24);
  box-shadow: 0 18px 46px rgba(45, 35, 25, 0.1);
}

.filter-block + .filter-grid {
  margin-top: 18px;
}

.filter-label,
.filter-field span,
.filter-footer span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.filter-label {
  margin-bottom: 10px;
}

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

.filter-field {
  display: grid;
  gap: 7px;
}

.filter-field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 12px;
  outline: none;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.filter-field select:hover {
  border-color: rgba(18, 59, 44, 0.28);
  background: #fffdf8;
}

.filter-field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(18, 59, 44, 0.12);
}

.filter-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(243, 234, 220, 0.7);
  padding: 8px 12px;
  color: var(--ink);
  font-weight: 700;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.filter-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 59, 44, 0.28);
  background: var(--paper);
}

.filter-toggle:active {
  transform: translateY(0) scale(0.98);
}

.filter-toggle input {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
}

.filter-clear {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--green);
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

.filter-clear:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 59, 44, 0.28);
  background: rgba(18, 59, 44, 0.08);
}

.filter-clear:active {
  transform: translateY(0) scale(0.98);
}

.chip {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--muted);
  padding: 9px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}

.chip.active,
.chip:hover {
  transform: translateY(-2px);
  background: var(--green);
  border-color: var(--green);
  color: var(--paper);
}

.chip:active {
  transform: translateY(0) scale(0.98);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 44px;
  align-items: start;
}

.detail-media {
  position: sticky;
  top: 94px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--linen);
  box-shadow: var(--shadow-soft);
}

.detail-media img {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
}

.detail-copy {
  padding-top: 20px;
}

.detail-copy h1 {
  margin-top: 14px;
  font-size: 4rem;
}

.detail-copy .price {
  margin-top: 20px;
  color: var(--green);
  font-size: 2rem;
}

.detail-copy p {
  margin-top: 18px;
  color: var(--muted);
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list span {
  color: var(--muted);
}

.qty-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 12px;
}

.qty-inline input {
  width: 74px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
}

.checkout-panel,
.summary-panel,
.track-card,
.admin-card,
.auth-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 247, 239, 0.92);
  box-shadow: var(--shadow-soft);
}

.checkout-panel {
  padding: 24px;
}

.checkout-panel + .checkout-panel {
  margin-top: 18px;
}

.checkout-panel h2,
.summary-panel h2,
.track-card h2,
.auth-panel h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
}

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

.form-control {
  display: grid;
  gap: 7px;
}

.form-control.full {
  grid-column: 1 / -1;
}

.form-control label {
  font-size: 0.84rem;
  font-weight: 700;
}

.form-control small,
.helper {
  color: var(--muted);
  font-size: 0.78rem;
}

.summary-panel {
  position: sticky;
  top: 94px;
  padding: 22px;
}

.summary-lines {
  display: grid;
  gap: 14px;
}

.summary-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.summary-item img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
}

.summary-item h3 {
  font-size: 0.96rem;
}

.summary-item p {
  color: var(--muted);
  font-size: 0.8rem;
}

.totals {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
}

.totals strong {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.totals span:nth-last-child(2),
.totals strong:last-child {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.08rem;
}

.alert {
  display: none;
  margin-top: 16px;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1px solid rgba(163, 92, 61, 0.3);
  background: rgba(163, 92, 61, 0.08);
  color: var(--clay);
}

.alert.show {
  display: block;
}

.alert.success {
  border-color: rgba(18, 59, 44, 0.24);
  background: rgba(18, 59, 44, 0.08);
  color: var(--green);
}

.success-box {
  border: 1px solid rgba(18, 59, 44, 0.2);
  border-radius: 8px;
  background: rgba(18, 59, 44, 0.08);
  padding: 18px;
  color: var(--green);
}

.track-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
}

.track-card {
  padding: 24px;
}

.timeline {
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  position: relative;
  padding-bottom: 20px;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 34px;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.timeline-step:last-child::before {
  display: none;
}

.timeline-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
}

.timeline-step.done .timeline-dot {
  background: var(--green);
  border-color: var(--green);
  box-shadow: inset 0 0 0 8px var(--green);
}

.timeline-step.current .timeline-dot {
  border-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(189, 148, 68, 0.16);
}

.timeline-step h3 {
  font-size: 1rem;
}

.timeline-step p {
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-page {
  background:
    radial-gradient(circle at 76% 14%, rgba(189, 148, 68, 0.1), transparent 32%),
    #f7f4ef;
}

.admin-shell {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  overflow: hidden;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100dvh;
  background:
    linear-gradient(180deg, rgba(23, 19, 15, 0.96), rgba(23, 19, 15, 1)),
    var(--char);
  color: var(--cream);
  padding: 24px;
  border-right: 1px solid rgba(251, 247, 239, 0.08);
}

.admin-logo {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.admin-logo img {
  width: 142px;
  height: 58px;
  object-fit: contain;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav button,
.admin-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: rgba(251, 247, 239, 0.72);
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}

.admin-nav button.active,
.admin-nav button:hover,
.admin-logout:hover {
  background: rgba(251, 247, 239, 0.08);
  color: var(--paper);
  transform: translateX(3px);
}

.admin-nav button.active {
  border-color: rgba(210, 173, 98, 0.28);
  background: rgba(251, 247, 239, 0.11);
}

.admin-main {
  height: 100dvh;
  overflow: auto;
  padding: 0 28px 32px;
  min-width: 0;
  scroll-behavior: smooth;
}

.admin-top {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin: 0 -28px 24px;
  padding: 26px 28px 20px;
  background: rgba(247, 244, 239, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(37, 31, 24, 0.08);
}

.admin-top h1 {
  font-size: 2.6rem;
}

.admin-top-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-view {
  display: none;
}

.admin-view.active {
  display: block;
  animation: adminViewIn 320ms var(--ease) both;
}

@keyframes adminViewIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.kpi {
  padding: 18px;
  border-top: 3px solid var(--green);
  min-height: 124px;
}

.kpi span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kpi strong {
  display: block;
  margin-top: 8px;
  font-size: 1.8rem;
  font-variant-numeric: tabular-nums;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 16px;
  margin-top: 16px;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.75fr);
  gap: 16px;
  margin-top: 16px;
  align-items: start;
}

.admin-panel-span {
  grid-row: span 2;
}

.admin-card {
  padding: 18px;
  min-width: 0;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
  will-change: transform;
}

.admin-card:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 59, 44, 0.22);
  box-shadow: 0 18px 42px rgba(45, 35, 25, 0.12);
  background: rgba(251, 247, 239, 0.98);
}

.admin-card h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.admin-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.admin-card-head h2 {
  margin-bottom: 4px;
}

.admin-card-head .btn-small {
  min-width: 112px;
  white-space: nowrap;
}

.product-admin-grid {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  scroll-margin-top: 20px;
}

.sticky-admin-panel {
  position: sticky;
  top: 112px;
}

.product-form {
  display: grid;
  gap: 16px;
}

.product-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-admin-list {
  display: grid;
  gap: 12px;
}

.product-admin-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(243, 234, 220, 0.42);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.product-admin-row:hover {
  transform: translateX(4px);
  border-color: rgba(18, 59, 44, 0.22);
  background: rgba(251, 247, 239, 0.94);
  box-shadow: 0 12px 28px rgba(45, 35, 25, 0.08);
}

.product-admin-row.is-hidden {
  opacity: 0.68;
  background: rgba(210, 196, 177, 0.2);
}

.product-admin-row img {
  width: 74px;
  height: 82px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--linen);
}

.product-admin-copy h3 {
  font-size: 1.06rem;
}

.product-admin-copy p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.product-admin-copy small {
  display: block;
  margin-top: 4px;
  color: var(--green);
}

.product-admin-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.product-admin-meta strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-variant-numeric: tabular-nums;
}

.danger-button {
  color: var(--clay);
  border-color: rgba(163, 92, 61, 0.24);
}

.order-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.order-table tbody tr {
  transition: background 160ms var(--ease), transform 160ms var(--ease);
}

.order-table tbody tr:hover {
  background: rgba(243, 234, 220, 0.54);
}

.order-table th,
.order-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.order-table th {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-table strong,
.mono {
  font-variant-numeric: tabular-nums;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 8px;
  padding: 5px 9px;
  background: rgba(18, 59, 44, 0.1);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: capitalize;
}

.status-pill.warn {
  background: rgba(189, 148, 68, 0.16);
  color: #7a5720;
}

.order-detail {
  display: grid;
  gap: 14px;
}

.order-detail-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.order-detail-row span {
  color: var(--muted);
}

.personalisation-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(18, 59, 44, 0.16);
  border-radius: 8px;
  background: rgba(243, 234, 220, 0.38);
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}

.personalisation-panel:hover {
  border-color: rgba(18, 59, 44, 0.28);
  background: rgba(251, 247, 239, 0.96);
}

.personalisation-panel.is-empty {
  background: transparent;
  border-style: dashed;
}

.personalisation-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.personalisation-head span,
.personalisation-item span,
.upload-preview-button small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.personalisation-head strong {
  color: var(--green);
  font-size: 0.78rem;
}

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

.personalisation-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.personalisation-item p {
  max-width: none;
  color: var(--ink);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.upload-preview-button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 11px 12px;
  text-align: left;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.upload-preview-button:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 59, 44, 0.28);
  background: #fffdf8;
  box-shadow: 0 12px 28px rgba(45, 35, 25, 0.08);
}

.upload-preview-button:active {
  transform: translateY(0) scale(0.98);
}

.upload-preview-button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.upload-preview-button span {
  display: grid;
  gap: 2px;
}

.upload-preview-button .icon {
  color: var(--green);
}

.upload-status {
  margin-top: -4px;
}

.bar-list {
  display: grid;
  gap: 12px;
}

.bar-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 10px;
}

.bar-track {
  height: 9px;
  border-radius: 999px;
  background: var(--linen);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

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

.admin-list-row {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(243, 234, 220, 0.38);
  color: var(--ink);
  text-align: left;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.admin-list-row:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 59, 44, 0.22);
  background: rgba(251, 247, 239, 0.98);
  box-shadow: 0 12px 28px rgba(45, 35, 25, 0.08);
}

.admin-list-row small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
}

.mini-metrics {
  display: grid;
  gap: 10px;
}

.mini-metrics div {
  display: grid;
  gap: 3px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(243, 234, 220, 0.38);
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

.mini-metrics div:hover {
  transform: translateX(3px);
  background: rgba(251, 247, 239, 0.96);
  border-color: rgba(18, 59, 44, 0.18);
}

.mini-metrics span,
.admin-count {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.compact-kpis {
  margin-bottom: 16px;
}

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

.customer-table a {
  color: var(--green);
  font-weight: 600;
}

.page-bar {
  grid-template-columns: minmax(120px, 190px) minmax(0, 1fr) auto;
}

.auth-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(23, 19, 15, 0.62), rgba(23, 19, 15, 0.72)),
    url("../../Images/Hero.png") center / cover;
}

.auth-panel {
  width: min(100%, 440px);
  padding: 28px;
}

.auth-panel img {
  width: 150px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 18px;
}

.cart-scrim {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(23, 19, 15, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease);
}

.cart-scrim.show {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 110;
  width: min(100%, 430px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--paper);
  color: var(--ink);
  box-shadow: -28px 0 70px rgba(23, 19, 15, 0.28);
  transform: translateX(110%);
  transition: transform 300ms var(--ease);
}

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

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

.cart-head h2 {
  margin-top: 3px;
  font-size: 1.8rem;
}

.cart-body {
  overflow: auto;
  padding: 16px 22px;
}

.cart-line {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 74px;
  height: 84px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-line h4 {
  font-size: 0.98rem;
}

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

.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.qty button {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
}

.qty span {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
}

.cart-footer {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
}

.empty-state {
  min-height: 280px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
  color: var(--muted);
}

.empty-state h3 {
  color: var(--ink);
  font-size: 1.35rem;
}

.empty-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--cream);
  color: var(--green);
}

.footer {
  background: var(--char);
  color: rgba(251, 247, 239, 0.7);
  padding: 54px 24px 22px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.7fr);
  gap: 34px;
}

.footer-logo {
  width: 154px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer h3 {
  color: var(--paper);
  margin-bottom: 12px;
}

.footer a {
  display: block;
  padding: 4px 0;
}

.footer a:hover {
  color: var(--gold-2);
}

.footer-login {
  margin-top: 10px;
  color: rgba(251, 247, 239, 0.42);
  font-size: 0.78rem;
}

.footer-base {
  max-width: var(--max);
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.82rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 130;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  background: var(--green);
  color: var(--paper);
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 82;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1d5a42;
  color: var(--paper);
  border: 1px solid rgba(251, 247, 239, 0.22);
  box-shadow: 0 18px 36px rgba(18, 59, 44, 0.28);
  transition: transform 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.whatsapp-fab:hover {
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(18, 59, 44, 0.34);
}

.whatsapp-fab:active {
  transform: translateY(1px) scale(0.98);
}

.whatsapp-fab .icon {
  width: 28px;
  height: 28px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.contact-method {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 247, 239, 0.92);
}

.contact-method .empty-icon {
  width: 52px;
  height: 52px;
}

.contact-method h2 {
  font-size: 1.4rem;
}

.contact-method p {
  margin: 4px 0 12px;
  color: var(--muted);
}

.contact-phone-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 180ms var(--ease), color 180ms var(--ease);
}

.contact-phone-link:hover {
  transform: translateY(-1px);
  color: var(--green-2);
}

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

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

.split-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.split-story .story-copy {
  display: grid;
  align-content: center;
  padding: 60px;
  background: var(--green);
  color: var(--paper);
}

.split-story .story-copy p {
  margin-top: 18px;
  color: rgba(251, 247, 239, 0.72);
}

.split-story .story-media {
  min-height: 420px;
}

.split-story .story-media img,
.split-story .story-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.how-step {
  padding: 22px;
  border-top: 1px solid var(--line);
}

.how-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--green);
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}

.how-step h3 {
  font-size: 1.25rem;
}

.how-step p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.review-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.review {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.review.featured {
  background: var(--cream);
}

.review blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.25;
}

.review cite {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-style: normal;
  font-weight: 700;
}

.faq-list {
  max-width: 860px;
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  color: var(--gold);
  font-size: 1.3rem;
}

details p {
  padding-bottom: 22px;
  color: var(--muted);
}

.cta-band {
  background: var(--green);
  color: var(--paper);
  padding: 72px 24px;
}

.cta-band .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta-band h2 {
  font-size: 3rem;
}

.cta-band p {
  margin-top: 12px;
  color: rgba(251, 247, 239, 0.74);
}

.legal-copy {
  max-width: 820px;
  margin: 0 auto;
}

.legal-copy h1 {
  font-size: 3.6rem;
  margin-bottom: 20px;
}

.legal-copy h2 {
  margin-top: 34px;
  font-size: 2rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.legal-copy ul {
  padding-left: 20px;
}

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

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

  .admin-grid,
  .admin-dashboard-grid,
  .product-admin-grid,
  .checkout-grid,
  .track-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .summary-panel {
    position: static;
  }
}

@media (max-width: 920px) {
  .site-nav {
    grid-template-columns: auto 1fr auto;
    padding: 12px 16px;
  }

  .nav-links {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .hero {
    min-height: 720px;
  }

  .section-head,
  .shop-top,
  .product-detail,
  .split-story,
  .review-grid,
  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 158px;
  }

  .hero h1,
  .shop-top h1,
  .page-title h1,
  .detail-copy h1 {
    font-size: 3.4rem;
  }

  .section-head h2,
  .cta-band h2 {
    font-size: 2.5rem;
  }

  .collection-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

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

  .collection-tile:first-child {
    grid-row: span 1;
    grid-column: span 2;
  }

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

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

  .detail-media {
    position: static;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    padding: 18px;
  }

  .admin-nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .admin-nav button {
    min-width: max-content;
  }

  .admin-main {
    height: auto;
    overflow: visible;
    padding: 0 18px 18px;
  }

  .admin-top {
    position: static;
    margin: 0 -18px 18px;
    padding: 18px;
  }

  .sticky-admin-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  .announce {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .brand img {
    width: 94px;
    height: 40px;
  }

  .hero {
    min-height: 730px;
  }

  .hero img {
    object-position: 72% center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(13, 15, 12, 0.98), rgba(13, 15, 12, 0.78) 52%, rgba(13, 15, 12, 0.24)),
      linear-gradient(0deg, rgba(13, 15, 12, 0.76), transparent 44%);
  }

  .hero-content {
    padding: 142px 18px 34px;
  }

  .hero h1,
  .shop-top h1,
  .page-title h1,
  .detail-copy h1,
  .legal-copy h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1rem;
    max-width: 31ch;
  }

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

  .trust-strip,
  .collection-grid,
  .product-grid,
  .form-grid,
  .how-grid,
  .footer-grid,
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .hero-proof {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .proof-mark {
    width: 42px;
    height: 42px;
  }

  .hero-proof strong {
    font-size: 0.62rem;
  }

  .collection-tile:first-child {
    grid-column: span 1;
  }

  .section {
    padding: 58px 16px;
  }

  .section-tight {
    padding: 42px 16px;
  }

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

  .filter-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .shop-filter-panel {
    padding: 14px;
  }

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

  .filter-footer {
    align-items: stretch;
  }

  .filter-toggle,
  .filter-clear {
    justify-content: center;
    width: 100%;
  }

  .chip {
    white-space: nowrap;
  }

  .detail-list li,
  .order-detail-row,
  .personalisation-item,
  .product-admin-row {
    grid-template-columns: 1fr;
  }

  .personalisation-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-panel,
  .summary-panel,
  .track-card,
  .auth-panel,
  .admin-card {
    padding: 18px;
  }

  .admin-top {
    display: grid;
    overflow: hidden;
  }

  .admin-top h1 {
    max-width: 100%;
    font-size: 2.35rem;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .admin-nav {
    flex-wrap: wrap;
    overflow: visible;
  }

  .admin-nav button {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }

  .admin-top-actions,
  .admin-top-actions .btn {
    width: 100%;
  }

  .admin-list-row,
  .bar-row,
  .page-bar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .order-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .product-admin-meta {
    justify-items: start;
  }

  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .split-story .story-copy {
    padding: 40px 20px;
  }
}
