:root {
  color-scheme: light;
  --ink: #2f1d13;
  --ink-soft: #665247;
  --muted: #8a796c;
  --paper: #fff9ed;
  --surface: #fffef9;
  --mist: #f2ead4;
  --rose: #fff0e6;
  --rust: #b73b2c;
  --rust-dark: #8f2a20;
  --saffron: #d99a24;
  --green: #2f7d46;
  --green-soft: #e4f2df;
  --indigo: #273f72;
  --line: #eadabc;
  --admin-ink: #17231c;
  --admin-surface: #f6f8f1;
  --admin-panel: #ffffff;
  --admin-line: #d7e0d2;
  --admin-accent: #2f6646;
  --admin-deep: #16271f;
  --shadow: 0 18px 48px rgba(47, 29, 19, 0.13);
  --block-print: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cg fill='none' stroke='%232f7d46' stroke-width='1.6' opacity='.28'%3E%3Cpath d='M48 13c9 10 9 20 0 30-9-10-9-20 0-30Z'/%3E%3Cpath d='M18 48c10-9 20-9 30 0-10 9-20 9-30 0Z'/%3E%3Cpath d='M48 53c9 10 9 20 0 30-9-10-9-20 0-30Z'/%3E%3Cpath d='M48 48c10-9 20-9 30 0-10 9-20 9-30 0Z'/%3E%3C/g%3E%3Cg fill='%23d99a24' opacity='.18'%3E%3Ccircle cx='18' cy='18' r='3'/%3E%3Ccircle cx='78' cy='18' r='3'/%3E%3Ccircle cx='18' cy='78' r='3'/%3E%3Ccircle cx='78' cy='78' r='3'/%3E%3C/g%3E%3Cpath d='M0 0h96v96H0z' fill='none' stroke='%23b73b2c' stroke-width='1' opacity='.12'/%3E%3C/svg%3E");
  --radius: 8px;
  --header: 74px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 249, 237, 0.96), rgba(255, 253, 246, 0.98)),
    var(--block-print),
    var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

body.is-admin-site {
  background:
    linear-gradient(180deg, #eef4ec, #f8faf3 34%, #eef3ec),
    var(--admin-surface);
  color: var(--admin-ink);
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
  align-items: center;
  min-height: var(--header);
  padding: 0 clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 237, 0.94);
  backdrop-filter: blur(16px);
}

body.is-admin-site .site-header {
  grid-template-columns: minmax(max-content, 1fr) auto;
  border-bottom-color: rgba(246, 248, 241, 0.14);
  background: rgba(22, 39, 31, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(47, 125, 70, 0.22);
  border-radius: 50%;
  background: #fff7dd;
  color: var(--green);
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.brand-name {
  font-size: 1.18rem;
}

.brand-context {
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.is-admin-site .brand,
body.is-admin-site .nav-link {
  color: #f7fbf0;
}

body.is-admin-site .brand-mark {
  border-color: rgba(236, 184, 70, 0.4);
  background: rgba(236, 184, 70, 0.12);
  color: #ecb846;
}

body.is-admin-site .brand-context {
  color: #a9c6b3;
}

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

body.is-admin-site .top-nav {
  justify-content: end;
}

.nav-link,
.admin-tab {
  min-height: 38px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-link:hover,
.nav-link.is-active,
.admin-tab:hover,
.admin-tab.is-active {
  color: var(--rust-dark);
  border-bottom-color: var(--rust);
}

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

.admin-console[hidden],
.admin-gate[hidden] {
  display: none;
}

body.is-admin-site .nav-link:hover,
body.is-admin-site .nav-link.is-active {
  color: #ecb846;
  border-bottom-color: #ecb846;
}

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

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: clamp(180px, 18vw, 260px);
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(234, 218, 188, 0.94);
  border-radius: var(--radius);
  background: rgba(255, 254, 249, 0.9);
  color: var(--muted);
  box-shadow: 0 8px 20px rgba(47, 29, 19, 0.05);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.nav-search:focus-within {
  border-color: rgba(47, 125, 70, 0.38);
  background: #fffef9;
  box-shadow: 0 0 0 3px rgba(47, 125, 70, 0.1);
}

.nav-search svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--green);
}

.nav-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-search input::placeholder {
  color: var(--muted);
  font-weight: 700;
}

.icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--rust-dark);
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.icon-button:hover {
  transform: translateY(-1px);
  border-color: rgba(189, 79, 36, 0.38);
  box-shadow: 0 10px 22px rgba(58, 23, 18, 0.1);
}

.icon-button.plain {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

#cartCount {
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

.view {
  display: none;
}

.view.is-active {
  display: block;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(82vh - var(--header));
  padding: clamp(48px, 8vw, 96px) clamp(20px, 6vw, 92px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 249, 237, 0.98) 0%, rgba(255, 249, 237, 0.88) 40%, rgba(255, 249, 237, 0.18) 82%),
    var(--block-print),
    url("assets/hero-spices.png") center / cover;
  background-size: auto, 104px 104px, cover;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: clamp(12px, 2vw, 24px);
  content: "";
  border: 1px solid rgba(183, 59, 44, 0.18);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  padding-left: clamp(0px, 2vw, 18px);
  border-left: 5px double rgba(217, 154, 36, 0.58);
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  padding: 7px 10px;
  border: 1px solid rgba(40, 127, 50, 0.22);
  border-radius: 999px;
  background: rgba(223, 243, 223, 0.72);
  text-transform: none;
}

.eyebrow svg {
  width: 14px;
  height: 14px;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 10ch;
  margin: 20px 0 18px;
  font-size: clamp(2.75rem, 6vw, 4.8rem);
  font-weight: 900;
}

.hero p {
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 24px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(47, 125, 70, 0.22);
  border-radius: 999px;
  background: rgba(255, 254, 249, 0.78);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
}

.hero-trust span::before {
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--saffron);
  content: "";
}

.hero-actions,
.product-actions,
.cart-actions,
.admin-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.ghost-button,
.text-link,
.secondary-button,
.danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.primary-button {
  border: 1px solid var(--rust);
  background: var(--rust);
  color: #fff;
  box-shadow: 0 14px 28px rgba(189, 79, 36, 0.24);
}

.primary-button:hover {
  transform: translateY(-1px);
  background: var(--rust-dark);
  border-color: var(--rust-dark);
}

.primary-button:disabled,
.secondary-button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
  transform: none;
  box-shadow: none;
}

.primary-button.compact {
  min-width: 138px;
}

.ghost-button,
.secondary-button {
  border: 1px solid rgba(189, 79, 36, 0.34);
  background: #fff;
  color: var(--rust-dark);
}

.ghost-button:hover,
.secondary-button:hover {
  border-color: var(--rust);
  box-shadow: 0 10px 24px rgba(58, 23, 18, 0.08);
}

.danger-button {
  border: 1px solid rgba(146, 56, 25, 0.28);
  background: #fff4ef;
  color: var(--rust-dark);
}

.text-link {
  min-height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--rust-dark);
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro-band {
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.95), rgba(255, 254, 249, 0.98) 62%, rgba(239, 247, 229, 0.92)),
    var(--block-print);
  background-size: auto, 112px 112px;
}

.section-heading {
  width: min(720px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.promise-copy h2,
.panel-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.section-heading p,
.promise-copy p,
.admin-hero p {
  color: var(--ink-soft);
}

.collection-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(180px, 220px);
  gap: 14px;
  align-items: center;
  margin: 0 auto 12px;
  padding: 12px;
  border: 1px solid rgba(234, 218, 188, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 254, 249, 0.82);
  box-shadow: 0 12px 30px rgba(47, 29, 19, 0.06);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
}

.search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
}

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

.filter-chip {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: rgba(40, 127, 50, 0.32);
  background: var(--green-soft);
  color: var(--green);
}

#sortProducts {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
  outline: 0;
}

.collection-meta {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

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

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(234, 218, 188, 0.92);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(58, 23, 18, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--saffron), var(--rust));
  content: "";
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 125, 70, 0.28);
  box-shadow: 0 18px 42px rgba(47, 29, 19, 0.12);
}

.product-media-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.product-card img,
.product-modal-image img,
.admin-product-image img {
  width: 100%;
  object-fit: cover;
  background: #2b2723;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: max-content;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #e6f5e5;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
}

.product-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
}

.badge.warning {
  background: #fff2d8;
  color: #9a5f05;
}

.product-body {
  min-width: 0;
  padding: 16px 16px 14px;
}

.product-card-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-title {
  margin-bottom: 7px;
  font-size: 1rem;
  font-weight: 850;
}

.product-title button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: inherit;
  text-align: left;
}

.product-desc {
  display: -webkit-box;
  min-height: 44px;
  margin-bottom: 14px;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 0.88rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}

.price {
  color: var(--rust-dark);
  font-weight: 900;
}

.pack {
  color: var(--muted);
  font-size: 0.8rem;
}

.stock {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.warning-text {
  color: var(--rust-dark);
}

.card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 0 16px 16px;
}

.add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 42px;
  margin: 0;
  border: 1px solid #f0c4b6;
  border-radius: var(--radius);
  background: #fff2ed;
  color: var(--rust-dark);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 850;
}

.add-button:hover {
  border-color: var(--rust);
  background: #ffe8de;
}

.add-button:disabled {
  cursor: not-allowed;
  color: var(--muted);
  background: #f6efeb;
}

.secondary-link {
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--rust-dark);
  cursor: pointer;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.collection-empty {
  grid-column: 1 / -1;
}

.promise-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 254, 249, 0.96), rgba(237, 247, 226, 0.84)),
    var(--block-print);
  background-size: auto, 120px 120px;
}

.promise-media img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  border-radius: var(--radius);
  border: 1px solid rgba(47, 125, 70, 0.18);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.promise-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.promise-list article {
  position: relative;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 249, 0.92);
  overflow: hidden;
}

.promise-list article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--saffron));
  content: "";
}

.promise-list h3 {
  margin: 14px 0 7px;
  font-size: 1rem;
}

.promise-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
}

.mini-icon.saffron,
.mini-icon.amber {
  background: #fff1d2;
  color: var(--saffron);
}

.mini-icon.coral {
  background: #ffe2d7;
  color: var(--rust);
}

.shipping-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(47, 125, 70, 0.16);
  border-bottom: 1px solid rgba(47, 125, 70, 0.16);
  background:
    linear-gradient(90deg, rgba(47, 125, 70, 0.12), rgba(217, 154, 36, 0.16), rgba(183, 59, 44, 0.1)),
    #fffdf3;
}

