:root {
  --olive: #ad9257;
  --olive-dark: #8a7342;
  --cream: #f8f7f1;
  --sand: #ded9cf;
  --paper: #fffef8;
  --ink: #171511;
  --muted: #625d55;
  --line: #d6d0c4;
  --shadow: 0 16px 34px rgba(45, 38, 26, 0.14);
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.4;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

button,
.button {
  min-height: 34px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  background: var(--olive);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

button:hover,
.button:hover { background: var(--olive-dark); }
button:disabled { cursor: not-allowed; opacity: 0.5; }
.button-light { background: #fff; color: var(--ink); }
.button-primary { background: var(--olive); color: #fff; }

body[data-products],
body[data-products] * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cpath d='M14 1.8l3.1 7.3 7.9.7-6 5.2 1.8 7.8-6.8-4.1-6.8 4.1L9 15 3 9.8l7.9-.7L14 1.8z' fill='%23fffef8' stroke='%23ad9257' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E") 14 14, auto;
}

.cursor-particle {
  position: fixed;
  z-index: 9999;
  width: var(--particle-size, 7px);
  height: var(--particle-size, 7px);
  left: var(--particle-x, 0);
  top: var(--particle-y, 0);
  pointer-events: none;
  background: var(--particle-color, var(--olive));
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 92%, 50% 70%, 21% 92%, 32% 57%, 2% 35%, 39% 35%);
  transform: translate(-50%, -50%) rotate(var(--particle-rotation, 0deg)) scale(1);
  animation: cursorParticle 760ms ease-out forwards;
}

@keyframes cursorParticle {
  to {
    opacity: 0;
    transform: translate(calc(-50% + var(--particle-dx, 0px)), calc(-50% + var(--particle-dy, 0px))) rotate(calc(var(--particle-rotation, 0deg) + 120deg)) scale(0.2);
  }
}

@media (prefers-reduced-motion: reduce), (pointer: coarse) {
  body[data-products],
  body[data-products] * {
    cursor: auto;
  }

  .cursor-particle {
    display: none;
  }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--paper);
  border-bottom: 1px solid rgba(23, 21, 17, 0.16);
  box-shadow: 0 8px 18px rgba(23, 21, 17, 0.08);
}

.promo-bar {
  display: grid;
  place-items: center;
  min-height: 24px;
  padding: 0.25rem 1rem;
  background: var(--olive);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.header-main {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem clamp(1rem, 5vw, 9rem);
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.brand {
  display: grid;
  justify-items: center;
  gap: 0.15rem;
  line-height: 1;
  color: var(--olive);
}

.brand-logo {
  display: block;
  width: clamp(150px, 16vw, 230px);
  height: auto;
  max-height: 76px;
  object-fit: contain;
}

.brand > span:last-child,
.brand > span:first-child {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  font-weight: 800;
}

.brand small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
}

.admin-brand {
  justify-items: start;
}

.admin-brand .brand-logo {
  width: min(100%, 180px);
  max-height: 64px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.25rem;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.35rem);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-right { justify-content: end; }
.main-nav a { white-space: nowrap; }
.icon-link { color: var(--muted); }

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.nav-dropdown summary::-webkit-details-marker { display: none; }

.nav-dropdown summary::after {
  content: "▾";
  margin-left: 0.35rem;
  color: var(--olive);
  font-size: 0.7rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 230px;
  padding: 0.45rem;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown[open] .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  padding: 0.7rem 0.75rem;
  color: var(--ink);
}

.dropdown-menu a:hover {
  background: var(--sand);
}

.nav-account,
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-account svg,
.nav-cart svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-cart [data-cart-count] {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  margin-left: 0.15rem;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  font-size: 0.65rem;
}

.admin-link { color: var(--olive); }

.hero {
  position: relative;
  min-height: 345px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #171511;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 21, 17, 0.72), rgba(23, 21, 17, 0.18), rgba(23, 21, 17, 0.62));
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  padding: 4rem 1rem;
  color: #fff;
  text-align: center;
}

h1, h2, h3 { margin: 0; line-height: 1; }
h1, h2, h3, .eyebrow { text-transform: uppercase; }

h1 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--olive);
  font-size: clamp(2.6rem, 7vw, 5rem);
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 760px;
  font-family: "Quicksand", "DM Sans", Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(1.65rem, 3.8vw, 2.85rem);
  line-height: 1.25;
  color: rgba(255, 254, 248, 0.9);
  text-transform: none;
}