.shipping-strip h2 {
  margin-bottom: 4px;
  font-size: 1.16rem;
}

.shipping-strip p {
  margin: 0;
  color: var(--ink-soft);
}

.product-detail-shell {
  padding: clamp(32px, 5vw, 72px) clamp(18px, 5vw, 72px) clamp(48px, 7vw, 92px);
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.95), rgba(255, 254, 249, 0.98)),
    var(--block-print);
  background-size: auto, 120px 120px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumb button {
  border: 0;
  background: transparent;
  color: var(--rust-dark);
  cursor: pointer;
  padding: 0;
  font-weight: 800;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

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

.detail-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #25211d;
  box-shadow: var(--shadow);
}

.detail-image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  object-fit: cover;
}

.detail-image-wrap .badge {
  position: absolute;
  top: 16px;
  left: 16px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 96px);
  gap: 12px;
}

.gallery-thumbs button {
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.gallery-thumbs button.is-active {
  border-color: var(--rust);
}

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

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

.product-buybox h1 {
  max-width: 12ch;
  margin: 12px 0 10px;
  font-size: clamp(2.4rem, 4.1rem, 4.1rem);
}

.detail-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 22px;
}

.detail-price strong {
  color: var(--rust-dark);
  font-size: 1.75rem;
}

.detail-price span,
.detail-copy {
  color: var(--ink-soft);
}

.detail-copy {
  max-width: 62ch;
  font-size: 1.02rem;
}

.variant-picker {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.variant-picker > span {
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.variant-picker > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.variant-picker button {
  display: grid;
  gap: 4px;
  min-height: 68px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.variant-picker button:hover,
.variant-picker button.is-active {
  border-color: var(--rust);
  background: #fff2ed;
}

.variant-picker button span {
  color: var(--rust-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.purchase-panel {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr);
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff4ef;
}

.detail-stepper {
  grid-template-columns: 46px 52px 46px;
  background: #fff;
}

.detail-stepper span {
  min-height: 46px;
}

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

.order-promises span {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.detail-facts div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.detail-facts span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-facts strong {
  display: block;
  margin-top: 5px;
}

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

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

.product-accordions summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  cursor: pointer;
  font-weight: 900;
}

.product-accordions summary::after {
  content: "+";
  color: var(--rust-dark);
  font-size: 1.2rem;
}

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

.product-accordions p {
  color: var(--ink-soft);
}

.difference-section {
  background:
    linear-gradient(180deg, rgba(255, 240, 230, 0.9), rgba(237, 247, 226, 0.88)),
    var(--block-print);
  background-size: auto, 128px 128px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.difference-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
}

.difference-grid .mini-icon {
  margin: 0 auto 18px;
}

.difference-grid h3 {
  margin-bottom: 10px;
}

.difference-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.related-section {
  background: #fffdf6;
}

.related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.related-heading h2 {
  margin: 6px 0 0;
  font-size: clamp(1.8rem, 2.4rem, 2.4rem);
}

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

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

.related-card button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

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

.related-card button span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 241, 210, 0.9);
  color: #845005;
  font-size: 0.68rem;
  font-weight: 900;
}

.related-card h3 {
  margin: 12px 0 4px;
  font-size: 1rem;
}

.related-card p {
  margin: 0;
  color: var(--ink-soft);
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 42px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(47, 125, 70, 0.12), rgba(255, 240, 230, 0.9)),
    var(--block-print);
  background-size: auto, 112px 112px;
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 850;
  line-height: 1.1;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
}

.site-footer a {
  color: var(--ink);
  text-underline-offset: 3px;
}

.site-footer p {
  margin: 0;
  color: var(--green);
  text-align: right;
}

.drawer-backdrop,
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(33, 18, 15, 0.36);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  width: min(480px, 100%);
  height: 100dvh;
  background: var(--surface);
  box-shadow: -22px 0 44px rgba(58, 23, 18, 0.18);
  transform: translateX(104%);
  transition: transform 220ms ease;
}

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

.drawer-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2 {
  margin: 3px 0 0;
}

.cart-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
  padding: 18px 24px 24px;
  overflow: auto;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 260px;
  color: var(--ink-soft);
  text-align: center;
}

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

.cart-item img {
  width: 74px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
}

.cart-item h3 {
  margin-bottom: 3px;
  font-size: 0.96rem;
}

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

.quantity-stepper {
  display: inline-grid;
  grid-template-columns: 34px 40px 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.quantity-stepper button {
  border: 0;
  background: transparent;
  color: var(--rust-dark);
  cursor: pointer;
  font-weight: 850;
}

.quantity-stepper span {
  display: grid;
  place-items: center;
  min-height: 34px;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  font-weight: 800;
}

.cart-summary {
  margin-top: auto;
  padding-top: 10px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0;
  color: var(--ink-soft);
}

.summary-line.total {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 900;
}

.minimum-meter {
  margin: 18px 0;
}

.meter-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #f1ded6;
}

.meter-fill {
  width: var(--meter, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--saffron), var(--green));
}

.minimum-meter p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.checkout-form {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf7;
}

.checkout-form h3 {
  margin-bottom: 2px;
  font-size: 1.08rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.admin-field label {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select,
.admin-field input,
.admin-field select,
#orderFilter {
  width: 100%;
  min-height: 42px;
  border: 1px solid #dcc7bd;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 9px 11px;
  outline: none;
}

.field textarea {
  min-height: 76px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus,
.admin-field input:focus,
.admin-field select:focus,
#orderFilter:focus {
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(189, 79, 36, 0.12);
}

body.is-admin-site .admin-field input,
body.is-admin-site .admin-field select,
body.is-admin-site #orderFilter {
  border-color: var(--admin-line);
  background: #ffffff;
  color: var(--admin-ink);
}

body.is-admin-site .admin-field input:focus,
body.is-admin-site .admin-field select:focus,
body.is-admin-site #orderFilter:focus {
  border-color: var(--admin-accent);
  box-shadow: 0 0 0 3px rgba(47, 102, 70, 0.14);
}

.form-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 95;
  display: none;
  width: min(980px, calc(100% - 28px));
  max-height: calc(100dvh - 36px);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.product-modal.is-open {
  display: block;
}

.modal-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  padding: 24px;
}

.product-modal-image {
  position: relative;
}

.product-modal-image img {
  aspect-ratio: 1 / 0.92;
  border-radius: var(--radius);
}

.modal-copy h2 {
  margin: 12px 0 8px;
  font-size: clamp(2rem, 3rem, 3rem);
}

.modal-copy p {
  color: var(--ink-soft);
}

.modal-facts {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff8f4;
}

.fact {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
}

.close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.admin-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(40px, 6vw, 74px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  color: #f8fbf1;
  background:
    linear-gradient(120deg, rgba(22, 39, 31, 0.98), rgba(47, 102, 70, 0.95) 58%, rgba(236, 184, 70, 0.88)),
    var(--admin-deep);
  border-bottom: 1px solid rgba(246, 248, 241, 0.12);
}

.admin-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  opacity: 0.56;
}

.admin-hero > * {
  position: relative;
  z-index: 1;
}

.admin-hero h1 {
  max-width: 13ch;
  margin: 8px 0 10px;
  font-size: clamp(2.2rem, 6vw, 4.1rem);
}

.admin-hero p {
  max-width: 58ch;
  color: rgba(248, 251, 241, 0.82);
}

.admin-hero .kicker {
  color: #f0c55a;
}

.admin-hero .primary-button {
  border-color: #f0c55a;
  background: #f0c55a;
  color: #17231c;
  box-shadow: none;
}

.admin-panel-header {
  min-height: 280px;
}

.admin-header-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-session-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  max-width: 100%;
  padding: 0 14px;
  border: 1px solid rgba(248, 251, 241, 0.18);
  border-radius: 999px;
  background: rgba(248, 251, 241, 0.12);
  color: #f8fbf1;
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-gate {
  display: grid;
  min-height: calc(100vh - var(--header));
  place-items: center;
  padding: clamp(28px, 6vw, 72px);
  background:
    linear-gradient(120deg, rgba(22, 39, 31, 0.96), rgba(47, 102, 70, 0.92)),
    var(--admin-deep);
}

.admin-auth-card {
  display: grid;
  gap: 18px;
  width: min(100%, 460px);
  padding: clamp(24px, 5vw, 40px);
  border: 1px solid rgba(248, 251, 241, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.admin-auth-card h1 {
  margin: 0;
  color: var(--admin-ink);
  font-size: clamp(2rem, 6vw, 3rem);
}

.admin-auth-card p {
  margin: 0;
  color: #52675a;
  line-height: 1.55;
}

.admin-gate-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: #eef4ec;
}

.summary-card {
  position: relative;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--admin-line);
  border-radius: var(--radius);
  background: var(--admin-panel);
  box-shadow: 0 8px 18px rgba(23, 35, 28, 0.05);
  overflow: hidden;
}

.summary-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--admin-accent), #f0c55a);
  content: "";
}

.summary-card span {
  color: #627568;
  font-size: 0.82rem;
  font-weight: 800;
}

.summary-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.6rem;
  line-height: 1.1;
}

.admin-shell {
  padding: 28px clamp(18px, 5vw, 72px) clamp(56px, 8vw, 96px);
  background: var(--admin-surface);
}

.admin-tabs {
  display: flex;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  padding: 5px;
  border: 1px solid var(--admin-line);
  border-radius: var(--radius);
  background: #ffffff;
  overflow-x: auto;
}

body.is-admin-site .admin-tab {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  color: #52675a;
}

body.is-admin-site .admin-tab:hover,
body.is-admin-site .admin-tab.is-active {
  background: var(--admin-accent);
  color: #ffffff;
}

.admin-panel {
  display: none;
  padding-top: 24px;
}

.admin-panel.is-active {
  display: block;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--admin-line);
}

body.is-admin-site .panel-heading .kicker,
body.is-admin-site .details-header .kicker {
  color: var(--admin-accent);
}

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

.admin-product {
  display: grid;
  grid-template-columns: 112px minmax(180px, 1.1fr) repeat(4, minmax(112px, 0.58fr)) auto;
  gap: 14px;
  align-items: start;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--admin-line);
  border-radius: var(--radius);
  background: var(--admin-panel);
  box-shadow: 0 8px 20px rgba(23, 35, 28, 0.04);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.admin-product:hover {
  border-color: rgba(47, 102, 70, 0.32);
  box-shadow: 0 14px 28px rgba(23, 35, 28, 0.08);
}