h2 {
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(0.9rem, 1.5vw, 1.08rem);
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.hero-actions { display: flex; gap: 0.75rem; margin-top: 30px; }

.hero-actions .button-light {
  min-height: 44px;
  padding: 0.78rem 1.25rem;
  border: 1px solid rgba(255, 254, 248, 0.72);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(23, 21, 17, 0.24);
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hero-actions .button-light::after {
  content: "→";
  margin-left: 0.55rem;
  color: var(--olive);
  transition: color 160ms ease, transform 160ms ease;
}

.hero-actions .button-light:hover {
  background: var(--olive);
  color: #fff;
  box-shadow: 0 18px 36px rgba(23, 21, 17, 0.3);
  transform: translateY(-1px);
}

.hero-actions .button-light:hover::after {
  color: #fff;
  transform: translateX(2px);
}

.section-pad { padding: clamp(2.6rem, 5vw, 4.4rem) clamp(1rem, 8vw, 10rem); }

.product-universe-section h2,
.product-section h2 { margin-bottom: 1.25rem; }

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

.collection-section {
  background: var(--cream);
}

.section-heading-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1240px;
  margin: 0 auto 1.25rem;
}

.section-heading-line h2 {
  margin-bottom: 0;
}

.carousel-controls {
  display: flex;
  gap: 0.4rem;
}

.carousel-controls button {
  width: 38px;
  min-height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.carousel-controls button:hover {
  background: var(--olive);
  color: #fff;
}

.product-carousel {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.25rem);
  max-width: 1240px;
  margin: 0 auto;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 0.6rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.product-carousel::-webkit-scrollbar {
  height: 8px;
}

.product-carousel::-webkit-scrollbar-track {
  background: var(--sand);
}

.product-carousel::-webkit-scrollbar-thumb {
  background: var(--olive);
}

.product-universe-card {
  flex: 0 0 clamp(220px, 27vw, 320px);
  scroll-snap-align: start;
}

.product-universe-card a {
  display: grid;
  gap: 0.7rem;
}

.product-universe-card img {
  width: 100%;
  aspect-ratio: 0.95 / 1;
  object-fit: cover;
  background: #ece8dd;
}

.product-universe-card h3 {
  text-align: center;
}

.collection-card a {
  height: 100%;
}

.collection-card {
  flex-basis: clamp(260px, 36vw, 430px);
}

.collection-card img {
  aspect-ratio: 1.15 / 1;
}

.collection-card p {
  max-width: 28ch;
  margin: -0.2rem auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
  text-align: center;
}

.atelier-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 0;
  max-height: 280px;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 8vw, 10rem);
  background: var(--cream);
}

.atelier-section img {
  width: 100%;
  height: min(26vw, 240px);
  min-height: 180px;
  object-fit: cover;
}

.atelier-section > div {
  max-width: 430px;
  justify-self: center;
  text-align: center;
}