.admin-product-image {
  position: relative;
}

.admin-product-image img {
  aspect-ratio: 1;
  border-radius: var(--radius);
}

.admin-product-main {
  min-width: 0;
}

.admin-product-main h3 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.admin-product-main p {
  margin: 0;
  color: #5f7066;
  font-size: 0.84rem;
}

.admin-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.admin-field.wide-field {
  grid-column: span 2;
}

.switch-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.switch-row input {
  width: 44px;
  height: 24px;
  accent-color: var(--admin-accent);
}

.image-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 36px;
  margin-top: 8px;
  border: 1px solid rgba(47, 102, 70, 0.28);
  border-radius: var(--radius);
  background: #eef6ed;
  color: var(--admin-accent);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
}

.image-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.admin-product .primary-button {
  min-width: 92px;
  align-self: end;
  box-shadow: none;
}

body.is-admin-site .primary-button {
  border-color: var(--admin-accent);
  background: var(--admin-accent);
  color: #ffffff;
  box-shadow: none;
}

body.is-admin-site .primary-button:hover {
  border-color: #245338;
  background: #245338;
}

body.is-admin-site .ghost-button,
body.is-admin-site .secondary-button {
  border-color: rgba(47, 102, 70, 0.28);
  background: #ffffff;
  color: var(--admin-accent);
}

body.is-admin-site .admin-hero .primary-button {
  border-color: #f0c55a;
  background: #f0c55a;
  color: #17231c;
}

body.is-admin-site .admin-hero .primary-button:hover {
  border-color: #ffd86d;
  background: #ffd86d;
}

.orders-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 18px;
  align-items: start;
}

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

.order-card {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--admin-line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--admin-ink);
  cursor: pointer;
  text-align: left;
}

.order-card.is-active,
.order-card:hover {
  border-color: rgba(47, 102, 70, 0.42);
  box-shadow: 0 10px 22px rgba(23, 35, 28, 0.07);
}

.order-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
}

.order-card p {
  margin: 6px 0 0;
  color: #607369;
  font-size: 0.86rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: #e4f0e3;
  color: var(--admin-accent);
  font-size: 0.72rem;
  font-weight: 900;
}

.status-pill.New {
  background: #fff1d2;
  color: #9a5f05;
}

.status-pill.Packed {
  background: #e9f0ff;
  color: #315c9d;
}

.status-pill.Shipped {
  background: #e7f5f2;
  color: #21756a;
}

.order-details {
  min-height: 320px;
  padding: 18px;
  border: 1px solid var(--admin-line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(23, 35, 28, 0.04);
}

.details-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.details-header h3 {
  margin-bottom: 5px;
  font-size: 1.35rem;
}

.details-header p {
  margin: 0;
  color: #607369;
}

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

.detail-box {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--admin-line);
  border-radius: var(--radius);
  background: #f7faf4;
}

.detail-box span {
  color: #647667;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-box p {
  margin: 6px 0 0;
  color: var(--admin-ink);
}

.order-items {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.order-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--admin-line);
}

.order-item p {
  margin: 0;
  color: #647667;
  font-size: 0.84rem;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 110;
  max-width: min(380px, calc(100% - 40px));
  padding: 13px 16px;
  border: 1px solid rgba(40, 127, 50, 0.22);
  border-radius: var(--radius);
  background: #eef9ec;
  color: #14561c;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.success-backdrop {
  position: fixed;
  inset: 0;
  z-index: 115;
  background: rgba(16, 18, 28, 0.36);
  backdrop-filter: blur(6px);
}

.success-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 120;
  display: grid;
  justify-items: center;
  width: min(440px, calc(100% - 32px));
  min-height: min(620px, calc(100dvh - 40px));
  padding: clamp(40px, 7vw, 72px) 32px 34px;
  border: 1px solid rgba(234, 218, 188, 0.74);
  border-radius: 28px;
  background: #ffffff;
  color: #28234d;
  text-align: center;
  box-shadow: 0 30px 90px rgba(23, 18, 36, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -48%) scale(0.98);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.success-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.success-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f7f4f2;
  color: #28234d;
  cursor: pointer;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin-top: 8px;
  border-radius: 50%;
  background: #dcfce2;
  color: #45d35c;
}

.success-mark svg {
  width: 68px;
  height: 68px;
  padding: 15px;
  border-radius: 50%;
  background: currentColor;
  color: #ffffff;
  stroke-width: 2.4;
}

.success-order {
  min-height: 22px;
  margin-top: 28px;
  color: #ff9f47;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.success-modal h2 {
  margin: 12px 0 12px;
  color: #28234d;
  font-size: clamp(2rem, 5vw, 2.65rem);
  font-weight: 900;
}

.success-modal p {
  max-width: 30ch;
  margin: 0;
  color: #4f4a72;
  font-size: 1.04rem;
  line-height: 1.7;
}

.success-actions {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: 100%;
  margin-top: auto;
}

.success-actions .primary-button,
.success-actions .ghost-button {
  width: min(190px, 100%);
  min-height: 58px;
  border-radius: var(--radius);
}

.success-actions .primary-button {
  border-color: #ff9f47;
  background: #ff9f47;
  box-shadow: none;
}

.success-actions .primary-button:hover {
  border-color: #f08b31;
  background: #f08b31;
}

.success-actions .ghost-button {
  border-color: #ff9f47;
  background: #ffffff;
  color: #ff9f47;
}

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

  .collection-toolbar {
    grid-template-columns: 1fr;
  }

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

  .admin-product {
    grid-template-columns: 96px minmax(180px, 1fr) repeat(3, minmax(112px, 0.6fr));
  }

  .admin-field.pack-field,
  .admin-product .primary-button {
    grid-column: span 1;
  }
}

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

  .top-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: start;
    gap: 16px;
    overflow-x: auto;
  }

  .header-actions {
    justify-self: end;
  }

  .nav-search {
    width: min(42vw, 220px);
  }

  .nav-link {
    white-space: nowrap;
  }

  .hero {
    min-height: 64vh;
    background:
      linear-gradient(180deg, rgba(255, 249, 237, 0.96) 0%, rgba(255, 249, 237, 0.86) 54%, rgba(255, 249, 237, 0.42) 100%),
      var(--block-print),
      url("assets/hero-spices.png") center / cover;
    background-size: auto, 104px 104px, cover;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.25rem, 3.2rem, 3.2rem);
  }

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

  .promise-section,
  .modal-inner,
  .orders-layout,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .promise-list,
  .admin-summary,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .admin-product {
    grid-template-columns: 96px minmax(0, 1fr) minmax(110px, 0.7fr);
  }

  .admin-product .admin-field,
  .admin-field.wide-field,
  .admin-product .primary-button {
    grid-column: 2 / -1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer p {
    text-align: center;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-self: stretch;
    order: 2;
  }

  .nav-search {
    flex: 1 1 auto;
    width: auto;
  }

  .hero {
    align-items: end;
    min-height: 620px;
    padding: 38px 18px;
  }

  .hero-actions,
  .cart-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .ghost-button,
  .secondary-button,
  .danger-button {
    width: 100%;
  }

  .section {
    padding: 48px 16px;
  }

  .section-heading {
    text-align: left;
  }

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

  .promise-list,
  .admin-summary,
  .details-grid,
  .form-grid,
  .detail-facts,
  .order-promises,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .shipping-strip,
  .admin-hero,
  .panel-heading,
  .details-header,
  .related-heading {
    align-items: start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .product-detail-shell {
    padding: 30px 16px 48px;
  }

  .product-buybox h1 {
    max-width: 100%;
    font-size: 2.2rem;
  }

  .variant-picker > div,
  .purchase-panel {
    grid-template-columns: 1fr;
  }

  .detail-stepper {
    width: max-content;
  }

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

  .card-actions {
    grid-template-columns: 1fr;
  }

  .admin-hero {
    padding: 38px 16px;
  }

  .admin-shell,
  .admin-summary {
    padding-right: 16px;
    padding-left: 16px;
  }

  .admin-product {
    grid-template-columns: 84px minmax(0, 1fr);
    align-items: start;
  }

  .admin-product-image {
    grid-row: span 2;
  }

  .admin-product .admin-field,
  .admin-product .primary-button {
    grid-column: 1 / -1;
  }

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

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

  .cart-item .quantity-stepper {
    grid-column: 2;
    width: max-content;
  }

  .cart-drawer {
    width: 100%;
  }

  .drawer-header,
  .cart-body,
  .modal-inner {
    padding: 18px;
  }

  .product-modal {
    width: calc(100% - 20px);
  }

  .success-modal {
    width: calc(100% - 24px);
    min-height: min(620px, calc(100dvh - 24px));
    padding: 58px 24px 28px;
    border-radius: 22px;
  }

  .success-mark {
    width: 118px;
    height: 118px;
  }

  .success-mark svg {
    width: 62px;
    height: 62px;
  }

  .success-actions .primary-button,
  .success-actions .ghost-button {
    width: min(190px, 100%);
  }

  .modal-copy h2 {
    font-size: 2rem;
  }
}

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

  .hero h1,
  .admin-hero h1 {
    font-size: 2rem;
  }

  .top-nav {
    gap: 10px;
  }

  .nav-link {
    font-size: 0.84rem;
  }
}

/* Earthy Modernist customer redesign */
:root {
  --ink: #1c1c18;
  --ink-soft: #544437;
  --muted: #877365;
  --paper: #fdf9f3;
  --surface: #ffffff;
  --mist: #f1ede7;
  --rose: #ffdad3;
  --rust: #9a4431;
  --rust-dark: #752818;
  --saffron: #8f4d00;
  --green: #2a6a47;
  --green-soft: #aff1c5;
  --line: #dac2b2;
  --shadow: 0 14px 40px rgba(143, 77, 0, 0.08);
  --radius: 24px;
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.is-customer-site {
  background: #fdf9f3;
}

body.is-customer-site .site-header {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(260px, 1fr);
  min-height: 66px;
  padding: 0 max(20px, calc((100vw - 1200px) / 2));
  border-bottom: 0;
  background: rgba(253, 249, 243, 0.9);
  box-shadow: 0 1px 0 rgba(135, 115, 101, 0.08);
}

body.is-customer-site .brand {
  color: var(--saffron);
}

body.is-customer-site .brand-mark {
  width: 34px;
  height: 34px;
  border: 0;
  background: #ffdcc2;
  color: var(--saffron);
}

body.is-customer-site .brand-name {
  font-size: 1.45rem;
  font-weight: 900;
}

body.is-customer-site .brand-context {
  color: var(--rust);
  letter-spacing: 0;
}

body.is-customer-site .top-nav {
  gap: 28px;
}

body.is-customer-site .nav-link {
  min-height: 44px;
  padding: 0;
  color: #2b241f;
  border-bottom: 2px solid transparent;
  font-size: 1rem;
  font-weight: 600;
}

body.is-customer-site .nav-link:hover,
body.is-customer-site .nav-link.is-active {
  color: var(--saffron);
  border-bottom-color: var(--saffron);
}

body.is-customer-site .header-actions {
  gap: 14px;
}

body.is-customer-site .nav-search {
  width: min(260px, 24vw);
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: #f1ede7;
  box-shadow: none;
}

body.is-customer-site .icon-button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--saffron);
  box-shadow: none;
}

body.is-customer-site .icon-button:hover {
  background: #ffdcc2;
  transform: translateY(-1px);
}

body.is-customer-site main {
  overflow: hidden;
}

body.is-customer-site .hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 0;
  width: min(1200px, calc(100% - 40px));
  min-height: 520px;
  margin: 52px auto 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 48px;
  background: #f1ede7;
  box-shadow: 0 24px 70px rgba(49, 48, 45, 0.08);
}

body.is-customer-site .hero::before {
  display: none;
}

body.is-customer-site .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 56px;
  border-left: 0;
}

body.is-customer-site .hero-media {
  display: block;
  min-height: 100%;
}

body.is-customer-site .hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

body.is-customer-site .eyebrow {
  width: max-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--rust);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.is-customer-site .eyebrow svg {
  display: none;
}

body.is-customer-site .hero h1 {
  max-width: 11ch;
  margin: 24px 0 22px;
  color: var(--ink);
  font-size: 4rem;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

body.is-customer-site .hero p {
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.8;
}

body.is-customer-site .hero-trust {
  margin: 18px 0 28px;
}

body.is-customer-site .hero-trust span {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--rust-dark);
  box-shadow: 0 8px 24px rgba(143, 77, 0, 0.05);
}

body.is-customer-site .primary-button,
body.is-customer-site .ghost-button,
body.is-customer-site .secondary-button,
body.is-customer-site .danger-button {
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
}

body.is-customer-site .primary-button {
  border-color: var(--saffron);
  background: var(--saffron);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(143, 77, 0, 0.16);
}

body.is-customer-site .primary-button:hover {
  border-color: #6f3b00;
  background: #6f3b00;
}

body.is-customer-site .ghost-button,
body.is-customer-site .secondary-button {
  border: 2px solid rgba(154, 68, 49, 0.24);
  background: transparent;
  color: var(--rust);
}

body.is-customer-site .value-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 72px 0 0;
  padding: 32px max(20px, calc((100vw - 1200px) / 2));
  background: #f1ede7;
}

body.is-customer-site .value-bar article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

body.is-customer-site .value-bar article + article {
  border-left: 1px solid rgba(135, 115, 101, 0.22);
  padding-left: 24px;
}

body.is-customer-site .value-bar h2 {
  margin: 0 0 3px;
  font-size: 1.12rem;
  line-height: 1.2;
  font-weight: 900;
}

body.is-customer-site .value-bar p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

body.is-customer-site .mini-icon {
  width: 52px;
  height: 52px;
  background: var(--green-soft);
  color: #0d5332;
}

body.is-customer-site .mini-icon.amber {
  background: #ffdcc2;
  color: var(--saffron);
}

body.is-customer-site .mini-icon.coral {
  background: #ffdad3;
  color: var(--rust);
}

body.is-customer-site .section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0;
}

body.is-customer-site .intro-band,
body.is-customer-site .promise-section,
body.is-customer-site .difference-section,
body.is-customer-site .related-section {
  background: transparent;
}

body.is-customer-site .shop-heading,
body.is-customer-site .related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0 0 34px;
  text-align: left;
}

body.is-customer-site .section-heading h2,
body.is-customer-site .promise-copy h2,
body.is-customer-site .related-heading h2 {
  color: var(--ink);
  font-size: 2.45rem;
  line-height: 1.15;
  font-weight: 900;
}

body.is-customer-site .section-heading p,
body.is-customer-site .promise-copy p,
body.is-customer-site .detail-copy {
  color: var(--ink-soft);
}

body.is-customer-site .kicker {
  color: var(--rust);
  letter-spacing: 0.08em;
}

body.is-customer-site .collection-toolbar {
  grid-template-columns: minmax(260px, 1fr) auto minmax(180px, 220px);
  padding: 12px;
  border: 0;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

body.is-customer-site .search-field,
body.is-customer-site #sortProducts,
body.is-customer-site .filter-chip {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: #f1ede7;
}

body.is-customer-site .filter-chip:hover,
body.is-customer-site .filter-chip.is-active {
  background: var(--saffron);
  color: #ffffff;
}

body.is-customer-site .product-grid,
body.is-customer-site .related-grid {
  gap: 28px;
}

body.is-customer-site .product-card {
  overflow: visible;
  border: 0;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(49, 48, 45, 0.07);
}

body.is-customer-site .product-card::after {
  display: none;
}

body.is-customer-site .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(49, 48, 45, 0.11);
}

body.is-customer-site .product-media-button {
  display: grid;
  place-items: center;
  margin: 16px 16px 0;
  aspect-ratio: 1;
  border-radius: 24px;
  background: #f1ede7;
}

body.is-customer-site .product-card img {
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(49, 48, 45, 0.1);
}

body.is-customer-site .product-card-favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--muted);
  box-shadow: 0 8px 22px rgba(49, 48, 45, 0.08);
}

body.is-customer-site .product-card-favorite svg {
  width: 20px;
  height: 20px;
}

body.is-customer-site .product-body {
  padding: 22px 20px 12px;
}

body.is-customer-site .product-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

body.is-customer-site .product-title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

body.is-customer-site .badge {
  min-height: auto;
  padding: 0;
  background: transparent;
  color: var(--green);
  font-size: 0.78rem;
  white-space: nowrap;
}

body.is-customer-site .product-card .badge {
  position: static;
}

body.is-customer-site .product-desc {
  display: block;
  min-height: 0;
  margin: 8px 0 18px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  -webkit-line-clamp: unset;
}

body.is-customer-site .product-meta {
  align-items: center;
}

body.is-customer-site .price {
  color: var(--saffron);
  font-size: 1.15rem;
}

body.is-customer-site .pack,
body.is-customer-site .stock {
  color: var(--ink-soft);
}

body.is-customer-site .card-actions {
  grid-template-columns: 1fr auto;
  padding: 0 20px 20px;
}

body.is-customer-site .add-button {
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ffa14a;
  color: #2e1500;
}

body.is-customer-site .add-button svg {
  width: 20px;
  height: 20px;
}

body.is-customer-site .secondary-link,
body.is-customer-site .text-link {
  color: var(--saffron);
  text-decoration: none;
}