.atelier-section p {
  margin: 0.8rem 0 1rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.text-link {
  color: var(--olive-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-section {
  background: var(--paper);
  text-align: center;
  border-top: 1px solid rgba(23, 21, 17, 0.1);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.4vw, 1rem);
  max-width: 1240px;
  margin: 0 auto;
}

.product-card { min-width: 0; }

.product-image-link {
  position: relative;
  display: block;
  aspect-ratio: 0.82 / 1;
  overflow: hidden;
  background: #ece8dd;
  box-shadow: 0 1px 0 rgba(23, 21, 17, 0.06);
}

.product-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image-link span {
  position: absolute;
  top: 0.35rem;
  left: 0.35rem;
  max-width: calc(100% - 0.7rem);
  padding: 0.22rem 0.36rem;
  background: var(--olive);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card-body {
  display: grid;
  gap: 0.28rem;
  justify-items: center;
  padding: 0.55rem 0 0;
}

.product-card-body h3 { font-size: 0.75rem; }
.product-card-body strong { font-size: 0.72rem; }

.product-card-body button {
  min-height: 25px;
  padding: 0.32rem 0.52rem;
  font-size: 0.58rem;
  line-height: 1;
}

.journal-instagram {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  background: var(--paper);
}

.journal-instagram h2 { margin-bottom: 1rem; }

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

.journal-grid article { display: grid; gap: 0.45rem; }

.journal-grid img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.journal-grid h3 { font-size: 0.82rem; line-height: 1.1; }

.journal-grid p,
.journal-grid span {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.journal-grid a {
  display: grid;
  gap: 0.45rem;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.45fr);
  gap: clamp(1.6rem, 5vw, 5rem);
  align-items: start;
  background: var(--cream);
  border-top: 1px solid rgba(23, 21, 17, 0.1);
}

.faq-intro {
  max-width: 430px;
}

.faq-intro p:not(.eyebrow) {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.faq-list details {
  border: 1px solid var(--line);
  background: var(--paper);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 54px;
  padding: 0.9rem 1rem;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--olive);
  font-size: 1.15rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-list p {
  max-width: 72ch;
  margin: 0;
  padding: 0.95rem 1rem 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.blog-page {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  background: var(--cream);
}

.blog-card {
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
}

.blog-card a {
  display: grid;
  height: 100%;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.blog-card div {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
}

.blog-card span,
.blog-article-hero span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.blog-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.08;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.blog-article {
  background: var(--cream);
}

.blog-article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 8vw, 10rem);
  background: var(--sand);
}

.blog-article-hero img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.blog-article-hero h1 {
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.02;
}

.blog-article-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
}

.blog-article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 1rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
}

.blog-article-content h2,
.blog-article-content h3 {
  margin: 1.8rem 0 0.7rem;
  line-height: 1.1;
}

.blog-article-content p,
.blog-article-content ul,
.blog-article-content ol,
.blog-article-content blockquote {
  margin: 0 0 1rem;
}

.blog-article-content blockquote {
  padding-left: 1rem;
  border-left: 3px solid var(--olive);
  color: var(--muted);
}

.blog-article-back {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

.blog-article-nav,
.blog-pagination {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 0.8rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem 1.4rem;
}

.blog-pagination {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.blog-nav-link,
.blog-nav-home,
.blog-page-count {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}

.blog-nav-link {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
}

.blog-nav-link span {
  color: var(--olive-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-nav-link strong {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.18;
}

.blog-nav-link-next {
  text-align: right;
}

.blog-nav-link:not(.is-disabled):hover,
.blog-nav-home:hover {
  background: var(--sand);
}

.blog-nav-link.is-disabled {
  opacity: 0.48;
}

.blog-nav-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.blog-page-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.blog-image-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 960px;
  margin: -1rem auto 3rem;
  padding: 0 1rem;
}

.blog-image-gallery img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.instagram-card {
  max-width: 430px;
  background: #fff;
  box-shadow: var(--shadow);
}

.instagram-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
}

.brand-dot {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
  padding: 0.25rem;
}

.instagram-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.page-hero {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 8vw, 10rem);
  background: var(--sand);
  text-align: center;
}

.page-hero h1,
.compact-hero h1 {
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
}

.page-hero p {
  max-width: 680px;
  margin: 0.9rem auto 0;
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--olive-dark);
  font-size: 0.75rem;
  font-weight: 900;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--cream);
}

.filters,
.cart-list,
.cart-summary,
.checkout-form,
.empty-state,
.product-detail,
.admin-panel {
  border: 1px solid var(--line);
  background: var(--paper);
}

.filters {
  position: sticky;
  top: 112px;
  padding: 1rem;
}

.filters form,
.checkout-form { display: grid; gap: 0.85rem; }

label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0.65rem 0.7rem;
}

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