body.is-customer-site .promise-section {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

body.is-customer-site .promise-media img,
body.is-customer-site .detail-image-wrap,
body.is-customer-site .difference-grid article,
body.is-customer-site .order-promises span,
body.is-customer-site .detail-facts div,
body.is-customer-site .purchase-panel,
body.is-customer-site .variant-picker button {
  border: 0;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

body.is-customer-site .promise-list article {
  border: 0;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

body.is-customer-site .promise-list article::before {
  display: none;
}

body.is-customer-site .shipping-strip {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 80px;
  border: 0;
  border-radius: 32px;
  background: #f1ede7;
}

body.is-customer-site .product-detail-shell {
  width: min(1200px, calc(100% - 40px));
  margin: 48px auto 0;
  padding: 0 0 72px;
  background: transparent;
}

body.is-customer-site .detail-image-wrap img {
  border-radius: 32px;
}

body.is-customer-site .product-buybox h1 {
  color: var(--saffron);
  font-size: 3.4rem;
  line-height: 1.08;
}

body.is-customer-site .detail-price strong {
  color: var(--green);
}

body.is-customer-site .cart-drawer {
  width: min(560px, 100%);
  background: #fdf9f3;
  box-shadow: -30px 0 80px rgba(49, 48, 45, 0.16);
}

body.is-customer-site .drawer-header {
  border-bottom: 0;
}

body.is-customer-site .checkout-form,
body.is-customer-site .cart-item,
body.is-customer-site .order-details,
body.is-customer-site .detail-box {
  border: 0;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

body.is-customer-site .field input,
body.is-customer-site .field textarea,
body.is-customer-site .field select {
  min-height: 56px;
  border: 0;
  border-radius: 24px;
  background: #f1ede7;
  padding: 14px 18px;
}

body.is-customer-site .quantity-stepper,
body.is-customer-site .detail-stepper {
  border: 0;
  border-radius: 999px;
  background: #f1ede7;
}

body.is-customer-site .site-footer {
  background: #f1ede7;
  border-top: 0;
}

body.is-customer-site .footer-brand {
  color: var(--saffron);
}

@media (max-width: 1120px) {
  body.is-customer-site .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 20px;
  }

  body.is-customer-site .top-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: start;
    overflow-x: auto;
  }

  body.is-customer-site .header-actions {
    justify-self: end;
  }

  body.is-customer-site .hero {
    grid-template-columns: 1fr;
  }

  body.is-customer-site .hero-media img {
    min-height: 360px;
  }

  body.is-customer-site .value-bar {
    grid-template-columns: 1fr;
  }

  body.is-customer-site .value-bar article + article {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 680px) {
  body.is-customer-site .site-header {
    grid-template-columns: 1fr;
  }

  body.is-customer-site .header-actions {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  body.is-customer-site .nav-search {
    flex: 1;
    width: auto;
  }

  body.is-customer-site .hero {
    width: calc(100% - 24px);
    min-height: 0;
    margin-top: 24px;
    border-radius: 32px;
  }

  body.is-customer-site .hero-copy {
    padding: 36px 24px;
  }

  body.is-customer-site .hero h1 {
    max-width: 12ch;
    font-size: 2.7rem;
  }

  body.is-customer-site .hero p {
    font-size: 1rem;
  }

  body.is-customer-site .hero-media img {
    min-height: 280px;
  }

  body.is-customer-site .value-bar {
    margin-top: 36px;
    padding: 28px 20px;
  }

  body.is-customer-site .section,
  body.is-customer-site .shipping-strip,
  body.is-customer-site .product-detail-shell {
    width: calc(100% - 24px);
  }

  body.is-customer-site .shop-heading,
  body.is-customer-site .related-heading {
    align-items: start;
    flex-direction: column;
  }

  body.is-customer-site .section-heading h2,
  body.is-customer-site .promise-copy h2,
  body.is-customer-site .related-heading h2 {
    font-size: 2rem;
  }

  body.is-customer-site .collection-toolbar {
    border-radius: 24px;
  }

  body.is-customer-site .promise-section {
    grid-template-columns: 1fr;
  }
}

/* Earthy Modernist product detail and checkout flow */
body.is-customer-site .breadcrumb {
  width: min(1200px, 100%);
  margin: 0 auto 30px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

body.is-customer-site .breadcrumb button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--saffron);
  font-weight: 800;
}

body.is-customer-site .breadcrumb svg {
  width: 18px;
  height: 18px;
}

body.is-customer-site .product-detail-layout {
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  gap: 32px;
}

body.is-customer-site .product-gallery {
  gap: 18px;
}

body.is-customer-site .detail-image-wrap {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 48px;
  background: #f1ede7;
  box-shadow: 0 18px 54px rgba(49, 48, 45, 0.08);
}

body.is-customer-site .detail-image-wrap img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 48px;
  object-fit: cover;
}

body.is-customer-site .detail-organic-pill {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(175, 241, 197, 0.92);
  color: #0d5332;
  box-shadow: 0 10px 26px rgba(49, 48, 45, 0.08);
}

body.is-customer-site .detail-organic-pill svg {
  width: 16px;
  height: 16px;
}

body.is-customer-site .gallery-thumbs {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}

body.is-customer-site .gallery-thumbs button {
  flex: 0 0 86px;
  border: 2px solid transparent;
  border-radius: 24px;
  background: #f1ede7;
  opacity: 0.72;
}

body.is-customer-site .gallery-thumbs button.is-active,
body.is-customer-site .gallery-thumbs button:hover {
  border-color: var(--saffron);
  opacity: 1;
}

body.is-customer-site .gallery-thumbs img {
  border-radius: 20px;
}

body.is-customer-site .product-buybox {
  padding-top: 8px;
}

body.is-customer-site .detail-title-block {
  margin-bottom: 22px;
}

body.is-customer-site .detail-title-block p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

body.is-customer-site .detail-price {
  gap: 12px;
  margin-bottom: 18px;
}

body.is-customer-site .detail-price strong {
  color: var(--green);
  font-size: 2.15rem;
}

body.is-customer-site .detail-copy {
  font-size: 1rem;
  line-height: 1.75;
}

body.is-customer-site .purchase-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 28px 0;
  padding: 24px;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(49, 48, 45, 0.07);
}

body.is-customer-site .variant-picker {
  margin: 0;
}

body.is-customer-site .variant-picker > span {
  color: var(--ink);
}

body.is-customer-site .variant-picker > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.is-customer-site .variant-picker button {
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid rgba(135, 115, 101, 0.18);
  border-radius: 999px;
  background: #fdf9f3;
  box-shadow: none;
}

body.is-customer-site .variant-picker button:hover,
body.is-customer-site .variant-picker button.is-active {
  border-color: var(--saffron);
  background: #ffdcc2;
}

body.is-customer-site .variant-picker button span {
  color: var(--saffron);
}

body.is-customer-site .detail-stepper {
  width: max-content;
  grid-template-columns: 44px 48px 44px;
  padding: 4px;
  border: 0;
  border-radius: 999px;
  background: #f1ede7;
}

body.is-customer-site .detail-stepper span {
  border: 0;
}

body.is-customer-site .purchase-panel > .primary-button {
  width: 100%;
}

body.is-customer-site .order-promises span {
  border-radius: 24px;
  background: #f1ede7;
  box-shadow: none;
}

body.is-customer-site .detail-facts div {
  border-radius: 24px;
  background: #ffffff;
}

body.is-customer-site .product-accordions {
  border-top: 0;
}

body.is-customer-site .product-accordions details {
  margin-top: 10px;
  padding: 0 18px;
  border: 0;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

body.is-customer-site .product-accordions summary {
  min-height: 58px;
}

body.is-customer-site .cart-drawer {
  width: min(620px, 100%);
  background: #fdf9f3;
}

body.is-customer-site .cart-body {
  gap: 20px;
  padding: 10px 28px 28px;
}

body.is-customer-site .cart-items {
  display: grid;
  gap: 12px;
}

body.is-customer-site .cart-item {
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 14px;
  padding: 14px;
  border: 0;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

body.is-customer-site .cart-item img {
  width: 82px;
  border-radius: 22px;
}

body.is-customer-site .cart-item h3 {
  font-size: 1rem;
}

body.is-customer-site .cart-summary {
  display: grid;
  gap: 8px;
  margin-top: 0;
  padding: 22px;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

body.is-customer-site .summary-line.total {
  border-top-color: rgba(135, 115, 101, 0.16);
}

body.is-customer-site .meter-track {
  height: 10px;
  background: #f1ede7;
}

body.is-customer-site .checkout-form {
  margin-top: 10px;
  padding: 24px;
  border-radius: 32px;
}

body.is-customer-site .checkout-form h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1.32rem;
}

body.is-customer-site .checkout-form h3 svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  background: #ffdcc2;
  color: var(--saffron);
}

@media (max-width: 920px) {
  body.is-customer-site .product-detail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body.is-customer-site .detail-image-wrap,
  body.is-customer-site .detail-image-wrap img {
    border-radius: 32px;
  }

  body.is-customer-site .product-buybox h1 {
    font-size: 2.45rem;
  }

  body.is-customer-site .purchase-panel,
  body.is-customer-site .checkout-form,
  body.is-customer-site .cart-summary {
    border-radius: 28px;
  }

  body.is-customer-site .cart-body {
    padding: 8px 16px 20px;
  }

  body.is-customer-site .cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  body.is-customer-site .cart-item img {
    width: 72px;
  }
}

/* Stitch preview alignment: premium minimal spice storefront */
body.is-customer-site {
  --stitch-bg: #fdf9f3;
  --stitch-surface: #ffffff;
  --stitch-surface-low: #f7f3ed;
  --stitch-surface-mid: #f1ede7;
  --stitch-text: #1c1c18;
  --stitch-muted: #544437;
  --stitch-outline: #dac2b2;
  --stitch-primary: #8f4d00;
  --stitch-primary-deep: #6f3b00;
  --stitch-secondary: #9a4431;
  --stitch-green: #2a6a47;
  --stitch-green-soft: #aff1c5;
  --stitch-coral-soft: #ffdad3;
  --stitch-orange-soft: #ffdcc2;
  --stitch-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  background: var(--stitch-bg);
  color: var(--stitch-text);
}

body.is-customer-site .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 360px;
  min-height: 64px;
  padding: 0 max(20px, calc((100vw - 1200px) / 2));
  border: 0;
  background: rgba(253, 249, 243, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(218, 194, 178, 0.35);
}

body.is-customer-site .brand {
  gap: 0;
  color: var(--stitch-primary);
  font-family: Georgia, "Times New Roman", serif;
}

body.is-customer-site .brand-mark,
body.is-customer-site .brand-context {
  display: none;
}

body.is-customer-site .brand-name {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

body.is-customer-site .top-nav {
  justify-content: center;
  gap: 30px;
  min-width: 0;
}

body.is-customer-site .nav-link {
  min-height: 64px;
  padding: 0;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: var(--stitch-text);
  font-size: 1rem;
  font-weight: 500;
}

body.is-customer-site .nav-link:hover,
body.is-customer-site .nav-link.is-active {
  color: var(--stitch-primary);
  border-bottom-color: var(--stitch-primary);
}

body.is-customer-site .header-actions {
  justify-content: end;
  gap: 12px;
}

body.is-customer-site .nav-search {
  width: 172px;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--stitch-surface-mid);
  box-shadow: none;
}

body.is-customer-site .nav-search svg {
  width: 15px;
  height: 15px;
  color: var(--stitch-primary);
}

body.is-customer-site .nav-search input {
  color: var(--stitch-text);
  font-size: 0.86rem;
  font-weight: 500;
}

body.is-customer-site .icon-button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--stitch-primary);
  box-shadow: none;
}

body.is-customer-site .icon-button svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

body.is-customer-site .icon-button:hover {
  background: var(--stitch-orange-soft);
  transform: scale(0.97);
}

body.is-customer-site main {
  overflow: clip;
}

body.is-customer-site .hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: min(1200px, calc(100% - 40px));
  min-height: 438px;
  margin: 50px auto 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 48px;
  background: var(--stitch-surface-low);
  box-shadow: var(--stitch-shadow);
}

body.is-customer-site .hero::before {
  display: none;
}

body.is-customer-site .hero-copy {
  justify-content: center;
  padding: 48px 50px;
}

body.is-customer-site .eyebrow {
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--stitch-secondary);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

body.is-customer-site .eyebrow svg {
  display: none;
}

body.is-customer-site .hero h1,
body.is-customer-site .section-heading h2,
body.is-customer-site .related-heading h2,
body.is-customer-site .promise-copy h2,
body.is-customer-site .footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

body.is-customer-site .hero h1 {
  max-width: 10.5ch;
  margin: 22px 0 26px;
  color: var(--stitch-text);
  font-size: clamp(3.15rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.06;
}

body.is-customer-site .hero p {
  max-width: 46ch;
  margin: 0 0 30px;
  color: var(--stitch-muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.65;
}

body.is-customer-site .hero-actions {
  align-items: center;
  gap: 18px;
}

body.is-customer-site .hero-actions .primary-button {
  min-height: 52px;
  padding: 0 32px;
  border: 0;
  background: var(--stitch-primary);
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  box-shadow: none;
}

body.is-customer-site .hero-actions .primary-button svg {
  display: none;
}

body.is-customer-site .hero-trust {
  display: flex;
  margin: 0;
}

body.is-customer-site .hero-trust span {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--stitch-primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: none;
}

body.is-customer-site .hero-trust span::before {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  background: transparent;
  color: currentColor;
  content: "";
  border: 2px solid currentColor;
  border-radius: 4px;
  box-shadow: 8px 8px 0 -6px currentColor, 16px 8px 0 -6px currentColor;
}

body.is-customer-site .hero-media,
body.is-customer-site .hero-media img {
  min-height: 438px;
}

body.is-customer-site .hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.is-customer-site .value-bar {
  position: relative;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  width: 100vw;
  margin: 96px 0 0 -50vw;
  padding: 32px max(20px, calc((100vw - 1200px) / 2));
  border-radius: 0;
  background: var(--stitch-surface-mid);
}

body.is-customer-site .value-bar article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 360px;
}

body.is-customer-site .value-bar article + article {
  border-left: 1px solid rgba(154, 68, 49, 0.22);
  padding-left: 32px;
}

body.is-customer-site .value-bar h2 {
  margin: 0 0 3px;
  color: var(--stitch-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
}

body.is-customer-site .value-bar p {
  margin: 0;
  color: var(--stitch-muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
}

body.is-customer-site .mini-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--stitch-green-soft);
  color: #002110;
}

body.is-customer-site .mini-icon.amber {
  background: var(--stitch-orange-soft);
  color: var(--stitch-primary);
}

body.is-customer-site .mini-icon.coral {
  background: var(--stitch-coral-soft);
  color: var(--stitch-secondary);
}

body.is-customer-site .section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 100px 0;
}

body.is-customer-site .intro-band {
  background: transparent;
}

body.is-customer-site .shop-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 48px;
  text-align: left;
}

body.is-customer-site .shop-heading .kicker,
body.is-customer-site .collection-toolbar,
body.is-customer-site .collection-meta {
  display: none;
}

body.is-customer-site .section-heading h2 {
  margin: 0;
  color: var(--stitch-text);
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 700;
  line-height: 1.16;
}

body.is-customer-site .section-heading p {
  margin-top: 12px;
  color: var(--stitch-muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

body.is-customer-site .text-link {
  color: var(--stitch-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 700;
}

body.is-customer-site .product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

body.is-customer-site .product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 350px;
  padding: 16px;
  overflow: hidden;
  border: 0;
  border-radius: 32px;
  background: var(--stitch-surface);
  box-shadow: var(--stitch-shadow);
}

body.is-customer-site .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
}

body.is-customer-site .product-media-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  padding: 18px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at center, rgba(255, 244, 205, 0.72) 0 43%, transparent 44%),
    var(--stitch-surface-mid);
  cursor: pointer;
}

body.is-customer-site .product-card img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 12px 16px rgba(49, 48, 45, 0.12));
}

body.is-customer-site .product-card-favorite {
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #877365;
  box-shadow: 0 4px 14px rgba(49, 48, 45, 0.08);
}

body.is-customer-site .product-card-favorite svg {
  width: 21px;
  height: 21px;
}

body.is-customer-site .product-body {
  padding: 18px 0 0;
}

body.is-customer-site .product-title-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

body.is-customer-site .product-title {
  color: var(--stitch-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
}

body.is-customer-site .badge,
body.is-customer-site .product-card .badge {
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--stitch-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

body.is-customer-site .product-desc {
  margin: 10px 0 0;
  color: var(--stitch-muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
}

body.is-customer-site .product-meta {
  align-items: end;
  margin-top: 18px;
}

body.is-customer-site .product-meta > div {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--stitch-primary);
  font-family: Georgia, "Times New Roman", serif;
}

body.is-customer-site .price {
  color: var(--stitch-primary);
  font-size: 1.2rem;
  font-weight: 700;
}

body.is-customer-site .pack {
  color: var(--stitch-text);
  font-size: 0.86rem;
  font-weight: 700;
}

body.is-customer-site .stock,
body.is-customer-site .secondary-link {
  display: none;
}

body.is-customer-site .card-actions {
  justify-content: end;
  margin-top: -38px;
  padding: 0;
  pointer-events: none;
}

body.is-customer-site .add-button {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #ffa14a;
  color: var(--stitch-text);
  box-shadow: none;
}

body.is-customer-site .add-button:hover {
  background: var(--stitch-primary);
  color: #ffffff;
  transform: scale(0.96);
}

body.is-customer-site .promise-section,
body.is-customer-site .shipping-strip {
  display: none;
}

body.is-customer-site .site-footer {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 46px max(20px, calc((100vw - 1200px) / 2));
  border: 0;
  background: var(--stitch-surface-mid);
}

body.is-customer-site .footer-brand {
  color: var(--stitch-primary);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}

body.is-customer-site .site-footer nav {
  justify-content: center;
  gap: 24px;
}

body.is-customer-site .site-footer a,
body.is-customer-site .site-footer p {
  color: var(--stitch-muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
}

body.is-customer-site .product-detail-shell,
body.is-customer-site .difference-section,
body.is-customer-site .related-section {
  width: min(1200px, calc(100% - 40px));
}

body.is-customer-site .product-detail-layout {
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  gap: 24px;
}

body.is-customer-site .detail-image-wrap {
  aspect-ratio: 1;
  border-radius: 48px;
  background: var(--stitch-surface-low);
  box-shadow: var(--stitch-shadow);
}

body.is-customer-site .detail-image-wrap img {
  object-fit: contain;
  padding: 50px;
  mix-blend-mode: multiply;
}

body.is-customer-site .product-buybox h1 {
  color: var(--stitch-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700;
}

body.is-customer-site .purchase-panel,
body.is-customer-site .checkout-form,
body.is-customer-site .cart-summary {
  border: 0;
  border-radius: 32px;
  background: var(--stitch-surface-low);
  box-shadow: var(--stitch-shadow);
}

body.is-customer-site .cart-drawer {
  background: var(--stitch-bg);
}

body.is-customer-site .success-modal {
  max-width: 430px;
  min-height: 540px;
  border: 0;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(49, 48, 45, 0.16);
}

body.is-customer-site .success-mark {
  width: 142px;
  height: 142px;
  background: #dcfce2;
  color: #35d45a;
}

body.is-customer-site .success-mark svg {
  width: 72px;
  height: 72px;
}

body.is-customer-site .success-modal h2 {
  color: #2f294d;
  font-size: 2rem;
}

@media (max-width: 1080px) {
  body.is-customer-site .site-header {
    grid-template-columns: 1fr auto;
    row-gap: 0;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  body.is-customer-site .top-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: start;
    overflow-x: auto;
  }

  body.is-customer-site .header-actions {
    justify-self: end;
  }

  body.is-customer-site .hero {
    grid-template-columns: 1fr;
  }

  body.is-customer-site .hero-media,
  body.is-customer-site .hero-media img {
    min-height: 340px;
  }

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

  body.is-customer-site .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
}

@media (max-width: 680px) {
  body.is-customer-site .site-header {
    grid-template-columns: 1fr;
  }

  body.is-customer-site .brand {
    min-height: 42px;
  }

  body.is-customer-site .header-actions {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  body.is-customer-site .nav-search {
    flex: 1;
    width: auto;
  }

  body.is-customer-site .hero {
    width: calc(100% - 24px);
    margin-top: 26px;
    border-radius: 32px;
  }

  body.is-customer-site .hero-copy {
    padding: 34px 24px 30px;
  }

  body.is-customer-site .hero h1 {
    max-width: 11ch;
    font-size: 2.9rem;
  }

  body.is-customer-site .hero p {
    font-size: 1rem;
  }

  body.is-customer-site .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  body.is-customer-site .value-bar {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  body.is-customer-site .value-bar article + article {
    border-left: 0;
    padding-left: 0;
  }

  body.is-customer-site .section {
    width: calc(100% - 40px);
    padding: 72px 0;
  }

  body.is-customer-site .shop-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  body.is-customer-site .product-grid {
    grid-template-columns: 1fr;
  }

  body.is-customer-site .product-card {
    min-height: 0;
  }

  body.is-customer-site .site-footer nav {
    flex-wrap: wrap;
  }
}

/* Customer accounts and final Stitch refinement */
.account-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(49, 48, 45, 0.34);
}

.account-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  width: min(520px, 100%);
  height: 100dvh;
  background: #fdf9f3;
  box-shadow: -22px 0 44px rgba(49, 48, 45, 0.14);
  transform: translateX(104%);
  transition: transform 220ms ease;
}

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

.account-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 20px;
  min-height: 0;
  padding: 20px 24px 28px;
  overflow: auto;
}

body.is-customer-site,
body.is-customer-site .brand,
body.is-customer-site .brand-name,
body.is-customer-site .hero h1,
body.is-customer-site .hero p,
body.is-customer-site .section-heading h2,
body.is-customer-site .section-heading p,
body.is-customer-site .product-title,
body.is-customer-site .badge,
body.is-customer-site .product-desc,
body.is-customer-site .price,
body.is-customer-site .pack,
body.is-customer-site .text-link,
body.is-customer-site .value-bar h2,
body.is-customer-site .value-bar p,
body.is-customer-site .site-footer a,
body.is-customer-site .site-footer p,
body.is-customer-site .footer-brand {
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.is-customer-site .brand-name,
body.is-customer-site .footer-brand {
  font-weight: 800;
}

body.is-customer-site .hero h1 {
  font-size: clamp(3.1rem, 5vw, 4.05rem);
  font-weight: 800;
}

body.is-customer-site .hero p,
body.is-customer-site .section-heading p {
  font-weight: 400;
}

body.is-customer-site .account-button.is-signed-in {
  background: #aff1c5;
  color: #0d5332;
}

.auth-card,
.account-profile-card,
.account-order-card,
.account-required {
  border: 0;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.auth-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: #f1ede7;
}

.auth-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #544437;
  cursor: pointer;
  font-weight: 800;
}

.auth-tabs button.is-active {
  background: #8f4d00;
  color: #ffffff;
}

.auth-form {
  display: grid;
  gap: 14px;
}

.google-login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(135, 115, 101, 0.24);
  border-radius: 999px;
  background: #ffffff;
  color: #1c1c18;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.035);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.google-login-button:hover {
  border-color: rgba(143, 77, 0, 0.32);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.055);
  transform: translateY(-1px);
}

.google-login-button[disabled] {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.google-login-button span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1ede7;
  color: #8f4d00;
  font-weight: 900;
}

.google-login-button strong {
  font: inherit;
  font-weight: 800;
}

.auth-fallback-button {
  justify-content: center;
  width: 100%;
  min-height: 46px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #877365;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth-divider::before,
.auth-divider::after {
  flex: 1;
  height: 1px;
  background: rgba(218, 194, 178, 0.72);
  content: "";
}

.auth-note,
.checkout-account-note,
.account-required p {
  margin: 0;
  color: #544437;
  font-size: 0.92rem;
  line-height: 1.55;
}

.account-profile-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 22px;
}

.account-avatar {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffdcc2;
  color: #6f3b00;
  font-size: 1.25rem;
  font-weight: 900;
}

.account-profile-card h3 {
  margin: 2px 0 2px;
  color: #1c1c18;
  font-size: 1.25rem;
}

.account-profile-card p {
  margin: 0;
  color: #544437;
}

.account-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.account-actions .text-link {
  grid-column: 1 / -1;
  justify-self: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.account-section-heading {
  margin: 8px 0 14px;
}

.account-section-heading h3 {
  margin: 3px 0 0;
  color: #1c1c18;
  font-size: 1.4rem;
}

.account-orders {
  display: grid;
  gap: 14px;
}

.account-order-card {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.account-order-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.account-order-top strong {
  display: block;
  color: #1c1c18;
  font-size: 1rem;
}

.account-order-top span:not(.status-pill) {
  display: block;
  color: #544437;
  font-size: 0.86rem;
}

.account-order-items {
  display: grid;
  gap: 8px;
}

.account-order-items div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #544437;
  font-size: 0.9rem;
}

.account-order-items strong {
  color: #1c1c18;
}

.checkout-account-note {
  margin-top: -4px;
}

.account-required {
  gap: 16px;
}

body.is-customer-site .auth-card .field input,
body.is-customer-site .checkout-form .field input,
body.is-customer-site .checkout-form .field textarea,
body.is-customer-site .checkout-form .field select {
  border: 0;
  border-radius: 24px;
  background: #f1ede7;
}

body.is-customer-site .auth-card .field label,
body.is-customer-site .checkout-form .field label {
  color: #9a4431;
  font-size: 0.78rem;
  font-weight: 700;
}

@media (max-width: 680px) {
  .account-body {
    padding: 16px 16px 24px;
  }

  .account-actions {
    grid-template-columns: 1fr;
  }
}

/* UI fix pass: remove inherited spacing leaks and tighten the Stitch layout */
body.is-customer-site .hero {
  min-height: 452px;
  margin-top: 42px;
}

body.is-customer-site .hero-copy {
  padding: 44px 48px;
}

body.is-customer-site .hero h1 {
  margin: 18px 0 20px;
  font-size: clamp(3rem, 4.7vw, 3.9rem);
  line-height: 1.08;
}

body.is-customer-site .hero p {
  margin-bottom: 26px;
  font-size: 1rem;
  line-height: 1.6;
}

body.is-customer-site .hero-media,
body.is-customer-site .hero-media img {
  min-height: 452px;
}

body.is-customer-site .value-bar {
  margin-top: 64px;
}

body.is-customer-site .section {
  padding: 82px 0;
}

body.is-customer-site .product-grid {
  align-items: stretch;
  gap: 28px;
}

body.is-customer-site .product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 372px;
  padding: 16px;
  overflow: hidden;
}

body.is-customer-site .product-media-button {
  width: 100%;
  margin: 0 !important;
  aspect-ratio: 1;
  border-radius: 0;
}

body.is-customer-site .product-card img {
  width: 78%;
  height: 78%;
}

body.is-customer-site .product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 16px 0 0;
}