.product-page {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  background: var(--cream);
}

.product-gallery {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.main-product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--sand);
}

.product-thumb-grid,
.product-extra-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 88px));
  gap: 0.55rem;
}

.product-extra-thumbs {
  padding-top: 0.2rem;
}

.product-thumb {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid transparent;
  background: var(--sand);
  overflow: hidden;
}

.product-thumb.is-active {
  border-color: var(--olive);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail {
  position: sticky;
  top: 112px;
  display: grid;
  align-content: start;
  gap: 1.1rem;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: var(--paper);
}

.product-detail h1,
.checkout h1,
.contact-page h1,
.about-copy h1 {
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
}

.product-detail h1 {
  line-height: 1.02;
}

.price {
  margin: 0;
  color: var(--olive-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

.product-description {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

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

.product-service-row > div,
.product-trust-strip > div {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  background: #fff;
}

.product-service-row strong,
.product-trust-strip strong {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-service-row span,
.product-trust-strip span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.product-accordions {
  display: grid;
  border-top: 1px solid var(--line);
}

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

.product-accordions summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  list-style: none;
  text-transform: uppercase;
}

.product-accordions summary::-webkit-details-marker {
  display: none;
}

.product-accordions summary::after {
  content: "+";
  color: var(--olive);
}

.product-accordions details[open] summary::after {
  content: "−";
}

.product-accordions p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.product-recommendations {
  background: var(--paper);
  border-top: 1px solid rgba(23, 21, 17, 0.1);
}

.product-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  background: var(--cream);
  border-top: 1px solid rgba(23, 21, 17, 0.1);
}

.cart-section,
.checkout,
.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 2rem;
  align-items: start;
  background: var(--cream);
}

.sales-points-page {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  background: var(--cream);
}

.sales-points-map,
.sales-point-preview {
  min-height: 560px;
  border: 1px solid var(--line);
  background: var(--sand);
  box-shadow: var(--shadow);
}

.sales-points-list {
  display: grid;
  gap: 0.8rem;
}

.sales-point-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.sales-point-card h2,
.sales-point-card p { margin: 0; }
.sales-point-card p { color: var(--muted); }
.sales-point-card .button { justify-self: start; margin-top: 0.2rem; }

.cart-list {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.cart-item:last-child { padding-bottom: 0; border-bottom: 0; }
.cart-item img { width: 86px; height: 86px; object-fit: cover; }
.cart-item p { margin: 0.3rem 0 0; color: var(--muted); }

.cart-item > button,
.quantity-controls button {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.quantity-controls {
  display: grid;
  grid-template-columns: 34px 30px 34px;
  align-items: center;
  text-align: center;
  font-weight: 900;
}

.cart-item > button { grid-column: 2; justify-self: start; }
.cart-item .quantity-controls { grid-column: 2; }
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

body.is-cart-drawer-open {
  overflow: hidden;
}

.cart-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 21, 17, 0.42);
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: clamp(360px, 25vw, 480px);
  max-width: 100%;
  height: 100%;
  border-left: 1px solid var(--line);
  background: var(--paper);
  box-shadow: -18px 0 34px rgba(23, 21, 17, 0.16);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

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

.cart-drawer-head,
.cart-drawer-footer {
  padding: 1rem;
}

.cart-drawer-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-head h2 {
  font-size: 1.35rem;
}

.cart-drawer-close {
  width: 36px;
  min-height: 36px;
  padding: 0;
  background: var(--sand);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.cart-drawer-list {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  overflow-y: auto;
  padding: 1rem;
}

.cart-drawer-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 34px;
  gap: 0.8rem;
  align-items: start;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.cart-drawer-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  background: var(--sand);
}

.cart-drawer-item h3 {
  margin-bottom: 0.25rem;
  font-size: 0.88rem;
}

.cart-drawer-item p {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.cart-drawer-item > button {
  width: 34px;
  min-height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
}

.cart-drawer-footer {
  display: grid;
  gap: 0.9rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.cart-drawer-footer > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.cart-drawer-footer span,
.cart-drawer-empty p {
  color: var(--muted);
}

.cart-drawer-footer strong {
  font-size: 1.35rem;
}

.cart-drawer-footer .button {
  width: 100%;
}

.cart-drawer-full-link {
  justify-self: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-drawer-full-link:hover {
  color: var(--ink);
}

.cart-drawer-empty {
  display: grid;
  gap: 0.45rem;
  padding: 1.5rem 0;
  text-align: center;
}

.cart-drawer-empty p {
  margin: 0;
}

.cart-summary {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.cart-summary strong { font-size: 2rem; }
.checkout-form { padding: 1rem; }

.about-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: calc(100svh - 90px);
  background: var(--sand);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.about-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(2rem, 6vw, 5rem);
  text-align: center;
}

.about-copy p,
.contact-page p,
.checkout p {
  max-width: 620px;
  color: var(--muted);
}

.contact-honeypot { position: absolute; left: -9999px; }
.contact-form-feedback { margin: 0; padding: 0.75rem; border: 1px solid var(--line); font-weight: 700; }
.contact-form-feedback.success { border-color: rgba(95, 130, 82, 0.45); color: #3f6436; }
.contact-form-feedback.error { border-color: rgba(150, 67, 58, 0.45); color: #96433a; }

.legal-page {
  display: grid;
  grid-template-columns: 260px minmax(0, 820px);
  gap: clamp(1.5rem, 4vw, 3rem);
  justify-content: center;
  align-items: start;
  background: var(--cream);
}

.legal-nav,
.legal-content {
  border: 1px solid var(--line);
  background: var(--paper);
}

.legal-nav {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
}

.legal-nav strong {
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.legal-nav a {
  padding: 0.65rem 0.7rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  background: var(--sand);
  color: var(--ink);
}

.legal-content {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.3rem);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.legal-meta {
  display: grid;
  gap: 0.45rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.legal-meta span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.legal-meta strong {
  color: var(--olive-dark);
  font-size: 0.86rem;
}

.legal-content section {
  display: grid;
  gap: 0.7rem;
}

.legal-content h2 {
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.legal-content p {
  max-width: 72ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 3rem clamp(1rem, 8vw, 10rem);
  background: var(--olive);
  color: #fff;
}

.site-footer > div {
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.site-footer strong {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  font-weight: 600;
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100svh;
  background: var(--cream);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 2rem;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  background: var(--paper);
}

.admin-sidebar nav {
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.admin-sidebar nav a {
  padding: 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-sidebar nav a:hover {
  background: var(--sand);
  color: var(--ink);
}

.admin-content {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1rem, 3vw, 2rem);
}

.admin-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.admin-panel h1 {
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.sales-points-admin-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(360px, 1.15fr);
  gap: 1rem;
  align-items: stretch;
}

.sales-point-form { align-content: start; }
.sales-point-form-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.sales-point-status { min-height: 2.8em; margin: 0; color: var(--muted); font-size: 0.82rem; }
.sales-point-status.is-error { color: #96433a; }
.sales-point-preview { min-height: 420px; }
.sales-points-admin-list { display: grid; gap: 0.65rem; }
.sales-point-admin-card { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 0.7rem; align-items: center; padding: 0.8rem; border: 1px solid var(--line); background: #fff; }
.sales-point-admin-card p { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.82rem; }

.inline-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.stat-grid,
.collection-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.stat-grid article,
.collection-list article {
  display: grid;
  gap: 0.4rem;
  min-height: 110px;
  padding: 1rem;
  border: 1px solid var(--line);
  background: #fff;
}

.stat-grid strong {
  color: var(--olive-dark);
  font-size: 2.3rem;
}

.admin-table {
  display: grid;
  border: 1px solid var(--line);
  overflow: hidden;
}

.admin-row {
  display: grid;
  grid-template-columns: 64px 1.2fr 1fr 0.8fr 0.8fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.admin-row:last-child { border-bottom: 0; }
.admin-row img { width: 64px; height: 64px; object-fit: cover; }
.admin-row button { background: var(--sand); color: var(--ink); }
.admin-table.compact .admin-row { grid-template-columns: 1fr auto; }

.inventory-table {
  display: grid;
  border: 1px solid var(--line);
  background: #fff;
  overflow: visible;
}

.inventory-row {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(180px, 1.4fr) minmax(110px, 0.55fr) minmax(190px, 1fr) minmax(190px, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.75rem;
  border-bottom: 1px solid var(--line);
}

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

.inventory-head {
  background: var(--sand);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inventory-row img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.stock-field input {
  width: 100%;
  min-height: 40px;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.admin-choice {
  position: relative;
  min-width: 0;
}

.choice-trigger {
  width: 100%;
  min-height: 40px;
  justify-content: space-between;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  text-align: left;
  text-transform: none;
}

.choice-trigger::after {
  content: "▾";
  color: var(--olive-dark);
  font-size: 0.72rem;
}

.choice-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  z-index: 20;
  display: none;
  width: min(280px, 92vw);
  max-height: 310px;
  overflow-y: auto;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.admin-choice.is-open .choice-menu {
  display: grid;
}

.choice-add {
  position: sticky;
  top: 0;
  z-index: 1;
  width: 100%;
  min-height: 38px;
  border-bottom: 1px solid var(--line);
  background: var(--olive);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}

.choice-options {
  display: grid;
}

.choice-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.choice-option:last-child { border-bottom: 0; }

.choice-option button {
  min-height: 38px;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  text-transform: none;
}

.choice-option [data-choice-select] {
  justify-content: flex-start;
  padding-inline: 0.7rem;
  font-weight: 700;
}

.choice-option [data-choice-delete] {
  padding: 0;
  color: #8f3026;
  font-size: 1rem;
}

.choice-option.is-selected [data-choice-select],
.choice-option button:hover {
  background: var(--sand);
}

.inventory-actions {
  display: flex;
  justify-content: flex-end;
  padding: 0.85rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.empty-state {
  padding: 2rem;
  text-align: center;
}

.empty-state p { margin-bottom: 0; color: var(--muted); }

.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.promo-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.promo-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 21, 17, 0.5);
}

.promo-popup-panel {
  position: relative;
  width: min(100%, 420px);
  padding: clamp(1.35rem, 5vw, 2rem);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
  transform: translateY(12px);
  transition: transform 180ms ease;
}

.promo-popup.is-open .promo-popup-panel {
  transform: translateY(0);
}

.promo-popup-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 34px;
  min-height: 34px;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
}

.promo-popup-close:hover {
  background: var(--sand);
}

.promo-popup-eyebrow {
  margin: 0 0 0.55rem;
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-popup-panel h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.9rem, 8vw, 3rem);
}

.promo-popup-panel p:not(.promo-popup-eyebrow) {
  margin: 0 auto 1rem;
  max-width: 30ch;
  color: var(--muted);
}

.promo-popup-code {
  display: inline-grid;
  place-items: center;
  min-width: 150px;
  min-height: 48px;
  margin: 0.15rem 0 1rem;
  padding: 0.7rem 1rem;
  border: 1px dashed var(--olive);
  background: #fff;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.promo-popup-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

@media (max-width: 1120px) {
  .header-main {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    justify-items: stretch;
    gap: 0.7rem;
    padding-inline: 1rem;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    justify-self: start;
    width: 40px;
    min-height: 40px;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
  }

  .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
  }

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

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

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

  .nav-left {
    display: none;
  }

  .brand {
    justify-self: center;
  }

  .nav-right {
    justify-content: end;
    gap: 0.65rem;
  }

  .nav-right > a:not(.icon-link) {
    display: none;
  }

  .mobile-menu {
    grid-column: 1 / -1;
    display: none;
    border-top: 1px solid var(--line);
    padding: 0.45rem 0 0.3rem;
  }

  .site-header.is-menu-open .mobile-menu {
    display: grid;
  }

  .mobile-menu a {
    padding: 0.82rem 0.1rem;
    border-bottom: 1px solid rgba(214, 208, 196, 0.72);
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
  }

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

  .catalog-layout,
  .product-page,
  .blog-article-hero,
  .cart-section,
  .checkout,
  .contact-page,
  .sales-points-page,
  .sales-points-admin-grid,
  .faq-section,
  .legal-page { grid-template-columns: 1fr; }

  .filters,
  .product-detail,
  .cart-summary,
  .legal-nav { position: static; }
}

@media (max-width: 820px) {
  .hero { min-height: 390px; }

  .atelier-section,
  .journal-instagram,
  .about-page,
  .blog-image-gallery,
  .product-service-row,
  .product-trust-strip,
  .site-footer { grid-template-columns: 1fr; }

  .product-grid,
  .catalog-grid,
  .blog-page,
  .journal-grid,
  .stat-grid,
  .collection-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .blog-article-nav,
  .blog-pagination {
    grid-template-columns: 1fr;
  }

  .blog-nav-link-next {
    text-align: left;
  }

  .atelier-section { text-align: center; }

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

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

  .admin-sidebar nav {
    display: flex;
    overflow-x: auto;
  }

  .admin-row { grid-template-columns: 64px 1fr; }

  .sales-point-admin-card { grid-template-columns: 1fr; }

  .inventory-head { display: none; }

  .inventory-row {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .inventory-row img {
    width: 64px;
    height: 64px;
  }

  .stock-field,
  .admin-choice {
    grid-column: 1 / -1;
  }

  .choice-menu {
    position: static;
    width: 100%;
    margin-top: 0.35rem;
    box-shadow: none;
  }
}

@media (max-width: 540px) {
  .promo-bar { font-size: 0.66rem; }

  .header-main {
    gap: 0.45rem;
  }

  .brand-logo {
    width: 130px;
    max-height: 58px;
  }

  .nav-right {
    gap: 0.45rem;
  }

  .hero-copy { padding: 3rem 1rem; }

  .cart-drawer-panel {
    width: min(100%, 420px);
  }

  .cart-drawer-item {
    grid-template-columns: 64px minmax(0, 1fr) 32px;
  }

  .cart-drawer-item img {
    width: 64px;
    height: 64px;
  }

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

  .blog-page { grid-template-columns: 1fr; }

  .cart-item { grid-template-columns: 70px 1fr; }
  .cart-item img { width: 70px; height: 70px; }
  .cart-item > button { grid-column: 1 / -1; }
  .quantity-controls { grid-column: 1 / -1; }
}

.shipping-progress { display: grid; gap: .45rem; padding: .8rem; border: 1px solid rgba(173,146,87,.38); background: linear-gradient(135deg, #fffef8, #f5efdb); overflow: hidden; }
.shipping-progress-head { display: flex; justify-content: space-between; gap: .8rem; align-items: baseline; font-size: .76rem; font-weight: 900; }
.shipping-progress-head span, .shipping-progress p { color: var(--muted); }
.shipping-progress-head span { text-transform: uppercase; letter-spacing: .08em; }
.shipping-progress-head strong { color: var(--olive-dark); text-align: right; }
.shipping-progress p { margin: 0; font-size: .74rem; font-weight: 700; }
.shipping-progress-track { height: 9px; overflow: hidden; border-radius: 99px; background: rgba(173,146,87,.18); }
.shipping-progress-track span { display: block; width: 100%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--olive), #b7ce75); transform: scaleX(0); transform-origin: left; transition: transform 620ms cubic-bezier(.2,.8,.2,1), background .26s ease; }
.shipping-progress.is-unlocked { border-color: rgba(95,130,82,.62); animation: shipping-unlocked .52s ease both; }
.shipping-progress.is-unlocked .shipping-progress-track span { background: linear-gradient(90deg, #5f8252, #d7bd62); }
.shipping-progress.is-unlocked .shipping-progress-head strong { color: #3f6436; }
@keyframes shipping-unlocked { 0%,100% { transform: translateY(0); } 40% { transform: translateY(-3px); } 70% { transform: translateY(1px); } }