body.is-customer-site .product-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  min-height: 48px;
}

body.is-customer-site .product-title {
  min-width: 0;
  font-size: 1.08rem;
  line-height: 1.22;
}

body.is-customer-site .product-title button {
  display: inline;
  text-align: left;
}

body.is-customer-site .product-card .badge {
  max-width: 92px;
  white-space: normal;
  text-align: right;
}

body.is-customer-site .product-desc {
  margin-top: 8px;
}

body.is-customer-site .product-meta {
  margin-top: auto;
  padding-top: 16px;
  padding-right: 58px;
}

body.is-customer-site .card-actions {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 !important;
  padding: 0;
}

body.is-customer-site .add-button {
  width: 48px;
  height: 48px;
}

body.is-customer-site .cart-drawer,
body.is-customer-site .account-drawer {
  border-top-left-radius: 28px;
  border-bottom-left-radius: 28px;
}

body.is-customer-site .drawer-header {
  padding: 24px 28px;
  border-bottom-color: rgba(218, 194, 178, 0.55);
}

body.is-customer-site .cart-body,
body.is-customer-site .account-body {
  padding: 20px 28px 28px;
}

body.is-customer-site .auth-card,
body.is-customer-site .account-profile-card,
body.is-customer-site .account-order-card,
body.is-customer-site .cart-item,
body.is-customer-site .cart-summary,
body.is-customer-site .checkout-form {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

body.is-customer-site .success-modal {
  padding: 48px 36px 36px;
}

@media (max-width: 1080px) {
  body.is-customer-site .hero {
    min-height: 0;
  }

  body.is-customer-site .product-grid {
    gap: 24px;
  }
}

@media (max-width: 680px) {
  body.is-customer-site .site-header {
    row-gap: 6px;
  }

  body.is-customer-site .top-nav {
    gap: 22px;
    padding-bottom: 2px;
  }

  body.is-customer-site .nav-link {
    min-height: 42px;
    font-size: 0.94rem;
  }

  body.is-customer-site .hero {
    margin-top: 22px;
  }

  body.is-customer-site .hero-copy {
    padding: 30px 22px 26px;
  }

  body.is-customer-site .hero h1 {
    font-size: 2.45rem;
  }

  body.is-customer-site .hero-media,
  body.is-customer-site .hero-media img {
    min-height: 270px;
  }

  body.is-customer-site .value-bar {
    margin-top: 44px;
  }

  body.is-customer-site .section {
    padding: 62px 0;
  }

  body.is-customer-site .product-card {
    min-height: 0;
  }

  body.is-customer-site .cart-drawer,
  body.is-customer-site .account-drawer {
    border-radius: 0;
  }
}

/* Mobile recovery pass */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

@media (max-width: 760px) {
  body.is-customer-site {
    overflow-x: clip;
  }

  body.is-customer-site .site-header {
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: center;
    min-height: 0;
    column-gap: 8px;
    row-gap: 8px;
    padding: 10px 14px 12px;
  }

  body.is-customer-site .brand {
    order: 1;
    width: 118px;
    max-width: 118px;
    min-width: 0;
    min-height: 48px;
    overflow: hidden;
  }

  body.is-customer-site .brand-logo {
    width: 118px;
    min-width: 118px;
  }

  body.is-customer-site .brand-name {
    overflow: hidden;
    font-size: 1.28rem;
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.is-customer-site .header-actions {
    display: grid;
    grid-column: 2;
    grid-template-columns: minmax(0, 1fr) 36px 36px;
    order: 1;
    width: 100%;
    gap: 6px;
    justify-self: stretch;
    align-items: center;
  }

  body.is-customer-site .nav-search {
    width: 100%;
    min-width: 0;
    min-height: 40px;
    padding: 0 10px;
  }

  body.is-customer-site .icon-button {
    width: 36px;
    height: 36px;
  }

  body.is-customer-site #cartCount {
    top: -4px;
    right: -4px;
  }

  body.is-customer-site .top-nav {
    display: none;
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    width: 100%;
    gap: 8px;
    padding: 2px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  body.is-customer-site .top-nav::-webkit-scrollbar {
    display: none;
  }

  body.is-customer-site .nav-link {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    background: #f1ede7;
    font-size: 0.78rem;
    line-height: 1;
    white-space: nowrap;
  }

  body.is-customer-site .nav-link:hover,
  body.is-customer-site .nav-link.is-active {
    background: #8f4d00;
    color: #ffffff;
  }

  body.is-customer-site .hero {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    min-height: 0;
    margin: 16px auto 0;
    border-radius: 26px;
  }

  body.is-customer-site .hero-copy {
    padding: 22px 16px 18px;
  }

  body.is-customer-site .eyebrow {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  body.is-customer-site .hero h1 {
    max-width: none;
    margin: 12px 0 10px;
    font-size: clamp(1.95rem, 9vw, 2.35rem);
    line-height: 1.08;
  }

  body.is-customer-site .hero p {
    max-width: none;
    margin: 0 0 16px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  body.is-customer-site .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  body.is-customer-site .hero-actions .primary-button {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
  }

  body.is-customer-site .hero-trust span {
    justify-content: center;
    width: 100%;
  }

  body.is-customer-site .hero-media,
  body.is-customer-site .hero-media img {
    min-height: 168px;
    max-height: 184px;
  }

  body.is-customer-site .hero-media img {
    object-fit: cover;
    object-position: center;
  }

  body.is-customer-site .value-bar {
    left: auto;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 34px 0 0;
    padding: 18px 16px;
    gap: 14px;
  }

  body.is-customer-site .value-bar article {
    grid-template-columns: 44px minmax(0, 1fr);
    max-width: none;
    gap: 12px;
  }

  body.is-customer-site .value-bar article + article {
    border-left: 0;
    padding-left: 0;
  }

  body.is-customer-site .mini-icon {
    width: 44px;
    height: 44px;
  }

  body.is-customer-site .value-bar h2 {
    font-size: 1rem;
  }

  body.is-customer-site .section,
  body.is-customer-site .product-detail-shell,
  body.is-customer-site .difference-section,
  body.is-customer-site .related-section {
    width: calc(100% - 24px);
    padding: 48px 0;
  }

  body.is-customer-site .shop-heading,
  body.is-customer-site .related-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  body.is-customer-site .section-heading h2,
  body.is-customer-site .promise-copy h2,
  body.is-customer-site .related-heading h2 {
    font-size: 1.82rem;
    line-height: 1.16;
  }

  body.is-customer-site .product-grid,
  body.is-customer-site .related-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.is-customer-site .product-card {
    min-height: 0;
    padding: 14px;
    border-radius: 24px;
  }

  body.is-customer-site .product-media-button {
    aspect-ratio: 1.42;
    padding: 14px;
    border-radius: 18px;
  }

  body.is-customer-site .product-card img {
    width: 66%;
    height: 66%;
  }

  body.is-customer-site .product-title-row {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    gap: 6px;
  }

  body.is-customer-site .product-title {
    font-size: 1.06rem;
  }

  body.is-customer-site .product-card .badge {
    justify-self: start;
    max-width: none;
    margin-left: 0;
    text-align: left;
  }

  body.is-customer-site .product-desc {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body.is-customer-site .product-meta {
    min-height: 42px;
    padding-top: 12px;
    padding-right: 56px;
  }

  body.is-customer-site .card-actions {
    right: 14px;
    bottom: 14px;
  }

  body.is-customer-site .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 18px;
    text-align: center;
  }

  body.is-customer-site .site-footer nav {
    justify-content: center;
    gap: 10px 16px;
  }

  body.is-customer-site .cart-drawer,
  body.is-customer-site .account-drawer {
    width: 100%;
    max-width: none;
    border-radius: 0;
  }

  body.is-customer-site .drawer-header {
    padding: 18px 16px;
  }

  body.is-customer-site .cart-body,
  body.is-customer-site .account-body {
    padding: 16px;
  }

  body.is-customer-site .cart-item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }

  body.is-customer-site .cart-item img {
    width: 64px;
  }

  body.is-customer-site .cart-item .quantity-stepper {
    grid-column: 2;
    width: max-content;
  }

  body.is-customer-site .auth-card,
  body.is-customer-site .account-profile-card,
  body.is-customer-site .account-order-card,
  body.is-customer-site .cart-item,
  body.is-customer-site .cart-summary,
  body.is-customer-site .checkout-form {
    border-radius: 24px;
  }

  body.is-customer-site .account-profile-card {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 18px;
  }

  body.is-customer-site .account-avatar {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  body.is-customer-site .account-actions {
    grid-template-columns: 1fr;
  }

  body.is-admin-site .site-header {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 12px 16px;
    gap: 10px;
  }

  body.is-admin-site .top-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  body.is-admin-site .admin-hero {
    padding: 32px 16px;
  }

  body.is-admin-site .admin-summary,
  body.is-admin-site .admin-shell {
    padding-right: 16px;
    padding-left: 16px;
  }

  body.is-admin-site .admin-product {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  body.is-admin-site .admin-product-image {
    grid-row: span 2;
  }

  body.is-admin-site .admin-product .admin-field,
  body.is-admin-site .admin-product .primary-button {
    grid-column: 1 / -1;
  }

  body.is-admin-site .orders-layout {
    grid-template-columns: 1fr;
  }
}

/* Pack separation and square product media */
body.is-customer-site .product-media-button {
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #f1ede7;
}

body.is-customer-site .product-card img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: transparent;
  object-fit: cover;
  filter: none;
  mix-blend-mode: normal;
}

.cart-line-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
}

.cart-line-meta strong {
  color: #1c1c18;
}

.pack-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f1ede7;
  color: #8f4d00;
  font-size: 0.78rem;
  font-weight: 900;
}

.account-order-items em {
  display: block;
  margin-top: 2px;
  color: #8f4d00;
  font-style: normal;
  font-weight: 800;
}

/* Mobile product rail and product-detail repair */
@media (max-width: 760px) {
  body.is-customer-site #products {
    overflow: visible;
  }

  body.is-customer-site .product-grid {
    display: grid;
    grid-auto-columns: minmax(258px, 82vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 16px;
    margin: 0 -12px;
    padding: 2px 12px 16px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-padding-inline: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  body.is-customer-site .product-grid::-webkit-scrollbar {
    display: none;
  }

  body.is-customer-site .product-card {
    width: 100%;
    scroll-snap-align: start;
  }

  body.is-customer-site .product-detail-shell {
    width: calc(100% - 24px);
    padding: 20px 0 48px;
  }

  body.is-customer-site .breadcrumb {
    width: 100%;
    margin: 0 0 14px;
    gap: 6px;
    font-size: 0.82rem;
  }

  body.is-customer-site .product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    min-width: 0;
  }

  body.is-customer-site .product-gallery,
  body.is-customer-site .product-buybox,
  body.is-customer-site .purchase-panel,
  body.is-customer-site .detail-title-block,
  body.is-customer-site .detail-copy,
  body.is-customer-site .product-accordions {
    min-width: 0;
  }

  body.is-customer-site .detail-image-wrap {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 24px;
    background: #f1ede7;
  }

  body.is-customer-site .detail-image-wrap img {
    width: 100%;
    height: 100%;
    padding: 18px;
    border-radius: 0;
    object-fit: contain;
    filter: none;
    mix-blend-mode: normal;
  }

  body.is-customer-site .detail-organic-pill {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  body.is-customer-site .gallery-thumbs {
    display: grid;
    grid-auto-columns: 76px;
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  body.is-customer-site .gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  body.is-customer-site .gallery-thumbs button {
    width: 76px;
    border-radius: 18px;
  }

  body.is-customer-site .gallery-thumbs img {
    border-radius: 14px;
    object-fit: contain;
    background: #f1ede7;
  }

  body.is-customer-site .product-buybox {
    padding-top: 0;
  }

  body.is-customer-site .product-buybox h1 {
    max-width: none;
    margin: 8px 0 8px;
    color: #1c1c18;
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  body.is-customer-site .detail-title-block {
    margin-bottom: 14px;
  }

  body.is-customer-site .detail-title-block p {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  body.is-customer-site .detail-price {
    flex-wrap: wrap;
    margin-bottom: 12px;
  }

  body.is-customer-site .detail-price strong {
    font-size: 1.72rem;
  }

  body.is-customer-site .detail-copy {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.58;
    overflow-wrap: anywhere;
  }

  body.is-customer-site .purchase-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 20px 0;
    padding: 16px;
    border-radius: 24px;
    overflow: visible;
  }

  body.is-customer-site .variant-picker > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.is-customer-site .variant-picker button {
    width: 100%;
    min-height: 48px;
    padding: 10px 14px;
    border-radius: 18px;
  }

  body.is-customer-site .variant-picker button strong,
  body.is-customer-site .variant-picker button span {
    overflow-wrap: anywhere;
  }

  body.is-customer-site .detail-stepper {
    width: 100%;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  body.is-customer-site .order-promises,
  body.is-customer-site .detail-facts {
    grid-template-columns: 1fr;
  }

  body.is-customer-site .order-promises span,
  body.is-customer-site .detail-facts div,
  body.is-customer-site .product-accordions details {
    border-radius: 20px;
  }

  body.is-customer-site .product-accordions summary {
    min-height: 52px;
    overflow-wrap: anywhere;
  }
}

/* Brand assets from supplied artwork */
.brand-logo {
  display: block;
  width: 166px;
  max-width: 100%;
  height: auto;
}

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

body.is-customer-site .brand {
  display: flex;
  align-items: center;
  width: max-content;
  max-width: 220px;
}

body.is-customer-site .brand-logo {
  width: 166px;
}

body.is-admin-site .brand {
  display: inline-flex;
  width: max-content;
  max-width: min(240px, 70vw);
  padding: 6px 14px;
  border: 1px solid rgba(240, 197, 90, 0.18);
  border-radius: 999px;
  background: rgba(255, 249, 237, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

body.is-admin-site .brand-logo {
  width: 150px;
}

body.is-admin-site .top-nav {
  display: none;
}

body.is-customer-site .hero {
  background:
    radial-gradient(circle at 78% 68%, rgba(255, 220, 194, 0.8), transparent 34%),
    linear-gradient(135deg, #f7f3ed, #fffaf2);
}

body.is-customer-site .hero-media {
  position: relative;
  min-height: 438px;
  overflow: hidden;
  background: transparent;
}

body.is-customer-site .hero-media .hero-graphic {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
  min-height: 0;
  max-height: none;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

body.is-customer-site .hero-media .hero-graphic-cart {
  top: 32px;
  right: 28px;
  width: min(88%, 560px);
  z-index: 2;
}

body.is-customer-site .hero-media .hero-graphic-sacks {
  left: 42px;
  bottom: 16px;
  width: min(58%, 350px);
  z-index: 3;
}

body.is-customer-site .hero-media .hero-graphic-mortar {
  right: 18px;
  bottom: -20px;
  width: min(40%, 230px);
  z-index: 4;
}

body.is-customer-site .hero-media .hero-graphic-vine {
  left: 0;
  top: 0;
  width: 86px;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  z-index: 1;
}

body.is-customer-site .hero-trust span::before {
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    8px 0 0 -4px currentColor,
    16px 0 0 -4px currentColor;
}

@media (max-width: 1080px) {
  body.is-customer-site .brand-logo {
    width: 150px;
  }

  body.is-customer-site .hero-media {
    min-height: 320px;
  }

  body.is-customer-site .hero-media .hero-graphic-cart {
    top: 24px;
    width: min(78%, 520px);
  }

  body.is-customer-site .hero-media .hero-graphic-sacks {
    width: min(48%, 320px);
  }

  body.is-customer-site .hero-media .hero-graphic-mortar {
    width: min(34%, 210px);
  }
}

@media (max-width: 760px) {
  body.is-customer-site .brand {
    width: 118px;
    max-width: 118px;
    overflow: hidden;
  }

  body.is-customer-site .brand-logo {
    width: 118px;
    min-width: 118px;
  }

  body.is-customer-site .hero {
    background: linear-gradient(135deg, #f7f3ed, #fffaf2);
  }

  body.is-customer-site .hero-media {
    min-height: 210px;
    max-height: 230px;
  }

  body.is-customer-site .hero-media .hero-graphic-cart {
    top: 16px;
    right: 10px;
    width: 82%;
  }

  body.is-customer-site .hero-media .hero-graphic-sacks {
    left: 22px;
    bottom: 0;
    width: 50%;
  }

  body.is-customer-site .hero-media .hero-graphic-mortar {
    right: 8px;
    bottom: -10px;
    width: 30%;
  }

  body.is-customer-site .hero-media .hero-graphic-vine {
    width: 52px;
  }
}

/* Final brand polish */
body.is-customer-site .footer-brand {
  display: flex;
  align-items: center;
  width: min(190px, 38vw);
  font-size: 0;
  line-height: 0;
}

body.is-customer-site .footer-logo {
  display: block;
  width: 100%;
  height: auto;
}

body.is-customer-site .hero-trust span::before {
  display: none;
  content: none;
}

@media (max-width: 760px) {
  body.is-customer-site .footer-brand {
    justify-content: center;
    width: 148px;
    margin: 0 auto;
  }
}
