:root {
  --ink: #152235;
  --ink-soft: #223149;
  --muted: #5f6978;
  --line: #e7e1d9;
  --paper: #ffffff;
  --wash: #f8f5f0;
  --warm: #9b6230;
  --warm-dark: #774820;
  --warm-soft: #f2e8db;
  --star: #c1843c;
  --shadow: 0 18px 45px rgba(21, 34, 53, .08);
  --shadow-soft: 0 10px 28px rgba(21, 34, 53, .07);
  --container: 1110px;
  --content-shell: 1180px;
  --hero-shell: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Outfit, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.cart-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--content-shell));
  margin-inline: auto;
}

.topbar .container,
.site-header .container,
main .container,
.site-footer .container {
  width: min(100% - 40px, var(--content-shell));
}

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

.topbar {
  height: 36px;
  background: #fbf8f2;
  border-bottom: 1px solid #efe9e1;
  color: #364254;
  font-size: 13.5px;
}

.topbar__inner,
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar__message,
.topbar nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar__inner {
  justify-content: center;
}

.topbar__message {
  gap: 8px;
  font-weight: 600;
  letter-spacing: .1px;
}

.topbar svg {
  width: 22px;
  height: 22px;
  stroke: var(--warm);
  fill: none;
  stroke-width: 1.6;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    height: 92px;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid #eee8df;
    box-shadow: 0 10px 25px rgba(21, 34, 53, .035);
    backdrop-filter: blur(14px);
  }

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
  }

.brand--logo {
  width: auto;
  max-width: none;
}

.site-header .brand--logo {
  width: auto;
  max-width: none;
}

.site-header .brand--logo .brand__mark {
  width: 282px;
  height: auto;
  display: block;
}

.site-header .brand--logo .brand__mark img {
  width: 100%;
  height: auto;
  transform: none;
}
  
.brand__mark {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
  }
  
.brand__mark img {
    width: 100%;
    height: 100%;
    display: block;
  }

.brand--logo .brand__mark {
  width: 100%;
  height: auto;
  display: block;
}

.brand--logo .brand__mark img {
  width: 100%;
  height: auto;
}
  
.brand strong {
      display: block;
    font-family: Fraunces, Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: .15px;
  }

.main-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.main-nav {
  margin-left: auto;
  gap: clamp(14px, 2.4vw, 32px);
  font-weight: 600;
  font-size: 14.5px;
}

.main-nav > a,
.main-nav__categories > summary {
  position: relative;
  padding: 10px 0;
}

.main-nav > a::after,
.main-nav__categories > summary::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.main-nav > a:hover::after,
.main-nav__categories:hover > summary::after,
.main-nav__categories[open] > summary::after {
  transform: scaleX(1);
}

.main-nav__categories {
  position: relative;
}

.main-nav__categories > summary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  cursor: pointer;
}

.main-nav__categories > summary::-webkit-details-marker {
  display: none;
}

.main-nav__categories > summary svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform .18s ease;
}

.main-nav__categories[open] > summary svg {
  transform: rotate(180deg);
}

.main-nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 35;
  width: min(860px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid #eadfce;
  background: rgba(255, 253, 249, .98);
  box-shadow: 0 18px 36px rgba(21, 34, 53, .12);
  transform: none;
}

.main-nav__all,
.main-nav__category-list a {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  padding: 0 8px;
  border: 1px solid transparent;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.main-nav__all {
  min-height: 42px;
  margin-top: 14px;
  border: 0;
  border-top: 1px solid #eadfce;
  background: transparent;
  font-weight: 800;
}

.main-nav__category-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.main-nav__category-group {
  min-width: 0;
}

.main-nav__category-group h3 {
  margin: 0 0 8px;
  padding: 0 8px 8px;
  border-bottom: 1px solid #e8ddcf;
  color: #8a5a2f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.main-nav__category-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.main-nav__category-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 34px;
  padding: 3px 7px;
  background: transparent;
}

.main-nav__category-list a:hover,
.main-nav__all:hover {
  border-color: transparent;
  background: #fbf7f0;
}

.main-nav__category-name {
  min-width: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  overflow: hidden;
}

.main-nav__category-name > span:last-child {
  min-width: 0;
  width: 100%;
  display: block;
  overflow: hidden;
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

.main-nav__category-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  border: 1px solid #eee5da;
  border-radius: 4px;
  background: #fbf7f0;
  color: #946237;
}

.main-nav__category-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.main-nav__category-list small {
  flex: 0 0 auto;
  min-width: 14px;
  color: #9b6230;
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.header-actions {
  gap: 14px;
}

.header-actions a,
.header-actions button,
.favorite {
  position: relative;
  color: var(--ink);
}

.header-actions svg,
.favorite svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}

.header-actions a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background-color .2s ease, color .2s ease;
}

.header-actions button {
  width: 38px;
  height: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}

.header-actions a:hover,
.header-actions button:hover {
  background: var(--wash);
  color: var(--warm-dark);
}

.site-search {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 30;
  padding: 14px 0 18px;
  border-top: 1px solid #f0e8dd;
  border-bottom: 1px solid #e8dfd4;
  background: rgba(255, 253, 249, .98);
  box-shadow: 0 18px 34px rgba(21, 34, 53, .09);
  backdrop-filter: blur(12px);
}

.site-search[hidden] {
  display: none;
}

.site-search__inner {
  display: grid;
  gap: 10px;
}

.site-search__form {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 10px 0 16px;
  border: 1px solid #ddd3c6;
  background: #fff;
}

.site-search__form svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}

.site-search__form input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 15px;
}

.site-search__form button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #faf3ed;
  color: #7a5940;
  cursor: pointer;
}

.site-search__results {
  border: 1px solid #ece4d9;
  background: #fff;
}

.site-search__results > p {
  margin: 0;
  padding: 15px 16px;
  color: #6b7380;
  font-size: 14px;
}

.site-search-result-list {
  display: grid;
}

.site-search-result {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid #f0e8df;
  transition: background-color .2s ease;
}

.site-search-result:hover {
  background: #fbf8f3;
}

.site-search-result img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: #fbfaf7;
}

.site-search-result span {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.site-search-result strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-search-result small {
  overflow: hidden;
  color: #7a8493;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-search-result b {
  color: var(--ink);
  font-size: 13px;
  white-space: nowrap;
}

.site-search-all {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-dark);
  font-size: 13px;
  font-weight: 800;
}

.cart-link span {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 42;
  background: rgba(17, 27, 40, .28);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 43;
  width: min(420px, calc(100vw - 24px));
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #fffdf9;
  border-left: 1px solid #e7ded2;
  box-shadow: -20px 0 48px rgba(21, 34, 53, .16);
  transform: translateX(100%);
  transition: transform .28s ease;
}

body.cart-open .cart-overlay {
  opacity: 1;
  pointer-events: auto;
}

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

.cart-drawer__handle {
  display: none;
}

.cart-drawer__header,
.cart-drawer__footer {
  padding: 22px 24px 18px;
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #efe6da;
  background: linear-gradient(180deg, #fffdf9 0%, #fff 100%);
}

.cart-drawer__header h2 {
  margin: 0;
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.02;
}

.cart-drawer__caption {
  margin: 6px 0 0;
  color: #7d8796;
  font-size: 13px;
}

.cart-drawer__caption strong {
  color: var(--ink);
  font-weight: 700;
}

.cart-drawer__close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #faf3ed;
  color: #9c836b;
  cursor: pointer;
}

.cart-drawer__close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 24px 18px;
}

.cart-empty {
  padding: 22px 18px;
  border: 1px dashed #dccdbc;
  background: linear-gradient(180deg, #fff, #fcf8f2);
  text-align: center;
}

.cart-empty strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.cart-empty p {
  margin: 0;
  color: #677182;
}

.cart-items {
  display: grid;
  gap: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid #ece4d9;
  background: transparent;
}

.cart-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
  border: 1px solid #eee5da;
  border-radius: 8px;
}

.cart-item__copy {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.cart-item__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
}

.cart-item__head strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 700;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cart-item__head b {
  font-size: 15px;
  white-space: nowrap;
}

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

.cart-qty-stepper {
  display: grid;
  grid-template-columns: 30px 38px 30px;
  align-items: center;
  min-height: 34px;
  overflow: hidden;
  border: 1px solid #dfd5c8;
  border-radius: 999px;
  background: #fff;
}

.cart-qty-stepper button {
  width: 30px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.cart-qty-input {
  width: 100%;
  height: 34px;
  padding: 0;
  border: 0;
  border-inline: 1px solid #eee5da;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  -moz-appearance: textfield;
}

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

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

.cart-inline {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid #e1d7ca;
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.cart-inline--link {
  min-height: 32px;
  padding: 0 8px;
  border: 0;
  background: none;
  color: #8a5a2f;
  font-size: 12px;
  font-weight: 800;
}

.cart-inline,
.cart-secondary,
.cart-primary {
  appearance: none;
  font: inherit;
}

.cart-drawer__footer {
  border-top: 1px solid #efe6da;
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.cart-drawer__summary {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.cart-drawer__note {
  margin: 0;
  padding-top: 2px;
  color: #677182;
  font-size: 12px;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-summary-row span {
  color: #677182;
  font-size: 15px;
}

.cart-summary-row strong {
  color: var(--ink);
  font-size: 15px;
}

.cart-summary-row--total span,
.cart-summary-row--total strong {
  font-size: 17px;
  font-weight: 800;
}

.cart-drawer__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cart-secondary,
.cart-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 14px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border-radius: 3px;
}

.cart-secondary {
  border: 1px solid #ddd5ca;
  background: #fff;
  color: var(--ink);
}

.cart-primary {
  border: 0;
  background: var(--ink);
  color: #fff;
}

.nav-toggle,
.menu-button {
  display: none;
}

.mobile-nav__head,
.mobile-nav__backdrop {
  display: none;
}

.hero {
  position: relative;
  padding: 16px 0 8px;
  background:
    radial-gradient(circle at 16% 22%, rgba(208, 192, 171, .12), transparent 24%),
    linear-gradient(180deg, #fbf8f3 0%, #f3ece2 100%);
}

.hero__grid {
  width: min(100% - 40px, var(--content-shell));
  margin-inline: auto;
}

.hero__panel {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 398px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid #e5ddd2;
  background:
    linear-gradient(90deg, rgba(250, 247, 242, .76) 0%, rgba(250, 247, 242, .72) 18%, rgba(250, 247, 242, .58) 29%, rgba(250, 247, 242, .24) 39%, rgba(250, 247, 242, .05) 47%, rgba(250, 247, 242, 0) 54%),
    url("../img/hero-iznik-banner-wide.png?v=20260610-1") 62% center / cover no-repeat;
  box-shadow:
    0 0 4px rgba(56, 43, 30, .21),
    0 0 15px rgba(56, 43, 30, .2);
}

.hero__panel::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(216, 205, 191, .52);
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0;
  padding: 24px 0 24px 44px;
}

.hero__eyebrow {
  margin: 0 0 14px;
  color: #a97638;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.hero h1 {
    max-width: 410px;
    margin: 0;
    color: #16305c;
    font-family: Fraunces, Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3.3vw, 46px);
    font-weight: 500;
    line-height: 1.08;
  }

.hero__headline-break {
  display: block;
}

.hero__copy > p:not(.hero__eyebrow) {
  max-width: 360px;
  margin: 18px 0 24px;
  color: #42536d;
  font-size: 14px;
  line-height: 1.58;
}

.hero__copy-break {
  display: inline;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.collection h2,
.section-heading h2 {
    font-family: Fraunces, Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.08;
  }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 46px;
  padding: 0 26px;
  border: 1px solid transparent;
  color: #fff;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button__icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.button--dark {
  background: var(--ink);
}

.button--warm {
  background: var(--warm-dark);
}

.button--ghost {
  background: rgba(255, 255, 255, .55);
  border-color: #d9cfc2;
  color: var(--ink);
}

.categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  padding: 24px 0 42px;
}

.category {
  min-width: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.category img {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 7px 22px rgba(21, 34, 53, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.category:hover img {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(21, 34, 53, .10);
}

.products {
  padding: 6px 0 32px;
}

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

.section-heading h2 {
  margin: 0;
  font-size: 28px;
}

.section-heading div span {
  display: block;
  width: 138px;
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--warm) 0 52%, #d9d2c7 52% 100%);
}

.section-heading > a {
  color: var(--warm-dark);
  font-weight: 600;
}

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

.product-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 1px solid #e8e3dc;
  background: #fff;
  box-shadow: 0 8px 22px rgba(21, 34, 53, .045);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.product-card:hover {
  border-color: #d6c9b9;
  box-shadow: 0 16px 34px rgba(21, 34, 53, .09);
  transform: translateY(-3px);
}

.product-card__media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / .88;
  overflow: hidden;
  margin: 10px 10px 0;
  padding: 10px;
  background: #fbfaf7;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .35s ease;
}

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

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  min-width: 42px;
  padding: 5px 8px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.badge--sale {
  background: #b45b37;
}

.badge--new {
  background: var(--warm-soft);
  color: var(--warm-dark);
}

.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 17px;
}

.product-category {
  margin-bottom: 5px;
  color: #8a5a2f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15px;
  text-transform: none;
}

.product-card h3 {
  min-height: 40px;
  margin: 0 0 12px;
  color: #142033;
  font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.price-line {
  display: grid;
  gap: 2px;
  margin-top: auto;
}

.price-line del {
  color: #9aa1ab;
  font-size: 12px;
  line-height: 1.1;
}

.price-line strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.14;
}

.shipping-note {
  margin: 8px 0 12px;
  color: #4b7f50;
  font-size: 12px;
  font-weight: 800;
}

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

.card-view,
.card-add {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.card-view {
  border: 1px solid #d8dfe7;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.card-view:hover {
  border-color: #c4ceda;
  background: #f7fafc;
}

.card-add {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
}

.card-add:hover {
  border-color: var(--warm-dark);
  background: var(--warm-dark);
}

.favorite {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 30px;
  height: 30px;
  padding: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .78);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background-color .2s ease, color .2s ease;
}

.favorite:hover {
  background: var(--ink);
  color: #fff;
}

.favorite svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.quick-add {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 40px;
  border: 0;
  background: rgba(21, 34, 53, .94);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
}

.quick-add:hover {
  background: var(--warm-dark);
}

.product-card:hover .quick-add,
.product-card:focus-within .quick-add {
  opacity: 1;
  transform: translateY(0);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
  margin-bottom: 22px;
  padding: 26px 42px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fffdfb);
}

.feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 16px;
}

.feature svg {
  width: 42px;
  height: 42px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.5;
}

.feature strong,
.feature span {
  display: block;
}

.feature strong {
  margin-bottom: 3px;
}

.feature span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.collection {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  height: 112px;
  min-height: 0;
  margin: 30px 0 0;
  border-radius: 0;
  background: transparent;
}

.collection__image {
  position: relative;
  height: 100%;
  min-height: 0;
  opacity: .9;
  isolation: isolate;
  overflow: hidden;
  background-color: transparent;
  background-image: url("../img/bar.png?v=20260522-5");
  background-repeat: repeat-x;
  background-position: center 46%;
  background-size: auto 198%;
}

.collection__image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: url("../img/bar.png?v=20260522-5");
  background-repeat: repeat-x;
  background-position: calc(50% + 210px) 46%;
  background-size: auto 198%;
}

.atelier-note {
  margin-top: 30px;
}

.atelier-note__inner {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: 30px 36px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fbfaf7 0%, #f5efe6 100%);
  box-shadow: var(--shadow-soft);
}

.atelier-note__inner::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -14px;
  bottom: 10px;
  width: min(45%, 540px);
  opacity: .22;
  pointer-events: none;
  background-image: url("../img/collection-strip-motif-hq-v2.png?v=20260522-7");
  background-repeat: no-repeat;
  background-position: center 50%;
  background-size: auto 196%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .2) 18%, rgba(0, 0, 0, .88) 52%, rgba(0, 0, 0, 1) 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .2) 18%, rgba(0, 0, 0, .88) 52%, rgba(0, 0, 0, 1) 100%);
  z-index: 0;
}

.atelier-note__copy,
.atelier-note__meta {
  position: relative;
  z-index: 1;
}

.atelier-note .eyebrow {
  margin: 0 0 10px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.atelier-note h2 {
    max-width: 760px;
    margin: 0;
    color: #162f5b;
    font-family: Fraunces, Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 2.6vw, 38px);
    font-weight: 500;
    line-height: 1.12;
  }

.atelier-note__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.atelier-note__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(155, 98, 48, .18);
  background: rgba(255, 255, 255, .66);
  color: #465367;
  font-size: 13px;
  font-weight: 600;
}

.section-heading--compact {
  margin-bottom: 18px;
}

.section-kicker {
  margin: 0 0 7px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.collection-highlights {
  margin-top: 22px;
}

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

.collection-tile {
  position: relative;
  min-height: 148px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  align-items: stretch;
  border: 1px solid rgba(20, 32, 51, .08);
  box-shadow: 0 10px 22px rgba(21, 34, 53, .05);
  isolation: isolate;
}

.collection-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 34px 34px, 34px 34px;
}

.collection-tile > * {
  position: relative;
  z-index: 1;
}

.collection-tile--indigo,
.collection-tile--cobalt {
  background: linear-gradient(135deg, #0f2e60 0%, #14396f 100%);
  color: #fff;
}

.collection-tile--sand {
  background: linear-gradient(135deg, #f3e5d5 0%, #ead3be 100%);
  color: #162033;
}

.collection-tile--tableau {
  min-height: 0;
  display: block;
  aspect-ratio: 1377 / 675;
  background: #102e59;
  color: #fff;
}

.collection-tile__copy {
  padding: 16px 16px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.collection-tile__copy h3 {
  max-width: 152px;
  margin: 0 0 10px;
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 1.65vw, 30px);
  font-weight: 500;
  line-height: 1.06;
}

.collection-tile__link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, .04);
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.collection-tile__link:hover {
  transform: translateY(-1px);
}

.collection-tile--indigo .collection-tile__link:hover,
.collection-tile--cobalt .collection-tile__link:hover {
  background: rgba(255, 255, 255, .11);
}

.collection-tile--sand .collection-tile__link {
  background: rgba(255, 255, 255, .48);
}

.collection-tile--sand .collection-tile__link:hover {
  background: rgba(255, 255, 255, .72);
}

.collection-tile__art {
  position: relative;
}

.collection-tile__circle {
  position: absolute;
  top: 50%;
  right: -28px;
  width: 138px;
  height: 138px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(15, 28, 52, .1);
  background: #fff;
}

.collection-tile--sand .collection-tile__circle {
  border-color: rgba(109, 78, 46, .28);
}

.collection-tile__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-tile--indigo .collection-tile__circle img {
  object-position: 50% 50%;
}

.collection-tile--sand .collection-tile__circle img {
  object-position: center center;
}

.collection-tile--cobalt .collection-tile__circle img {
  object-position: 56% center;
}

.collection-tile--tableau::before {
  display: none;
}

.collection-tile__image-link {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.collection-tile__image-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: transform .25s ease;
}

.collection-tile__image-link:hover img {
  transform: scale(1.015);
}

.product-detail-page main {
  padding-top: 22px;
}

.product-detail {
  padding-bottom: 14px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 12px;
  row-gap: 6px;
  min-height: 24px;
  margin-bottom: 24px;
  color: #6f7884;
  line-height: 1;
}

.breadcrumbs > * {
  display: flex;
  align-items: center;
  align-self: center;
  min-height: 24px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 24px;
}

.breadcrumbs a {
  color: inherit;
  transform: translateY(2px);
}

.breadcrumbs > span:last-child {
  transform: translateY(2px);
}

.breadcrumbs span[aria-hidden="true"] {
  color: #b6bcca;
  font-size: 11px;
  line-height: 24px;
  transform: none;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(380px, 1.08fr);
  gap: 22px;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 8px;
  width: 100%;
  max-width: none;
}

.product-gallery__stage {
  position: relative;
  overflow: hidden;
  border: 1px solid #e9e2d8;
  background: linear-gradient(180deg, #fcfaf7 0%, #f3eee7 100%);
  box-shadow: 0 14px 28px rgba(21, 34, 53, .05);
  cursor: zoom-in;
}

.product-gallery__stage img {
  width: 100%;
  aspect-ratio: 1 / .78;
  object-fit: cover;
  transition: transform .16s ease;
  transform-origin: center center;
}

.product-gallery__video {
  width: 100%;
  aspect-ratio: 1 / .78;
  display: block;
  object-fit: cover;
  background: #f3eee7;
}

.product-gallery__stage img[hidden],
.product-gallery__video[hidden] {
  display: none;
}

.product-gallery__stage.is-zooming img {
  transform: scale(1.85);
}

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

.product-gallery__thumbs button {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e1d7ca;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.product-gallery__thumbs button:hover,
.product-gallery__thumbs button.is-active {
  border-color: #b98d61;
  box-shadow: 0 10px 18px rgba(185, 141, 97, .14);
  transform: translateY(-1px);
}

.product-gallery__thumbs img {
  width: 100%;
  aspect-ratio: 1 / .78;
  object-fit: cover;
}

.product-gallery__play {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(20, 32, 51, .8);
  color: #fff;
  pointer-events: none;
}

.product-gallery__play svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.product-gallery-lightbox[hidden] {
  display: none;
}

.product-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
}

body.product-lightbox-open {
  overflow: hidden;
}

.product-gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 8%, rgba(185, 141, 97, .18), transparent 34%),
    rgba(11, 18, 29, .86);
  backdrop-filter: blur(10px);
}

.product-gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  width: min(calc(100vw - 36px), 1120px);
  height: min(88dvh, 820px);
  max-height: calc(100dvh - 36px);
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(232, 223, 211, .78);
  border-radius: 8px;
  background: rgba(253, 250, 246, .98);
  box-shadow: 0 34px 80px rgba(3, 8, 16, .36);
}

.product-gallery-lightbox__topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 44px;
  padding-right: 58px;
}

.product-gallery-lightbox__title {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.product-gallery-lightbox__title strong {
  overflow: hidden;
  color: var(--ink);
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2.2vw, 25px);
  font-weight: 500;
  line-height: 1.16;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-gallery-lightbox__counter {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #e2d8cc;
  border-radius: 999px;
  background: #fff;
  color: #6f7786;
  font-size: 12px;
  font-weight: 800;
}

.product-gallery-lightbox__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: clamp(14px, 2vw, 24px);
  border: 1px solid #e7ddd0;
  border-radius: 6px;
  background: #fff;
}

.product-gallery-lightbox__stage > img,
.product-gallery-lightbox__stage > .product-gallery-lightbox__video {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.product-gallery-lightbox__stage > [hidden] {
  display: none;
}

.product-gallery-lightbox__close,
.product-gallery-lightbox__nav {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(221, 210, 196, .9);
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.product-gallery-lightbox__close:hover,
.product-gallery-lightbox__close:focus-visible {
  border-color: #b98d61;
  background: #fff;
  box-shadow: 0 12px 24px rgba(21, 34, 53, .16);
  transform: translateY(-1px);
}

.product-gallery-lightbox__nav:hover,
.product-gallery-lightbox__nav:focus-visible {
  border-color: #b98d61;
  background: #fff;
  box-shadow: 0 12px 24px rgba(21, 34, 53, .16);
  transform: translateY(calc(-50% - 1px));
}

.product-gallery-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
}

.product-gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  background: rgba(255, 255, 255, .9);
  transform: translateY(-50%);
}

.product-gallery-lightbox__nav--prev {
  left: 30px;
}

.product-gallery-lightbox__nav--next {
  right: 30px;
}

.product-gallery-lightbox__close svg,
.product-gallery-lightbox__nav svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.product-gallery-lightbox__thumbs {
  min-width: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.product-gallery-lightbox__thumbs button {
  position: relative;
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  padding: 5px;
  overflow: hidden;
  border: 1px solid #ddd2c4;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.product-gallery-lightbox__thumbs button.is-active {
  border-color: #b98d61;
  box-shadow: inset 0 0 0 1px rgba(185, 141, 97, .35), 0 8px 18px rgba(185, 141, 97, .12);
}

.product-gallery-lightbox__thumbs button:hover {
  border-color: #b98d61;
  transform: translateY(-1px);
}

.product-gallery-lightbox__thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

@media (max-width: 760px) {
  .order-result-hero,
  .order-result-card {
    padding: 20px;
  }

  .order-result-facts div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .product-gallery-lightbox__dialog {
    grid-template-columns: 1fr;
    gap: 12px;
    width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
    max-height: calc(100dvh - 16px);
    padding: 12px;
  }

  .product-gallery-lightbox__topbar {
    min-height: 42px;
    padding-right: 50px;
  }

  .product-gallery-lightbox__title strong {
    font-size: 18px;
  }

  .product-gallery-lightbox__nav {
    width: 42px;
    height: 42px;
  }

  .product-gallery-lightbox__nav--prev {
    left: 16px;
  }

  .product-gallery-lightbox__nav--next {
    right: 16px;
  }

  .product-gallery-lightbox__close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .product-gallery-lightbox__stage {
    padding: 10px;
  }

  .product-gallery-lightbox__thumbs {
    gap: 8px;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .product-gallery-lightbox__thumbs button {
    flex-basis: 68px;
    width: 68px;
    height: 68px;
  }
}

.product-summary {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 15px;
  padding: 20px 20px 22px;
  border: 1px solid #ece4d9;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, #fcfaf7 100%);
  box-shadow: 0 8px 20px rgba(21, 34, 53, .04);
  justify-self: stretch;
}

.product-summary__head {
  display: grid;
  gap: 8px;
}

.product-summary h1 {
  margin: 0;
  color: #142033;
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 1.55vw, 30px);
  font-weight: 500;
  line-height: 1.12;
}

.product-summary p {
  margin: 0;
  color: #596273;
  font-size: 14px;
  line-height: 1.6;
}

.product-summary__price {
  display: grid;
  gap: 3px;
}

.product-summary__price del {
  color: #98a0aa;
  font-size: 14px;
}

.product-summary__price strong {
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.product-summary__price span {
  color: #9b6230;
  font-size: 13px;
  font-weight: 800;
}

.product-summary__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-summary__chips span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid #e3dbcf;
  background: rgba(255, 255, 255, .88);
  color: #475264;
  font-size: 12px;
  font-weight: 700;
}

.product-summary__options {
  display: grid;
  gap: 18px;
}

.detail-choice {
  display: grid;
  gap: 10px;
}

.detail-choice > span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.detail-choice__group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-choice__group button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid #ddd3c6;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.detail-choice__group button.is-active,
.detail-choice__group button:hover {
  border-color: #9b6230;
  background: #faf4ed;
  color: #7f4c24;
}

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

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

.detail-add {
  min-height: 50px;
  font-size: 14px;
}

.detail-buy {
  min-height: 50px;
  font-size: 14px;
}

.product-summary__support {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid #dfe8df;
  background: #f8fcf8;
  color: #226845;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.product-summary__support:hover {
  transform: translateY(-1px);
  border-color: #bdd7c4;
  background: #f0faf2;
}

.product-summary__support svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.product-summary__support-mark {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .08);
}

.product-summary__support > span:last-child {
  line-height: 1.2;
}

.product-summary__support span {
  text-align: left;
}

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

.product-service {
  min-height: 52px;
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid #ece3d7;
  background: rgba(255, 255, 255, .82);
}

.product-service svg {
  width: 18px;
  height: 18px;
  stroke: #9b6230;
  fill: none;
  stroke-width: 1.6;
}

.product-service span {
  color: #4d5969;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.3;
}

.product-summary__note {
  padding: 16px 18px;
  border: 1px solid #efe5d8;
  background: #fbf6ef;
}

.product-summary__note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 14px;
}

.product-summary__note p {
  font-size: 13px;
  line-height: 1.65;
}

.product-description {
  margin-top: 12px;
}

.product-description__inner {
  padding: 30px 34px;
  border: 1px solid #e7dfd4;
  background: linear-gradient(180deg, #fff 0%, #fcfaf7 100%);
}

.product-description h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

.product-description p {
  max-width: 900px;
  margin: 0;
  color: #566170;
  font-size: 15px;
  line-height: 1.85;
}

.product-description p + p {
  margin-top: 14px;
}

.checkout-page main {
  padding-top: 22px;
}

.checkout {
  padding-bottom: 26px;
}

.checkout__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, .84fr);
  gap: 22px;
  align-items: start;
}

.checkout__main {
  display: grid;
  gap: 18px;
}

.checkout-panel,
.checkout-summary {
  border: 1px solid #e7dfd4;
  background: linear-gradient(180deg, #fff 0%, #fcfaf7 100%);
  box-shadow: 0 12px 26px rgba(21, 34, 53, .05);
}

.checkout-panel {
  padding: 24px 24px 22px;
}

.checkout-panel__head,
.checkout-summary__head {
  display: grid;
  gap: 6px;
}

.checkout-panel__head {
  margin-bottom: 18px;
}

.checkout-panel h1,
.checkout-panel h2,
.checkout-summary h2 {
  margin: 0;
  color: var(--ink);
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

.checkout-panel h1,
.checkout-panel h2 {
  font-size: clamp(28px, 2vw, 34px);
}

.checkout-summary h2 {
  font-size: 31px;
}

.checkout-panel p,
.checkout-summary__head span,
.checkout-consent__head p {
  margin: 0;
  color: #697382;
  font-size: 14px;
}

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

.checkout-field {
  display: grid;
  gap: 8px;
}

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

.checkout-field span {
  color: #536072;
  font-size: 13px;
  font-weight: 700;
}

.checkout-field input,
.checkout-field select,
.checkout-field textarea,
.checkout-coupon__form input {
  width: 100%;
  border: 1px solid #ddd3c6;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.checkout-field input,
.checkout-field select {
  min-height: 48px;
  padding: 0 14px;
}

.checkout-field textarea {
  min-height: 116px;
  padding: 14px;
  resize: vertical;
}

.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus,
.checkout-coupon__form input:focus {
  border-color: #c5a280;
  box-shadow: inset 0 0 0 1px #c5a280;
}

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

.payment-option {
  position: relative;
  display: grid;
  grid-template-columns: 20px 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 16px 18px;
  border: 1px solid #e2d8cc;
  background: #fff;
  cursor: pointer;
}

.payment-option input {
  margin: 0;
  accent-color: var(--ink);
}

.payment-option__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #e5ddd2;
  background: #faf6f0;
  color: #9b6230;
}

.payment-option__mark svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}

.payment-option__copy {
  display: grid;
  gap: 4px;
}

.payment-option__copy strong {
  color: var(--ink);
  font-size: 15px;
}

.payment-option__copy small {
  color: #697382;
  font-size: 13px;
  line-height: 1.45;
}

.bank-transfer-info {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #e5ddd2;
  background: #fffdfa;
}

.bank-transfer-info[hidden] {
  display: none;
}

.bank-transfer-info__head {
  display: grid;
  gap: 4px;
}

.bank-transfer-info__head strong {
  color: var(--ink);
  font-size: 16px;
}

.bank-transfer-info__head p {
  margin: 0;
  color: #697382;
  font-size: 13px;
}

.bank-transfer-info__rows {
  display: grid;
  gap: 10px;
}

.bank-transfer-info__row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 10px;
  border: 1px solid #ece3d7;
  background: #fff;
}

.bank-transfer-info__row span {
  color: #536072;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.bank-transfer-info__row code {
  min-width: 0;
  color: var(--ink);
  font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.bank-transfer-info__row button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #ddd3c6;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.checkout-summary {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 16px;
  padding: 22px 22px 24px;
}

.checkout-summary__head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.checkout-summary__head span {
  min-height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #eadfce;
  background: #faf6ef;
  color: #9b6230;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.checkout-coupon {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid #ece3d7;
  background: rgba(255, 255, 255, .88);
}

.checkout-coupon__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.checkout-coupon__head strong {
  color: var(--ink);
  font-size: 15px;
}

.checkout-coupon__head small {
  color: #8b93a1;
  font-size: 12px;
}

.checkout-coupon__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 98px;
  gap: 10px;
}

.checkout-coupon__form input {
  min-height: 44px;
  padding: 0 14px;
}

.checkout-coupon__form button {
  min-height: 44px;
  border: 1px solid #ddd3c6;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.checkout-summary__items {
  display: grid;
  gap: 14px;
}

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

.checkout-item img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 1px solid #e5ddd1;
  background: #f8f3ed;
}

.checkout-item__copy {
  display: grid;
  gap: 4px;
}

.checkout-item__copy strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.checkout-item__copy span {
  color: #818a99;
  font-size: 13px;
}

.checkout-item b {
  color: var(--ink);
  font-size: 15px;
  white-space: nowrap;
}

.checkout-summary__rows {
  display: grid;
  gap: 10px;
  padding-top: 4px;
  border-top: 1px solid #ece3d7;
}

.checkout-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.checkout-summary__row span {
  color: #667081;
  font-size: 15px;
}

.checkout-summary__row strong {
  color: var(--ink);
  font-size: 15px;
}

.checkout-summary__row--total {
  padding-top: 10px;
  border-top: 1px solid #ece3d7;
}

.checkout-summary__row--total span,
.checkout-summary__row--total strong {
  font-size: 19px;
  font-weight: 800;
}

.checkout-consent {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid #ece3d7;
  background: #fffdfa;
}

.checkout-consent__head strong {
  color: var(--ink);
  font-size: 18px;
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.checkout-consent__link {
  width: fit-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid #e2d8cb;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.checkout-consent__check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 14px;
  border: 1px solid #ece3d7;
  background: #fff;
}

.checkout-consent__check input {
  margin: 3px 0 0;
  accent-color: var(--ink);
}

.checkout-consent__check span {
  color: #4f5b6b;
  font-size: 13px;
  line-height: 1.5;
}

.checkout-submit {
  min-height: 54px;
  width: 100%;
  justify-content: center;
}

.paytr-checkout {
  max-width: 980px;
}

.paytr-panel {
  padding-bottom: 26px;
}

.paytr-frame-wrap {
  overflow: hidden;
  border: 1px solid #e4dbcf;
  background: #fff;
}

.paytr-frame-wrap iframe {
  display: block;
  width: 100%;
  min-height: 680px;
  border: 0;
}

.paytr-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.order-result {
  display: grid;
  gap: 18px;
}

.order-result-hero {
  display: grid;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  border: 1px solid #e7dfd4;
  background: #fffdf9;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(21, 34, 53, .05);
}

.order-result-hero span,
.order-result-card__head span {
  color: #c99a62;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.order-result-hero h1 {
  margin: 8px 0 0;
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.3vw, 34px);
  line-height: 1.12;
  font-weight: 500;
}

.order-result-hero p {
  max-width: 680px;
  margin: 9px 0 0;
  color: #627085;
  font-size: 15px;
  line-height: 1.6;
}

.order-result__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .42fr);
  gap: 18px;
  align-items: start;
}

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

.order-result-card {
  display: grid;
  gap: 15px;
  padding: 20px;
  border: 1px solid #e7dfd4;
  background: #fff;
  box-shadow: none;
}

.order-result-card--bank {
  border-color: #e5dacb;
  background: #fffdf9;
}

.order-result-card__head {
  display: grid;
  gap: 7px;
}

.order-result-card__head h2 {
  margin: 0;
  color: var(--ink);
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 500;
}

.order-result-card__head p {
  margin: 0;
  color: #627085;
  font-size: 14px;
  line-height: 1.6;
}

.bank-transfer-info--result {
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.order-result-whatsapp {
  justify-content: center;
  min-height: 48px;
  background: #1f8f57;
  border-color: #1f8f57;
}

.order-result-whatsapp:hover {
  background: #187848;
  border-color: #187848;
}

.order-result-whatsapp svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.order-result-items {
  display: grid;
  border-top: 1px solid #eadfce;
}

.order-result-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #eee7dc;
}

.order-result-item strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.order-result-item span {
  display: block;
  margin-top: 5px;
  color: #697382;
  font-size: 12px;
}

.order-result-item b {
  color: var(--ink);
  font-size: 15px;
  white-space: nowrap;
}

.order-result-summary {
  position: sticky;
  top: 116px;
}

.order-result-facts {
  display: grid;
  gap: 0;
  margin: 0;
}

.order-result-facts div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #eee7dc;
}

.order-result-facts dt {
  color: #667085;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.order-result-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.order-result-actions {
  display: grid;
  gap: 10px;
}

.info-page main {
  padding-top: 22px;
}

.content-page {
  padding-bottom: 28px;
}

.content-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .52fr);
  gap: 22px;
  align-items: start;
}

.content-page__main {
  display: grid;
  gap: 18px;
}

.content-page--single .content-page__main {
  width: min(100%, 900px);
  margin: 0 auto;
}

.content-page__head,
.content-card,
.content-aside,
.tracking-panel {
  border: 1px solid #e7dfd4;
  background: linear-gradient(180deg, #fff 0%, #fcfaf7 100%);
  box-shadow: 0 12px 24px rgba(21, 34, 53, .04);
}

.content-page__head,
.content-card,
.content-aside,
.tracking-panel {
  padding: 24px;
}

.content-page__head {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(252, 250, 247, .98) 100%);
}

.content-page__head::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .95) 48%, rgba(255, 255, 255, .7) 68%, rgba(255, 255, 255, .32) 100%),
    url("../img/collection-strip-motif-hq-v2.png") right center / 500px auto no-repeat;
  opacity: .34;
  pointer-events: none;
  z-index: -1;
}

.content-page__head::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(222, 211, 197, .72);
  pointer-events: none;
  z-index: -1;
}

.content-page__eyebrow {
  margin: 0 0 10px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.content-page__head h1,
.content-card h2,
.content-aside h3,
.tracking-panel h2 {
  margin: 0;
  color: var(--ink);
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

.content-page__head h1 {
  font-size: clamp(34px, 2.7vw, 46px);
}

.content-card h2,
.tracking-panel h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.content-aside h3 {
  font-size: 21px;
  margin-bottom: 14px;
}

.content-page__head p,
.content-card p,
.content-card li,
.content-aside p,
.content-aside li,
.tracking-panel p {
  color: #586374;
  font-size: 15px;
  line-height: 1.8;
}

.content-page__head > * {
  position: relative;
  z-index: 1;
}

.content-page__head p {
  max-width: 640px;
}

.content-page__head p {
  max-width: 760px;
  margin: 10px 0 0;
}

.content-card p,
.content-aside p,
.tracking-panel p {
  margin: 0;
}

.content-card p + p,
.content-card ul,
.content-card ol,
.tracking-panel form,
.tracking-panel .tracking-result {
  margin-top: 14px;
}

.content-card ul,
.content-card ol,
.content-aside ul {
  padding-left: 20px;
}

.content-card li + li,
.content-aside li + li {
  margin-top: 6px;
}

.content-card strong,
.content-aside strong {
  color: var(--ink);
}

.content-document {
  display: grid;
  gap: 18px;
}

.content-document > * {
  margin: 0;
}

.content-document h2 {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
}

.content-document h3 {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.content-document p,
.content-document li {
  color: #5f6978;
  font-size: 15px;
  line-height: 1.85;
}

.content-document ul,
.content-document ol {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.content-document .contact-grid,
.content-document .tracking-form,
.content-document .tracking-result,
.content-document .contact-form {
  margin-top: 0;
}

.content-aside {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 16px;
}

.content-aside__links {
  display: grid;
  gap: 10px;
}

.content-aside__links a,
.content-note__link {
  display: block;
  padding: 12px 14px;
  border: 1px solid #e6ddd1;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  transition: border-color .2s ease, transform .2s ease, color .2s ease;
}

.content-aside__links a:hover,
.content-note__link:hover {
  border-color: #c7ad91;
  color: var(--warm-dark);
  transform: translateX(2px);
}

.content-note {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid #ece3d7;
  background: #fffdfa;
}

.content-note strong {
  color: var(--ink);
  font-size: 15px;
}

.content-note p {
  margin: 0;
  color: #697382;
  font-size: 14px;
  line-height: 1.7;
}

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

.contact-item {
  padding: 16px;
  border: 1px solid #ece3d7;
  background: rgba(255, 255, 255, .82);
}

.contact-item--wide {
  grid-column: 1 / -1;
}

.contact-item--address {
  padding: 18px 20px;
}

.contact-item--address p {
  max-width: none;
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 15px;
}

.contact-item p,
.contact-item a {
  color: #5b6676;
  font-size: 14px;
  line-height: 1.7;
}

.contact-item a {
  display: inline-block;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd3c6;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 156px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c5a280;
  box-shadow: inset 0 0 0 1px #c5a280;
}

.contact-form__message {
  margin-top: 2px;
}

.contact-form__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form__security {
  width: min(100%, 280px);
  min-width: 0;
  flex: 1 1 280px;
}

.contact-form__security input {
  max-width: 120px;
}

.contact-form__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.contact-form__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 16px;
}

.contact-form__actions .button {
  white-space: nowrap;
}

.contact-form__actions p {
  margin: 0;
  color: #7a8593;
  font-size: 13px;
}

.contact-map {
  display: grid;
  gap: 14px;
}

.contact-map__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}

.contact-map__top h2 {
  margin: 0;
}

.contact-map iframe {
  width: 100%;
  height: 340px;
  border: 1px solid #e6ddd2;
  background: #f7f2eb;
}

.catalog-page {
  padding: 20px 0 26px;
}

.admin-page {
  background:
    radial-gradient(circle at top left, rgba(155, 98, 48, .06), transparent 24%),
    linear-gradient(180deg, #fbf8f3 0%, #f6f1e9 100%);
}

.admin-page .topbar,
.admin-page .site-header,
.admin-page .site-footer {
  display: none;
}

.admin-shell {
  min-height: 100dvh;
  display: block;
}

.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 268px;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px 22px 24px;
  background:
      linear-gradient(180deg, #10284e 0%, #0f2444 100%);
  color: rgba(255, 255, 255, .92);
  box-shadow: 18px 0 40px rgba(16, 40, 78, .12);
  overflow: hidden;
  z-index: 40;
}

.admin-brand {
  display: grid;
  gap: 10px;
  padding-right: 8px;
  justify-items: start;
  min-width: 0;
}

.admin-brand img {
  width: 188px;
  max-width: 100%;
  height: auto;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 10px 24px rgba(5, 14, 28, .18);
}

.admin-brand span {
  color: rgba(242, 232, 219, .78);
  font-size: 13px;
  font-weight: 500;
}

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

.admin-nav a {
  min-height: 48px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: rgba(255, 255, 255, .88);
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.admin-nav a:hover,
.admin-nav a.is-active {
  background: rgba(255, 255, 255, .085);
  border-color: rgba(255, 255, 255, .08);
  transform: translateX(2px);
}

.admin-nav svg,
.admin-sidebar__card svg,
.admin-primary svg,
.admin-search svg,
.admin-profile svg,
.admin-icon-button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.admin-nav a svg {
  width: 16px;
  height: 16px;
  padding: 6px;
  border-radius: 9px;
  box-sizing: content-box;
  justify-self: center;
  background: rgba(255, 255, 255, .04);
}

.admin-nav a:hover svg,
.admin-nav a.is-active svg {
  background: rgba(255, 255, 255, .08);
}

.admin-nav span {
  font-size: 16px;
  font-weight: 500;
}

.admin-nav b {
  min-width: 28px;
  height: 28px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(250, 237, 214, .16);
  color: #f4d8a9;
  font-size: 12px;
  font-weight: 700;
}

.admin-sidebar__footer {
  position: relative;
  margin-top: auto;
  padding-top: 24px;
  min-height: auto;
}

.admin-sidebar__motif {
  display: none;
}

.admin-sidebar__card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(8px);
}

.admin-sidebar__card strong,
.admin-sidebar__card span {
  grid-column: 1;
}

.admin-sidebar__card strong {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.admin-sidebar__card span {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.admin-sidebar__card a {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
}

.admin-main {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  margin-left: 268px;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: rgba(250, 247, 241, .92);
  border-bottom: 1px solid rgba(21, 34, 53, .07);
  backdrop-filter: blur(16px);
}

.admin-search {
  position: relative;
  flex: 0 1 500px;
  max-width: 460px;
  min-width: 0;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid #e2d9cc;
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 18px rgba(21, 34, 53, .035);
}

.admin-search--live + label.admin-search {
  display: none;
}

.admin-search svg {
  flex: 0 0 auto;
  color: #697486;
  width: 16px;
  height: 16px;
}

.admin-search input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
  font-size: 14px;
}

.admin-search input::placeholder {
  color: #8b93a0;
}

.admin-search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 80;
  max-height: min(520px, calc(100vh - 120px));
  overflow: auto;
  padding: 8px;
  border: 1px solid #e2d9cc;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(21, 34, 53, .16);
}

.admin-search-results[hidden] {
  display: none;
}

.admin-search-results__empty {
  margin: 0;
  padding: 14px;
  color: #697486;
  font-size: 12px;
  line-height: 1.5;
}

.admin-search-result {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--ink);
}

.admin-search-result:hover,
.admin-search-result.is-active {
  background: #f8f2ea;
}

.admin-search-result strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.admin-search-result span {
  display: block;
  margin-top: 4px;
  color: #6d7787;
  font-size: 12.5px;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-search-result mark {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid #eadfce;
  border-radius: 999px;
  background: #fffaf3;
  color: #9b6230;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.admin-notifications {
  position: relative;
}

.admin-notifications summary {
  list-style: none;
}

.admin-notifications summary::-webkit-details-marker {
  display: none;
}

.admin-icon-button {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(21, 34, 53, .08);
  border-radius: 12px;
  background: rgba(255, 255, 255, .88);
  color: #304055;
  cursor: pointer;
  transition: background-color .2s ease, box-shadow .2s ease;
}

.admin-notifications[open] .admin-icon-button,
.admin-icon-button:hover {
  background: #fff;
  box-shadow: 0 8px 18px rgba(21, 34, 53, .08);
}

.admin-icon-button span {
  position: absolute;
  top: 3px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #c6924c;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.admin-notifications__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(340px, calc(100vw - 32px));
  padding: 14px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(21, 34, 53, .08);
  box-shadow: 0 22px 46px rgba(15, 23, 42, .16);
  backdrop-filter: blur(20px);
  z-index: 30;
}

.admin-notifications__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.admin-notifications__meta {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.admin-notifications__head strong {
  font-size: 14px;
}

.admin-notifications__head small,
.admin-notifications__empty {
  color: #7c8696;
  font-size: 12px;
}

.admin-notifications__clear {
  padding: 0;
  border: 0;
  background: transparent;
  color: #10284e;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.admin-notifications__clear:hover {
  text-decoration: underline;
}

.admin-notifications__empty.is-hidden {
  display: none;
}

.admin-notifications__list {
  display: grid;
  gap: 6px;
}

.admin-notification-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
  padding: 10px 8px;
  color: inherit;
  text-decoration: none;
  transition: background-color .2s ease;
}

.admin-notification-row:hover {
  background: rgba(16, 40, 78, .04);
}

.admin-notification-row__dot {
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 50%;
  background: #9aa4b2;
  box-shadow: 0 0 0 5px rgba(154, 164, 178, .12);
}

.admin-notification-row__dot--message {
  background: #10284e;
  box-shadow: 0 0 0 5px rgba(16, 40, 78, .1);
}

.admin-notification-row__dot--status-chip--prep {
  background: #3b9b63;
  box-shadow: 0 0 0 5px rgba(59, 155, 99, .12);
}

.admin-notification-row__dot--status-chip--ship {
  background: #3a78d2;
  box-shadow: 0 0 0 5px rgba(58, 120, 210, .12);
}

.admin-notification-row__dot--status-chip--done {
  background: #a17b34;
  box-shadow: 0 0 0 5px rgba(161, 123, 52, .12);
}

.admin-notification-row__body {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.admin-notification-row__body strong {
  font-size: 13px;
  line-height: 1.4;
}

.admin-notification-row__body span,
.admin-notification-row small {
  color: #7c8696;
  font-size: 12px;
  line-height: 1.45;
}

.admin-notification-row__body span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-notification-row small {
  white-space: nowrap;
}

.admin-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 6px 6px;
  border: 1px solid rgba(21, 34, 53, .06);
  border-radius: 14px;
  background: rgba(255, 255, 255, .6);
  min-width: 0;
}

.admin-profile > div {
  min-width: 0;
}

.admin-profile__avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 3px;
  background: #fff;
  color: #fff !important;
  border: 1px solid rgba(21, 34, 53, .08);
  border-radius: 50%;
  overflow: hidden;
}

.admin-profile__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}

.admin-profile strong,
.admin-profile span {
  display: block;
}

.admin-profile strong {
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-profile span {
  color: #7c8696;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-content {
  padding: 20px 26px 30px;
  display: grid;
  gap: 18px;
}

.admin-welcome {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.admin-welcome h1,
.admin-panel h2 {
  margin: 0;
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

.admin-welcome h1 {
  font-size: clamp(32px, 2.4vw, 42px);
}

.admin-welcome--compact {
  margin-bottom: 20px;
}

.admin-welcome h1::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 10px;
  vertical-align: 6px;
  border-radius: 50%;
  background: #8a9b54;
  opacity: .9;
}

.admin-welcome p,
.admin-panel__head p {
  margin: 8px 0 0;
  color: #667182;
  font-size: 14px;
}

.admin-ghost-link {
  color: #7f4c24;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

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

.admin-stat-card,
.admin-panel {
  border: 1px solid rgba(21, 34, 53, .08);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 28px rgba(21, 34, 53, .05);
}

.admin-stat-card {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
}

.admin-stat-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(21, 34, 53, .08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45);
}

.admin-stat-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}

.admin-stat-card__icon--soft {
  background: linear-gradient(180deg, #f9efe2 0%, #f4e4d1 100%);
  color: #111f33;
}

.admin-stat-card__icon--dark {
  background: linear-gradient(180deg, #183863 0%, #10284e 100%);
  color: #fff;
}

.admin-stat-card__copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.admin-stat-card__copy span {
  color: #5d6676;
  font-size: 13px;
}

.admin-stat-card__copy strong {
  font-size: clamp(28px, 2vw, 34px);
  line-height: 1;
}

.admin-stat-card__copy small {
  color: #768190;
  font-size: 12px;
}

.admin-stat-card__copy .is-positive {
  color: #2f8d4a;
}

.admin-stat-card__copy .is-warn {
  color: #9b6230;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(320px, .92fr);
  gap: 18px;
}

.admin-panel {
  min-width: 0;
  padding: 18px 18px 20px;
}

.admin-panel--compact {
  display: grid;
  gap: 18px;
}

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

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

.admin-select,
.admin-primary {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #ddd3c6;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
}

.admin-select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.admin-select--chevron {
  padding-right: 40px;
  position: relative;
}

.admin-select--chevron::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.admin-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.admin-chart {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.admin-chart__labels {
  display: grid;
  gap: 35px;
  padding-top: 20px;
  color: #758091;
  font-size: 12px;
}

.admin-chart__svg {
  width: 100%;
  height: auto;
}

.admin-chart__grid line {
  stroke: #ebe4da;
  stroke-width: 1;
}

.admin-chart__area {
  fill: url(#adminChartFill);
}

.admin-chart__line {
  stroke: #163863;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
}

.admin-chart__points circle {
  fill: #163863;
  stroke: #fff;
  stroke-width: 3;
}

.admin-chart__tooltip rect {
  fill: #fff;
  stroke: #e3d8ca;
}

.admin-chart__tooltip text:first-of-type {
  fill: #637082;
  font-size: 13px;
}

.admin-chart__tooltip text:last-of-type {
  fill: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.admin-chart__bottom text {
  fill: #6e7889;
  font-size: 12px;
}

.admin-order-list {
  display: grid;
}

.admin-order-list--page {
  gap: 12px;
}

.admin-dashboard-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.admin-dashboard-meta--top {
  margin-top: 18px;
}

.admin-dashboard-meta--bottom {
  align-items: start;
}

.admin-panel--orders-full {
  margin-top: 18px;
}

.admin-shortcuts,
.admin-stock-list,
.admin-activity-list {
  display: grid;
  gap: 12px;
}

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

.admin-shortcut-card,
.admin-stock-row,
.admin-activity-row {
  border: 1px solid #e5dccf;
  background: #fffdfa;
  color: inherit;
  text-decoration: none;
}

.admin-shortcut-card {
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 18px;
}

.admin-shortcut-card__meta {
  color: #9b7243;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-shortcut-card strong,
.admin-stock-row__copy strong,
.admin-activity-row__copy strong {
  display: block;
  color: var(--ink);
}

.admin-shortcut-card p,
.admin-stock-row__copy span,
.admin-activity-row__copy span {
  margin: 0;
  color: #6e7889;
  font-size: 13px;
  line-height: 1.6;
}

.admin-stock-row,
.admin-activity-row {
  display: grid;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
}

.admin-stock-row {
  grid-template-columns: 52px minmax(0, 1fr) auto;
}

.admin-stock-row img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 1px solid #ece3d7;
  background: #fbf6ef;
}

.admin-stock-row__copy {
  min-width: 0;
}

.admin-stock-row__copy strong,
.admin-activity-row__copy strong {
  margin-bottom: 3px;
}

.admin-stock-pill {
  min-height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef3fb;
  color: #183863;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.admin-stock-pill.is-critical {
  background: #fff2e8;
  color: #9b6230;
}

.admin-activity-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-activity-row__copy {
  min-width: 0;
}

.admin-empty-state--compact {
  padding: 18px;
}

.admin-quick-links {
  margin-top: 20px;
}

.admin-dashboard-meta--bottom .admin-quick-links {
  margin-top: 0;
}

.admin-quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid #e2d9cc;
  background: #fffdfa;
  color: inherit;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(24, 56, 99, 0.04);
}

.admin-quick-link strong,
.admin-tool-card h2 {
  display: block;
}

.admin-quick-link span,
.admin-tool-card p,
.admin-tool-list,
.admin-tool-meta span,
.admin-feed-box span {
  color: #6e6a63;
}

.admin-status-message {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid #e4dccf;
  background: #fffdfa;
}

.admin-status-message strong {
  color: var(--ink);
  font-size: 16px;
}

.admin-status-message p,
.admin-status-list {
  margin: 0;
  color: #5e6978;
  font-size: 14px;
  line-height: 1.65;
}

.admin-status-message--success {
  border-color: #dbe7db;
  background: #fbfdfb;
}

.admin-status-message--error {
  border-color: #ead8cf;
  background: #fffaf6;
}

.admin-status-list {
  padding-left: 18px;
}

.admin-bulk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.admin-tool-card__body {
  display: grid;
  gap: 18px;
}

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

.admin-checkline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4f5f77;
}

.admin-checkline input {
  accent-color: #183863;
}

.admin-upload-drop {
  position: relative;
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 190px;
  border: 1px dashed #d8cfbf;
  background: #fbf8f3;
  text-align: center;
  padding: 22px;
}

.admin-upload-drop input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.admin-upload-drop--compact {
  min-height: 164px;
}

.admin-upload-drop svg {
  width: 28px;
  height: 28px;
  stroke: #183863;
  stroke-width: 1.7;
  fill: none;
}

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

.admin-tool-actions--upload,
.admin-tool-actions--upload .admin-primary {
  width: 100%;
}

.admin-tool-actions--upload .admin-primary {
  min-height: 46px;
  justify-content: center;
}

.admin-tool-actions button[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.12);
}

.admin-tool-actions form,
.admin-table-actions form {
  margin: 0;
}

.admin-tool-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.admin-tool-list--plain {
  padding-left: 18px;
}

.admin-tool-note {
  margin: 0;
  color: #6d7480;
  font-size: 13px;
  line-height: 1.55;
}

.admin-feed-box,
.admin-tool-meta {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid #e7ddcf;
  background: #fffdfa;
}

.admin-feed-box code {
  font-size: 13px;
  color: #183863;
  word-break: break-all;
}

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

.admin-tool-meta--stack {
  grid-template-columns: 1fr;
}

.admin-import-preview {
  margin-top: 20px;
}

.admin-product-form-panel {
  padding: 0;
  overflow: hidden;
}

.admin-product-form {
  display: grid;
}

.admin-product-form__layout {
  display: grid;
  gap: 18px;
  padding: 0 24px 24px;
}

.admin-product-editor-layout {
  align-items: start;
}

.admin-product-editor-main,
.admin-product-editor-sidebar {
  display: grid;
  gap: 18px;
}

.admin-settings-layout {
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, .92fr);
  align-items: start;
}

.admin-settings-stack {
  display: grid;
  gap: 18px;
}

.admin-product-section {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid #ebe2d7;
  background: #fffdfa;
}

.admin-product-section--content {
  background: #fff;
}

.admin-product-section--media {
  position: sticky;
  top: 24px;
  gap: 14px;
}

.admin-product-section__head {
  display: grid;
  gap: 4px;
}

.admin-product-section__head h3 {
  margin: 0;
  font-size: 18px;
}

.admin-product-section__head p {
  margin: 0;
  color: #6f7989;
  font-size: 13px;
}

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

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

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

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

.admin-form-field span {
  color: #4f5b6b;
  font-size: 13px;
  font-weight: 700;
}

.admin-form-hint {
  color: #7b8696;
  font-size: 12px;
  line-height: 1.45;
}

.admin-form-field input,
.admin-form-field select,
.admin-form-field textarea {
  width: 100%;
  border: 1px solid #ddd3c6;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.admin-form-field input,
.admin-form-field select {
  min-height: 44px;
  padding: 0 14px;
}

.admin-form-field textarea {
  min-height: 104px;
  padding: 12px 14px;
  resize: vertical;
}

.admin-form-field input:focus,
.admin-form-field select:focus,
.admin-form-field textarea:focus {
  border-color: #c5a280;
  box-shadow: inset 0 0 0 1px #c5a280;
}

.admin-toggle-field {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #3f4b5c;
  font-size: 13px;
  font-weight: 800;
}

.admin-toggle-field input {
  width: 16px;
  height: 16px;
  accent-color: #9b6230;
}


.admin-product-cell__flag {
  display: inline-flex;
  width: fit-content;
  min-height: 22px;
  align-items: center;
  margin-top: 6px;
  padding: 0 8px;
  color: #35511d;
  background: #eef5e8;
  border: 1px solid rgba(73, 112, 41, .18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.admin-shipping-rules {
  display: grid;
  gap: 12px;
}

.admin-shipping-pricing {
  display: grid;
  gap: 16px;
  padding: 4px 24px 22px;
}

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

.admin-shipping-mode {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid #ddd3c6;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.admin-shipping-mode:hover,
.admin-shipping-mode.is-selected {
  border-color: #718344;
  background: #fbfcf7;
  box-shadow: 0 8px 24px rgba(42, 58, 21, .08);
}

.admin-shipping-mode input {
  width: 18px;
  height: 18px;
  accent-color: #35511d;
}

.admin-shipping-mode__icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: #eff3e7;
  color: #35511d;
}

.admin-shipping-mode__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-shipping-mode > span:last-child {
  display: grid;
  gap: 4px;
}

.admin-shipping-mode strong {
  color: #17210e;
  font-size: 15px;
}

.admin-shipping-mode small,
.admin-shipping-rules-title small {
  color: #74806a;
  font-size: 12px;
  line-height: 1.45;
}

.admin-shipping-flat-rate {
  display: none;
  grid-template-columns: minmax(220px, 320px) 1fr;
  align-items: end;
  gap: 18px;
  padding: 16px;
  border: 1px solid #dce4cf;
  border-radius: 8px;
  background: #f7f9f2;
}

.admin-shipping-flat-rate.is-active {
  display: grid;
}

.admin-shipping-flat-rate p {
  margin: 0 0 8px;
  color: #5e6b54;
  font-size: 13px;
  line-height: 1.55;
}

.admin-money-input {
  position: relative;
  display: block;
}

.admin-money-input input {
  padding-right: 44px;
}

.admin-money-input b {
  position: absolute;
  top: 50%;
  right: 15px;
  color: #35511d;
  font-size: 16px;
  transform: translateY(-50%);
}

.admin-shipping-rules-panel {
  display: grid;
  gap: 14px;
  margin: 0 24px 24px;
  padding: 18px;
  border: 1px solid #e6ddd1;
  border-radius: 8px;
  background: #fffdfa;
  transition: opacity .2s ease;
}

.admin-shipping-rules-panel.is-disabled {
  opacity: .48;
}

.admin-shipping-rules-panel.is-disabled .admin-shipping-rules {
  pointer-events: none;
}

.admin-shipping-rules-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-shipping-rules-title > div {
  display: grid;
  gap: 3px;
}

.admin-shipping-rules-title strong {
  color: #17210e;
  font-size: 15px;
}

.admin-shipping-rules-title button:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.admin-shipping-rules__head,
.admin-shipping-rule {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.admin-shipping-rules__head {
  color: #7a8492;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-shipping-rules:not(.is-adding) .admin-shipping-rule:nth-of-type(n+5) {
  display: none;
}

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

.admin-row-link {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid #e1d7ca;
  background: #fffdfa;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.admin-select--copy,
.admin-row-link--copy {
  border-color: #d7e2ef;
  background: #f7fbff;
  color: #183863;
}

.admin-detail-split,
.admin-order-detail {
  display: grid;
  gap: 20px;
}

.admin-detail-split {
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
}

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

.admin-order-update-form.is-focused {
  padding: 18px;
  border: 1px solid rgba(77, 86, 241, 0.18);
  border-radius: 22px;
  background: #fbfcff;
  box-shadow: 0 14px 30px rgba(77, 86, 241, 0.08);
}

.admin-detail-card {
  padding: 18px;
  border: 1px solid #ece3d7;
  background: #fffdfa;
}

.admin-detail-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

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

.admin-detail-list div {
  display: grid;
  gap: 4px;
}

.admin-detail-list span {
  color: #7b8696;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.admin-detail-list strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.admin-detail-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.admin-timeline__item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.admin-timeline__dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: #d4c9ba;
  box-shadow: 0 0 0 5px #f4eee5;
}

.admin-timeline__item.is-done .admin-timeline__dot {
  background: #183863;
}

.admin-timeline__item strong,
.admin-timeline__item small {
  display: block;
}

.admin-timeline__item strong {
  color: var(--ink);
  font-size: 14px;
}

.admin-timeline__item small {
  margin-top: 4px;
  color: #7b8696;
  font-size: 12px;
}

.admin-order-update-form {
  gap: 0;
}

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

.admin-message-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #e8dfd2;
  background: #fffdfa;
  color: inherit;
  text-decoration: none;
  border-radius: 10px;
}

.admin-message-card.is-active {
  border-color: #183863;
  box-shadow: inset 0 0 0 1px #183863;
}

.admin-message-card__avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #edf3ff;
  color: #17314c;
  font-size: 15px;
  font-weight: 800;
}

.admin-message-card__body {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.admin-message-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-message-card strong {
  display: block;
  font-size: 15px;
}

.admin-message-card__subject,
.admin-message-card__meta small {
  color: #6f7989;
  font-size: 13px;
}

.admin-message-card__preview {
  margin: 0;
  color: #4f5b6b;
  font-size: 13px;
  line-height: 1.45;
}

.admin-message-card__meta {
  display: grid;
  justify-items: end;
  gap: 4px;
  min-width: 64px;
}

.admin-message-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.admin-message-state.is-new {
  background: #edf5ff;
  color: #2f84f6;
}

.admin-message-state.is-read {
  background: #f3f5f8;
  color: #667489;
}

.admin-message-detail {
  display: grid;
  gap: 18px;
}

.admin-message-detail__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-message-detail__header h3 {
  margin: 0 0 4px;
  font-size: 22px;
}

.admin-message-detail__header p {
  margin: 0;
  color: #6f7989;
}

.admin-detail-list__wide {
  grid-column: 1 / -1;
}

.admin-rich-editor {
  border: 1px solid #e4d8cb;
  background: #fffdfa;
  border-radius: 10px;
  overflow: hidden;
}

.admin-rich-editor__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid #ede3d7;
  background: #fcf8f2;
}

.admin-rich-editor__toolbar button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #e4d8cb;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.admin-rich-editor__surface {
  min-height: 420px;
  padding: 18px;
  outline: none;
  line-height: 1.7;
  color: #243247;
}

.admin-rich-editor__surface h2,
.admin-rich-editor__surface p,
.admin-rich-editor__surface ul,
.admin-rich-editor__surface ol {
  margin-top: 0;
}

.admin-customer-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #e4d8cb;
  background: #faf3ea;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.admin-customer-hero {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-customer-hero .admin-customer-badge {
  width: 54px;
  height: 54px;
  font-size: 18px;
}

.admin-order-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 120px 106px auto auto;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid #eee6dc;
  font-size: 14px;
}

.admin-order-row--link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, box-shadow .18s ease;
}

.admin-order-row--link:hover,
.admin-order-row--link:focus-visible {
  background: #fffaf3;
  box-shadow: 0 0 0 1px #eadfce;
  outline: none;
}

.admin-order-row span,
.admin-order-row time {
  color: #697586;
}

.admin-order-row strong,
.admin-order-row b {
  color: var(--ink);
}

.admin-order-row__summary {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.admin-order-row__summary strong {
  font-size: 14px;
  line-height: 1.35;
}

.admin-order-row__summary small {
  color: #7c8696;
  font-size: 12px;
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.admin-stat-strip__item {
  display: grid;
  gap: 6px;
  padding: 13px 16px;
  border: 1px solid #e8dfd2;
  background: #fffdfa;
}

.admin-stat-strip__item span {
  color: #7b8696;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.admin-stat-strip__item strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.admin-filter-bar {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid #e8dfd2;
  background: #fffdfa;
}

.admin-filter-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.admin-filter-field span {
  color: #4f5b6b;
  font-size: 13px;
  font-weight: 700;
}

.admin-filter-field input,
.admin-filter-field select,
.admin-filter-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #ddd3c6;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.admin-filter-field textarea {
  min-height: 112px;
  padding-block: 12px;
  resize: vertical;
}

.admin-filter-field input:focus,
.admin-filter-field select:focus,
.admin-filter-field textarea:focus {
  border-color: #c5a280;
  box-shadow: inset 0 0 0 1px #c5a280;
}

.admin-filter-field--wide {
  grid-column: 1 / -1;
}

.admin-empty-state {
  display: grid;
  gap: 8px;
  padding: 26px 22px;
  border: 1px dashed #dccfbf;
  background: #fbf8f3;
}

.admin-empty-state strong {
  color: var(--ink);
  font-size: 16px;
}

.admin-empty-state p {
  color: #6e6a63;
}

.admin-row-link--danger {
  border-color: #ead1ce;
  background: #fff7f6;
  color: #9f3b31;
}

.admin-stat-strip--links .admin-stat-strip__item {
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.admin-stat-strip--links .admin-stat-strip__item:hover,
.admin-stat-strip--links .admin-stat-strip__item.is-active {
  border-color: #c9a173;
  box-shadow: 0 10px 18px rgba(22, 38, 60, .06);
  transform: translateY(-1px);
}

.admin-order-stack {
  display: grid;
  gap: 18px;
}

.admin-order-listing {
  display: grid;
  gap: 0;
  border: 1px solid #e6ebf5;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(17, 31, 57, 0.05);
}

.admin-orders-page {
  display: grid;
  gap: 22px;
}

.admin-orders-hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.admin-orders-hero__title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-orders-hero__title h2 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.05;
}

.admin-orders-hero__title p {
  margin: 6px 0 0;
  color: #667182;
  font-size: 16px;
}

.admin-orders-hero__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid #e6ebf5;
  background: linear-gradient(180deg, #f7f9ff 0%, #eef2ff 100%);
  color: #4d56f1;
}

.admin-orders-hero__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #e2d8ca;
  border-radius: 12px;
  background: rgba(255, 255, 255, .86);
  color: #183863;
  font-size: 13px;
  font-weight: 600;
}

.admin-logout:hover {
  background: #fff;
  box-shadow: 0 8px 18px rgba(21, 34, 53, .06);
}

.admin-logout:focus-visible,
.admin-search:focus-within,
.admin-icon-button:focus-visible {
  outline: 2px solid rgba(24, 56, 99, .18);
  outline-offset: 2px;
}

.admin-search:focus-within {
  border-color: #cdb89c;
  background: #fff;
  box-shadow: 0 10px 22px rgba(21, 34, 53, .05);
  outline: none;
}

.admin-notifications summary:focus-visible {
  outline: none;
}

.admin-logout:focus-visible {
  outline-offset: 1px;
}

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

.admin-orders-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid #e7ebf4;
  background: #fff;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(17, 31, 57, 0.04);
  transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}

.admin-orders-stat:hover,
.admin-orders-stat.is-active {
  border-color: #d6def1;
  box-shadow: 0 22px 42px rgba(20, 33, 61, .08);
  transform: translateY(-1px);
}

.admin-orders-stat__icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
}

.admin-orders-stat__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-orders-stat__icon--total {
  background: #f1efff;
  color: #7560ff;
}

.admin-orders-stat__icon--prep {
  background: #ecf8ef;
  color: #3ea85f;
}

.admin-orders-stat__icon--ship {
  background: #edf5ff;
  color: #2f84f6;
}

.admin-orders-stat__icon--done {
  background: #fff6e3;
  color: #f2a100;
}

.admin-orders-stat__copy {
  display: grid;
  gap: 4px;
}

.admin-orders-stat__copy span {
  color: #69768a;
  font-size: 14px;
  font-weight: 600;
}

.admin-orders-stat__copy strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.admin-orders-stat__copy small {
  color: #7f8999;
  font-size: 13px;
}

.admin-orders-filter {
  display: grid;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid #e8edf6;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 18px 38px rgba(17, 31, 57, 0.04);
}

.admin-order-listing__head {
  display: none;
}

.admin-order-row {
  display: grid;
  gap: 0;
  border-top: 1px solid #edf1f7;
}

.admin-order-table-row__inner {
  display: grid;
  grid-template-columns: minmax(154px, 0.82fr) minmax(0, 1fr) minmax(188px, auto);
  gap: 10px 14px;
  align-items: start;
  padding: 18px 18px;
}

.admin-order-table-col {
  min-width: 0;
}

.admin-order-table-col--customer {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 6px;
  align-items: center;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  padding-right: 0;
}

.admin-order-cell__avatar {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: #f2f5fb;
  color: #6483d9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.admin-order-cell__avatar svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-order-cell__id {
  display: inline-flex;
  margin-bottom: 6px;
  color: #4d56f1;
  font-size: 15px;
  text-decoration: none;
  font-weight: 800;
}

.admin-order-table-copy strong,
.admin-order-cell__product-copy strong,
.admin-order-table-col--meta strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
}

.admin-order-table-copy p,
.admin-order-cell--products p {
  margin: 4px 0 0;
  color: #707987;
  font-size: 11px;
  line-height: 1.45;
}

.admin-order-table-copy small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: #8a93a0;
  font-size: 11px;
}

.admin-order-table-copy small svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-order-table-col--product {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  grid-column: 2;
  grid-row: 1;
}

.admin-order-cell__product-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.admin-order-table-copy {
  max-width: 100%;
}

.admin-order-table-copy strong,
.admin-order-table-copy p,
.admin-order-table-copy small {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-order-cell__product-copy .status-chip {
  justify-self: start;
}

.admin-order-cell__product-copy span {
  color: #8a93a0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-order-cell__product-copy strong,
.admin-order-cell__product-copy p {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-order-product-thumb {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #e7ebf4;
  background: #f6f8fc;
}

.admin-order-table-col--meta {
  display: grid;
  gap: 6px;
  align-content: center;
  grid-column: 2;
  grid-row: 2;
  padding-left: 52px;
}

.admin-order-table-col--compact-meta {
  grid-template-columns: repeat(2, minmax(92px, auto));
  gap: 18px;
  align-items: start;
}

.admin-order-meta-pair {
  display: grid;
  gap: 6px;
}

.admin-order-table-col--meta span {
  color: #8a93a0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-order-table-col--total {
  display: grid;
  gap: 6px;
  justify-items: end;
  min-width: 0;
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  min-width: 188px;
}

.admin-order-row__total {
  display: grid;
  gap: 4px;
  justify-items: end;
}

.admin-order-row__total span {
  color: #8a93a0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-order-row__total strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
}

.admin-order-row__actions {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

.admin-order-row__actions .admin-select,
.admin-order-row__actions .admin-primary {
  min-width: 88px;
  min-height: 36px;
  white-space: nowrap;
  justify-content: center;
}

.admin-order-row__actions .admin-select,
.admin-order-row__actions .admin-row-delete {
  font-size: 12px;
}

.admin-order-row__actions form {
  margin: 0;
}

.admin-order-status-inline {
  margin: 0;
}

.admin-order-status-inline select {
  min-width: 116px;
  min-height: 36px;
  padding: 0 8px;
  border: 1px solid #dde5f0;
  border-radius: 12px;
  background: #fff;
  font: inherit;
  font-weight: 700;
}

.admin-order-status-inline--prep select {
  border-color: #d8ead9;
  background: #ecf8ef;
  color: #2f8d4a;
}

.admin-order-status-inline--ship select {
  border-color: #d7e8ff;
  background: #edf5ff;
  color: #2f84f6;
}

.admin-order-status-inline--done select {
  border-color: #f4e3b2;
  background: #fff6e3;
  color: #b07b00;
}

.admin-order-inline-edit {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-wrap: nowrap;
}

.admin-order-inline-edit__field {
  display: grid;
  gap: 0;
}

.admin-order-inline-edit__field span {
  display: none;
}

.admin-order-inline-edit__field select {
  min-width: 118px;
  min-height: 36px;
  padding: 0 8px;
  border: 1px solid #dde5f0;
  border-radius: 12px;
  background: #fff;
  font: inherit;
}

.admin-primary--compact,
.admin-row-delete--compact {
  min-height: 36px;
  padding: 0 10px;
}

.admin-order-actions-menu {
  position: relative;
}

.admin-order-actions-menu summary {
  list-style: none;
  cursor: pointer;
  white-space: nowrap;
}

.admin-order-actions-menu summary::-webkit-details-marker {
  display: none;
}

.admin-order-actions-menu > summary::marker {
  content: "";
}

.admin-order-actions-menu__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 8;
  width: min(420px, 82vw);
  padding: 16px;
  border: 1px solid #e3e9f4;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 26px 50px rgba(17, 31, 57, 0.14);
  display: grid;
  gap: 14px;
}

.admin-order-quick-edit {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.admin-order-quick-edit label {
  display: grid;
  gap: 6px;
}

.admin-order-quick-edit label span {
  color: #8a93a0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-order-quick-edit select,
.admin-order-quick-edit input {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #dde5f0;
  border-radius: 12px;
  background: #fff;
  font: inherit;
}

.admin-order-quick-edit .admin-primary {
  min-height: 42px;
}

.admin-order-actions-menu__footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  padding-top: 2px;
}

.admin-order-actions-menu__footer form {
  margin: 0;
}

.admin-order-card {
  border: 1px solid #e8dfd2;
  background: #fffdfa;
}

.admin-order-card__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid #eee6dc;
}

.admin-order-card__summary {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.admin-order-card__id {
  min-width: 74px;
  color: #7b8696;
  font-size: 13px;
  font-weight: 700;
}

.admin-order-card__summary strong,
.admin-order-card__meta strong {
  color: var(--ink);
}

.admin-order-card__summary p {
  margin: 4px 0 0;
  color: #6f7884;
  font-size: 13px;
}

.admin-order-card__meta {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.admin-order-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 18px;
  padding: 20px;
}

.admin-order-card__body--compact {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.admin-order-card__section-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.admin-order-card__section-head strong {
  color: var(--ink);
  font-size: 15px;
}

.admin-order-card__section-head span {
  color: #7b8696;
  font-size: 12px;
  font-weight: 700;
}

.admin-order-products {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.admin-order-products li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid #ece4d9;
  background: #fff;
}

.admin-order-products strong,
.admin-order-products b {
  color: var(--ink);
}

.admin-order-products span {
  display: block;
  margin-top: 4px;
  color: #7b8696;
  font-size: 12px;
}

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

.admin-order-card__detail-grid div {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid #ece4d9;
  background: #fff;
}

.admin-order-card__detail-grid span {
  color: #7b8696;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.admin-order-card__detail-grid strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}

.admin-order-card__detail-grid-item--wide {
  grid-column: 1 / -1;
}

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

.admin-order-card__actions--compact {
  justify-items: end;
  align-content: center;
  min-width: 180px;
}

.admin-order-card__compact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-order-card__compact-item {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid #ece4d9;
  background: #fff;
}

.admin-order-card__compact-item span {
  color: #7b8696;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.admin-order-card__compact-item strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.admin-order-card__compact-item--wide {
  grid-column: span 3;
}

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

.admin-order-inline-form__buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.admin-row-delete {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #e4cbc7;
  background: #fff6f4;
  color: #8b3b32;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.admin-row-delete:hover {
  border-color: #d1a59d;
  background: #fff0ed;
}

.admin-media-field {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-media-field--inline {
  grid-template-columns: 168px minmax(0, 1fr);
}

.admin-media-preview--large {
  aspect-ratio: 1 / 1;
}

.admin-media-preview {
  border: 1px solid #e2d8ca;
  background: #fffdfa;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.admin-media-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-media-field__controls {
  display: grid;
  gap: 12px;
}

.admin-media-field__controls p,
.admin-media-field__controls strong {
  margin: 0;
}

.admin-gallery-field {
  display: grid;
  gap: 14px;
}

.admin-product-media-shell {
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid #eee5d9;
  background: #fff;
}

.admin-product-media-shell--stacked {
  gap: 14px;
}

.admin-product-editor-sidebar .admin-media-preview--large {
  max-width: 220px;
}

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

.admin-product-upload-card {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 14px;
  border: 1px dashed #ded4c7;
  background: #fcfaf7;
}

.admin-product-upload-card small {
  color: #7b8696;
  font-size: 12px;
  line-height: 1.45;
}

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

.admin-gallery-toolbar p {
  margin: 0;
  color: #6f7989;
  font-size: 13px;
}

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

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

.admin-gallery-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(170px, 210px));
  gap: 10px;
  justify-content: start;
}

.admin-gallery-thumb {
  display: grid;
  gap: 8px;
  margin: 0;
}

.admin-gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / .82;
  object-fit: cover;
  border: 1px solid #e2d8ca;
  background: #fffdfa;
}

.admin-gallery-thumb figcaption {
  color: #6e6a63;
  font-size: 12px;
  line-height: 1.4;
  word-break: break-word;
}

.admin-gallery-thumb--manager {
  padding: 8px;
  border: 1px solid #e8dfd2;
  background: #fffdfa;
  max-width: 210px;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.admin-gallery-thumb--manager img {
  aspect-ratio: 1 / .9;
}

.admin-gallery-thumb--manager:hover,
.admin-gallery-thumb--manager:focus-visible {
  border-color: #b98d61;
  box-shadow: inset 0 0 0 1px rgba(185, 141, 97, .35);
  outline: none;
}

.admin-gallery-thumb--manager.is-cover {
  border-color: #183863;
  box-shadow: inset 0 0 0 1px #183863;
}

.admin-gallery-thumb--manager figcaption {
  display: grid;
  gap: 8px;
}

.admin-gallery-thumb__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 2;
}

.admin-gallery-action {
  min-height: 28px;
  padding: 0 8px;
  border: 1px solid #ddd3c6;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.admin-gallery-action:hover,
.admin-gallery-action:focus-visible {
  border-color: #183863;
  outline: none;
}

.admin-product-editor-sidebar .admin-gallery-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(170px, 210px));
}

.admin-gallery-action--danger {
  color: #9d4f3b;
  border-color: #e7d4cc;
  background: #fffaf8;
}

.admin-file-field {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px dashed #d8cfbf;
  background: #fbf8f3;
}

.admin-file-field span {
  color: #4f5b6b;
  font-size: 13px;
  font-weight: 700;
}

.admin-file-field input[type="file"] {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.status-chip {
  min-height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
}

.status-chip--prep {
  background: #dff0dd;
  color: #34794b;
}

.status-chip--pending {
  background: #fff0cf;
  color: #8b5d08;
}

.status-chip--failed {
  background: #f8ded7;
  color: #9c3f2b;
}

.status-chip--ship {
  background: #dce7f8;
  color: #315f9f;
}

.status-chip--done {
  background: #f4e8c7;
  color: #9b6a16;
}

.admin-orders-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.admin-panel--table {
  padding-bottom: 10px;
}

.admin-panel__head--table {
  align-items: center;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.admin-table th,
.admin-table td {
  padding: 14px 10px;
  border-top: 1px solid #efe7dd;
  text-align: left;
}

.admin-table th {
  color: #6c7687;
  font-size: 13px;
  font-weight: 600;
}

.admin-table td {
  color: var(--ink);
  font-size: 14px;
}

.admin-product-cell {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-product-cell img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 1px solid #ece3d7;
  background: #fbf6ef;
}

.admin-product-cell strong,
.admin-product-cell span {
  display: block;
}

.admin-product-cell strong {
  margin-bottom: 2px;
}

.admin-product-cell span {
  color: #7b8696;
  font-size: 12px;
}

.table-badge {
  min-height: 28px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #dff0dd;
  color: #337847;
  font-size: 12px;
  font-weight: 700;
}

.admin-more {
  width: 42px;
  height: 36px;
  border: 1px solid #e3d9cd;
  background: #fff;
  color: #5f6978;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.admin-table__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 4px 4px;
  color: #6f7989;
  font-size: 14px;
}

.admin-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-pagination a,
.admin-pagination button,
.admin-pagination span {
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.admin-pagination .is-current {
  border-color: #10284e;
  background: #10284e;
  color: #fff;
}

@media (max-width: 1360px) {
  .admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 1360px) {
  .admin-sidebar {
    width: 244px;
    padding: 24px 18px 20px;
  }

  .admin-brand img {
    width: 172px;
  }

  .admin-nav span {
    font-size: 15px;
  }

  .admin-main {
    margin-left: 244px;
  }

  .admin-topbar {
    padding: 14px 20px;
  }

  .admin-content {
    padding: 18px 20px 26px;
  }

  .admin-order-table-row__inner {
    grid-template-columns: minmax(150px, 0.72fr) minmax(214px, 1.02fr) minmax(132px, 0.68fr) minmax(182px, 0.78fr);
    gap: 10px;
    padding: 18px;
  }
}

@media (min-width: 1600px) {
  .admin-order-table-row__inner {
    grid-template-columns: minmax(156px, 0.74fr) minmax(226px, 1.16fr) minmax(144px, 0.72fr) minmax(176px, 0.84fr);
    gap: 6px;
    align-items: center;
  }

  .admin-order-table-col--customer {
    grid-column: auto;
    grid-row: auto;
    align-self: center;
  }

  .admin-order-table-col--product {
    grid-column: auto;
    grid-row: auto;
  }

  .admin-order-table-col--meta {
    grid-column: auto;
    grid-row: auto;
    padding-left: 0;
  }

  .admin-order-table-col--compact-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .admin-order-table-col--total {
    grid-column: auto;
    grid-row: auto;
    align-self: center;
    min-width: 0;
  }

  .admin-order-row__actions {
    flex-wrap: nowrap;
    gap: 3px;
  }

  .admin-order-row__actions .admin-select,
  .admin-order-row__actions .admin-primary {
    min-width: 74px;
  }

  .admin-order-status-inline select {
    min-width: 110px;
  }
}

@media (max-width: 1240px) {
  .admin-sidebar {
    width: 224px;
  }

  .admin-brand img {
    width: 160px;
  }

  .admin-main {
    margin-left: 224px;
  }

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

  .admin-detail-split,
  .admin-settings-layout {
    grid-template-columns: 1fr;
  }

  .admin-message-card {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .admin-message-card__meta {
    grid-column: 2;
    justify-items: start;
    grid-auto-flow: column;
    gap: 10px;
    min-width: 0;
  }

  .admin-order-table-row__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px 16px;
    align-items: start;
  }

  .admin-order-table-col--customer,
  .admin-order-table-col--product {
    min-width: 0;
  }

  .admin-order-table-col--customer {
    padding-right: 0;
  }

  .admin-order-table-col--meta {
    grid-column: 1;
    align-content: start;
  }

  .admin-order-table-col--total {
    grid-column: 2;
    justify-items: end;
    align-content: start;
  }

  .admin-order-row__actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .admin-order-row__actions .admin-select,
  .admin-order-row__actions .admin-primary,
  .admin-order-row__actions .admin-row-delete {
    min-width: 78px;
  }
}

@media (max-width: 1120px) {
  .admin-shell {
    display: block;
  }

  .admin-sidebar {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    min-height: auto;
    gap: 18px;
    padding: 18px 18px 16px;
    overflow: visible;
  }

  .admin-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .admin-nav a {
    min-height: 46px;
  }

  .admin-brand img {
    width: 168px;
  }

  .admin-sidebar__footer {
    display: none;
  }

  .admin-main {
    margin-left: 0;
  }

  .admin-topbar {
    flex-wrap: wrap;
    align-items: stretch;
    gap: 14px;
  }

  .admin-search {
    flex: 1 1 100%;
    max-width: none;
    min-height: 50px;
    order: 1;
  }

  .admin-toolbar {
    order: 2;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .admin-notifications__panel {
    width: min(340px, calc(100vw - 24px));
  }
}

@media (max-width: 980px) {
  .admin-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-order-table-row__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .admin-order-table-col--customer {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    border-right: 0;
    padding-right: 0;
  }

  .admin-order-table-col--product {
    grid-column: auto;
    grid-row: auto;
  }

  .admin-order-table-col--meta,
  .admin-order-table-col--total {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    min-width: 0;
  }

  .admin-order-table-col--meta {
    padding-left: 0;
  }

  .admin-order-table-col--compact-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .admin-order-table-col--total,
  .admin-order-row__actions,
  .admin-order-row__total {
    justify-items: start;
    justify-content: flex-start;
  }

  .admin-order-row__actions {
    flex-wrap: wrap;
    gap: 8px;
  }

  .admin-order-row__actions .admin-select,
  .admin-order-row__actions .admin-primary,
  .admin-order-row__actions .admin-row-delete {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
  }

  .admin-order-status-inline {
    width: 100%;
  }

  .admin-order-status-inline select {
    width: 100%;
    min-width: 0;
  }

  .admin-message-card {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .admin-message-card__meta {
    grid-column: 2;
    justify-items: start;
    grid-auto-flow: column;
    gap: 10px;
    min-width: 0;
  }

  .admin-message-detail__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 840px) {
  .admin-topbar,
  .admin-welcome,
  .admin-panel__head,
  .admin-panel__head--table,
  .admin-table__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-search {
    max-width: none;
  }

  .admin-toolbar {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .admin-notifications__panel {
    right: -8px;
  }

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

  .admin-stat-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

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

  .admin-chart__labels {
    display: none;
  }

  .admin-order-row {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 8px 14px;
  }

  .admin-order-row time,
  .admin-order-row b,
  .admin-order-row mark {
    grid-column: 2;
  }

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

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

  .admin-order-card__top,
  .admin-order-card__body,
  .admin-order-inline-form,
  .admin-order-card__detail-grid {
    grid-template-columns: 1fr;
  }

  .admin-order-card__top {
    display: grid;
  }

  .admin-order-card__meta {
    justify-items: start;
  }

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

  .admin-order-card__compact-item--wide {
    grid-column: auto;
  }

  .admin-order-card__actions--compact {
    justify-items: stretch;
    min-width: 0;
  }

  .admin-orders-hero,
  .admin-orders-hero__title {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .admin-order-table-col--customer {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    border-right: 0;
    padding-right: 0;
  }

  .admin-order-table-col--product {
    gap: 10px;
  }

  .admin-order-product-thumb {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .admin-order-table-col--total,
  .admin-order-row__actions,
  .admin-order-row__total {
    justify-items: start;
    justify-content: flex-start;
  }

  .admin-order-row__actions {
    flex-wrap: wrap;
  }

  .admin-order-status-inline {
    width: 100%;
  }

  .admin-order-status-inline select {
    width: 100%;
  }

  .admin-order-inline-edit {
    width: 100%;
    flex-wrap: wrap;
    align-items: end;
  }

  .admin-order-inline-edit__field span {
    display: block;
  }

  .admin-order-actions-menu__panel {
    position: static;
    width: 100%;
  }

  .admin-order-quick-edit {
    grid-template-columns: 1fr;
  }

  .admin-order-products li {
    grid-template-columns: 1fr;
  }

  .admin-order-inline-form__buttons {
    flex-wrap: wrap;
  }

  .admin-stock-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .admin-stock-pill {
    grid-column: 2;
    justify-self: start;
  }

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

  .admin-activity-row mark {
    justify-self: start;
  }

  .admin-stat-strip,
  .admin-filter-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .admin-topbar,
  .admin-content {
    padding-inline: 14px;
  }

  .admin-sidebar {
    padding-inline: 14px;
  }

  .admin-topbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .admin-search {
    order: 1;
    width: 100%;
    max-width: none;
    flex-basis: auto;
  }

  .admin-toolbar {
    order: 2;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .admin-profile {
    flex: 1 1 auto;
  }

  .admin-profile span {
    display: none;
  }

  .admin-logout {
    min-height: 40px;
    padding-inline: 14px;
  }

  .admin-notifications__panel {
    right: 0;
    width: min(320px, calc(100vw - 20px));
  }
}

@media (max-width: 640px) {
  .admin-content,
  .admin-topbar {
    padding-inline: 16px;
  }

  .admin-sidebar {
    gap: 14px;
    padding: 14px 16px 12px;
  }

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

  .admin-brand img {
    width: 144px;
  }

  .admin-brand span {
    font-size: 12px;
  }

  .admin-nav a {
    min-height: 42px;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    padding: 0 10px;
  }

  .admin-nav a b {
    display: none;
  }

  .admin-nav a svg {
    width: 15px;
    height: 15px;
    padding: 5px;
    border-radius: 8px;
  }

  .admin-nav span {
    font-size: 14px;
  }

  .admin-stat-card {
    padding: 16px;
  }

  .admin-panel {
    padding: 16px;
  }

  .admin-table-actions {
    width: 100%;
  }

  .admin-select,
  .admin-primary {
    width: 100%;
    justify-content: center;
  }

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

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

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

  .admin-shipping-rules__head {
      display: none;
    }

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

  .admin-shipping-mode-grid,
  .admin-shipping-flat-rate {
      grid-template-columns: 1fr;
    }

  .admin-product-form__layout {
      padding-inline: 18px;
    }

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

  .admin-product-section--media {
      position: static;
      top: auto;
    }

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

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

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

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

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

  .admin-dashboard-meta,
  .admin-shortcuts {
    grid-template-columns: 1fr;
  }

  .admin-detail-split,
  .admin-order-detail__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .admin-nav {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    gap: 8px;
  }

  .admin-profile {
    padding-right: 8px;
  }

  .admin-search {
    min-height: 44px;
    padding-inline: 12px;
  }
}

.admin-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #e2d8ca;
  border-radius: 12px;
  background: rgba(255, 255, 255, .86);
  color: #183863;
  font-size: 13px;
  font-weight: 600;
}

.admin-login-page {
  min-height: 100dvh;
  background:
    radial-gradient(circle at top right, rgba(189, 155, 103, .16), transparent 28%),
    linear-gradient(180deg, #fbf8f3 0%, #f6f1e7 100%);
}

.admin-login-shell {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.admin-login-card {
  width: min(100%, 540px);
  display: grid;
  gap: 22px;
  padding: 32px;
  border: 1px solid #e5dccf;
  background: rgba(255, 253, 249, .96);
  box-shadow: 0 24px 70px rgba(24, 56, 99, .08);
  backdrop-filter: blur(10px);
}

.admin-login-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #183863;
  font-weight: 700;
}

.admin-login-brand img {
  width: 140px;
  height: auto;
  object-fit: contain;
}

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

.admin-login-copy__eyebrow {
  color: #9b7243;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.admin-login-copy h1 {
  margin: 0;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.06;
}

.admin-login-copy p,
.admin-login-note span {
  color: #6e6a63;
}

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

.admin-login-form .admin-form-field > label {
  color: #4f5b6b;
  font-size: 13px;
  font-weight: 700;
}

.admin-password-field {
  position: relative;
  display: block;
}

.admin-password-field input {
  padding-right: 52px;
}

.admin-password-field button {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #43551f;
  cursor: pointer;
  transform: translateY(-50%);
}

.admin-password-field button:hover,
.admin-password-field button:focus-visible {
  background: #eef1e4;
  outline: 0;
}

.admin-password-field svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-password-field__hide,
.admin-password-field button.is-visible .admin-password-field__show {
  display: none;
}

.admin-password-field button.is-visible .admin-password-field__hide {
  display: block;
}

.admin-login-form .admin-form-field:has(.admin-login-security) {
  order: 2;
}

.admin-login-submit {
  order: 3;
  width: 100%;
}

.admin-login-security {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.admin-login-security strong {
  display: grid;
  min-height: 46px;
  place-items: center;
  border: 1px solid #d8c8ae;
  background: #f8efe0;
  color: #183863;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .18em;
  user-select: none;
}

@media (max-width: 520px) {
  .admin-login-security {
    grid-template-columns: 1fr;
  }
}

.admin-login-note {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid #eadfce;
  background: #fffaf2;
}

.invoice-page {
  background: #f6f1e8;
}

.invoice-shell {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 28px 18px 42px;
  display: grid;
  gap: 18px;
}

.invoice-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.invoice-card {
  display: grid;
  gap: 28px;
  padding: 38px;
  border: 1px solid #e3d9cc;
  background: #fffdfa;
  box-shadow: 0 18px 48px rgba(24, 56, 99, .06);
}

.invoice-head {
  padding-bottom: 24px;
  border-bottom: 1px solid #ece3d7;
}

.invoice-brand {
  display: inline-grid;
  gap: 12px;
  max-width: 620px;
}

.invoice-brand img {
  width: 190px;
  height: auto;
  object-fit: contain;
}

.invoice-brand div,
.invoice-list {
  display: grid;
  gap: 5px;
}

.invoice-meta strong,
.invoice-panel h2,
.invoice-summary__box strong,
.invoice-table strong {
  color: var(--ink);
}

.invoice-brand span,
.invoice-meta span,
.invoice-list span,
.invoice-foot p {
  color: #6e6a63;
}

.invoice-meta {
  min-width: 220px;
  padding: 16px 18px;
  border: 1px solid #ece2d4;
  background: #fff8f1;
}

.invoice-meta div,
.invoice-list div,
.invoice-summary__box div {
  display: grid;
  gap: 4px;
}

.invoice-meta span,
.invoice-list span,
.invoice-summary__box span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

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

.invoice-panel {
  padding: 20px;
  border: 1px solid #ece3d7;
  background: #fff;
}

.invoice-panel h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 18px;
}

.invoice-table {
  width: 100%;
  border-collapse: collapse;
}

.invoice-table th,
.invoice-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #ece3d7;
  text-align: left;
  font-size: 14px;
}

.invoice-table th {
  color: #7b8696;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.invoice-summary {
  display: flex;
  justify-content: flex-end;
}

.invoice-summary__box {
  width: min(100%, 320px);
  padding: 18px;
  border: 1px solid #ece3d7;
  background: #fff8f1;
}

.invoice-summary__total {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid #e1d5c4;
}

.invoice-foot {
  padding-top: 8px;
  border-top: 1px solid #ece3d7;
}

@media (max-width: 840px) {
  .admin-login-card {
    padding: 24px 18px;
  }

  .admin-logout {
    min-height: 38px;
    padding-inline: 12px;
  }

  .invoice-head,
  .invoice-grid {
    grid-template-columns: 1fr;
  }

  .invoice-card {
    padding: 22px 18px;
  }

  .invoice-toolbar {
    justify-content: stretch;
    flex-direction: column;
  }
}

@media print {
  .invoice-page {
    background: #fff;
  }

  .invoice-shell {
    width: 100%;
    padding: 0;
  }

  .invoice-toolbar {
    display: none;
  }

  .invoice-card {
    border: 0;
    box-shadow: none;
    padding: 0;
  }
}

.catalog-hero {
  display: none;
  margin-bottom: 22px;
  padding: 24px 26px;
  border: 1px solid #ece3d7;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .97), rgba(248, 243, 236, .92)),
    radial-gradient(circle at top right, rgba(183, 147, 103, .12), transparent 38%);
}

.catalog-hero__eyebrow {
  margin: 0 0 10px;
  color: #8a5a2f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.catalog-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.04;
}

.catalog-hero p {
  max-width: 720px;
  margin: 12px 0 0;
  color: #5f6978;
  font-size: 15px;
  line-height: 1.8;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 278px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 18px;
}

.catalog-panel {
  border: 1px solid #ece3d7;
  background: linear-gradient(180deg, #fff, #fffdfb);
}

.catalog-panel--sidebar {
  padding: 18px 18px 20px;
}

.catalog-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.catalog-sidebar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog-sidebar__head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.catalog-reset {
  border: 0;
  background: none;
  color: #8a5a2f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
  cursor: pointer;
}

.catalog-sidebar__close,
.catalog-mobile-trigger {
  display: none;
}

.catalog-filter {
  padding-top: 14px;
  border-top: 1px solid #efe7dd;
}

.catalog-filter:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.catalog-filter summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.catalog-filter summary::-webkit-details-marker {
  display: none;
}

.catalog-filter summary::after {
  content: "+";
  color: #85715a;
  font-size: 18px;
  line-height: 1;
}

.catalog-filter[open] summary::after {
  content: "–";
}

.catalog-filter__body {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.catalog-option {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 10px;
  color: #4f5b6a;
  font-size: 14px;
}

.catalog-option input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--ink);
}

.catalog-option small {
  color: #9098a4;
  font-size: 12px;
}

.catalog-note {
  margin: 0;
  color: #6f7a89;
  font-size: 13px;
  line-height: 1.7;
}

.catalog-content {
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid #ece3d7;
  background: #fff;
}

.catalog-toolbar__meta {
  display: grid;
  gap: 8px;
}

.catalog-toolbar__meta strong {
  color: var(--ink);
  font-size: 16px;
}

.catalog-toolbar__meta p {
  margin: 0;
  color: #6c7684;
  font-size: 13px;
}

.catalog-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid #e2d9cc;
  background: #fffaf3;
  color: #7d5932;
  font-size: 12px;
  font-weight: 700;
}

.catalog-chip button {
  width: 18px;
  height: 18px;
  border: 0;
  padding: 0;
  background: none;
  color: #7d5932;
  font: inherit;
  line-height: 1;
  cursor: pointer;
}

.catalog-toolbar__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.catalog-sort {
  min-width: 220px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid #ddd3c6;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.catalog-mobile-trigger {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid #ddd3c6;
  background: #fffaf4;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

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

.catalog-grid .product-card[hidden],
.catalog-grid .product-card.is-filtered-out {
  display: none !important;
}

.catalog-empty {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 28px;
  border: 1px solid #ece3d7;
  background: #fff;
  text-align: center;
}

.catalog-empty[hidden] {
  display: none;
}

.catalog-empty strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 22px;
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.catalog-empty p {
  margin: 0;
  color: #6d7786;
  font-size: 14px;
  line-height: 1.7;
}

.catalog-overlay {
  display: none;
}

.catalog-overlay[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  .catalog-layout {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 20px;
  }

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

@media (max-width: 980px) {
  .catalog-page {
    padding-inline: 14px;
  }

  .catalog-hero {
    padding: 18px 16px;
  }

  .catalog-hero h1 {
    font-size: 30px;
  }

  .catalog-hero p {
    font-size: 14px;
    line-height: 1.65;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 62;
    width: min(420px, calc(100vw - 28px));
    padding: 18px 14px;
    background: #fffdfa;
    box-shadow: -12px 0 32px rgba(21, 34, 53, .12);
    transform: translateX(104%);
    transition: transform .24s ease;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .catalog-sidebar.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.catalog-filters-open {
    overflow: hidden;
  }

  .catalog-overlay {
    position: fixed;
    inset: 0;
    z-index: 61;
    display: block;
    background: rgba(20, 31, 48, .34);
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px;
  }

  .catalog-toolbar__actions {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
  }

  .catalog-sort,
  .catalog-mobile-trigger {
    width: 100%;
    min-width: 0;
  }

  .catalog-summary {
    display: none;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .catalog-grid .product-card {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    align-items: stretch;
  }

  .catalog-grid .product-card__media {
    aspect-ratio: auto;
    margin: 10px 0 10px 10px;
  }

  .catalog-grid .product-card img {
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }

  .catalog-grid .product-card__body {
    padding: 14px 14px 14px 12px;
  }

  .catalog-grid .product-card h3 {
    font-size: 18px;
    line-height: 1.25;
  }

  .catalog-grid .price-line {
    gap: 8px;
  }

  .catalog-grid .card-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .catalog-mobile-trigger,
  .catalog-sidebar__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .catalog-sidebar__close {
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid #e1d7ca;
    background: #fff;
    color: #6b7280;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
  }
}

@media (max-width: 760px) {
  .catalog-page {
    padding-top: 14px;
  }

  .catalog-hero {
    margin-bottom: 16px;
    padding: 18px 16px;
  }

  .catalog-hero h1 {
    font-size: 28px;
  }

  .catalog-hero p {
    font-size: 14px;
    line-height: 1.65;
  }

  .catalog-grid {
    gap: 14px;
  }

  .catalog-panel--sidebar,
  .catalog-toolbar {
    padding: 16px;
  }

  .catalog-sidebar {
    width: calc(100vw - 16px);
    padding: 14px 10px;
  }

  .catalog-sidebar__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-sidebar__actions {
    width: 100%;
    justify-content: space-between;
  }

  .catalog-toolbar__actions {
    grid-template-columns: 1fr;
  }

  .catalog-option {
    font-size: 13px;
  }
}

@media (max-width: 560px) {
  .catalog-hero h1 {
    font-size: 25px;
  }

  .catalog-toolbar__meta strong {
    font-size: 15px;
  }

  .catalog-toolbar__meta p {
    font-size: 12px;
    line-height: 1.6;
  }

  .catalog-chip {
    max-width: 100%;
  }

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

  .catalog-grid .product-card__media {
    margin: 10px 10px 0;
  }

  .catalog-grid .product-card__body {
    padding: 14px 12px 12px;
  }
}

.tracking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) 156px;
  align-items: end;
  gap: 12px;
}

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

.tracking-form label > span {
  color: #4f5b6b;
  font-size: 12px;
  font-weight: 800;
}

.tracking-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #ddd3c6;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.tracking-form input:focus {
  border-color: #c5a280;
  box-shadow: inset 0 0 0 1px #c5a280;
}

.tracking-result {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #ece3d7;
  background: #fff;
}

.tracking-result__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ece3d7;
}

.tracking-result__head > div {
  display: grid;
  gap: 3px;
}

.tracking-result__head > div span {
  color: #7b8594;
  font-size: 12px;
}

.tracking-result__head > div strong {
  color: var(--ink);
  font-size: 18px;
}

.tracking-result__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tracking-result__row span:first-child {
  color: #7b8594;
  font-size: 13px;
}

.tracking-result__row span:last-child {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.tracking-message {
  margin: 14px 0;
  padding: 12px 14px;
  border: 1px solid #ead6d2;
  background: #fff6f4;
  color: #9a3f35;
  font-size: 12px;
  font-weight: 700;
}

.tracking-result__link {
  width: fit-content;
  margin-top: 4px;
}

.tracking-timeline {
  display: grid;
  gap: 0;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid #ece3d7;
}

.tracking-timeline__step {
  position: relative;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  min-height: 54px;
}

.tracking-timeline__step > span {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  margin-top: 3px;
  border: 2px solid #c8cfd8;
  border-radius: 50%;
  background: #fff;
}

.tracking-timeline__step:not(:last-child)::after {
  position: absolute;
  top: 15px;
  bottom: -2px;
  left: 5px;
  width: 2px;
  background: #e2e6eb;
  content: "";
}

.tracking-timeline__step.is-done > span {
  border-color: #4b7f50;
  background: #4b7f50;
}

.tracking-timeline__step div {
  display: grid;
  align-content: start;
  gap: 3px;
}

.tracking-timeline__step strong {
  color: var(--ink);
  font-size: 13px;
}

.tracking-timeline__step small {
  color: #7b8594;
  font-size: 12px;
}

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

.product-summary__meta div {
  padding-top: 12px;
  border-top: 1px solid #ece3d7;
}

.product-summary__meta span,
.product-summary__meta b {
  display: block;
}

.product-summary__meta span {
  margin-bottom: 5px;
  color: #808897;
  font-size: 12px;
}

.product-summary__meta b {
  color: var(--ink);
  font-size: 13px;
}

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

.detail-panel {
  border: 1px solid #e7dfd4;
  background: linear-gradient(180deg, #fff 0%, #fcfaf7 100%);
}

.detail-panel[open] {
  box-shadow: 0 12px 28px rgba(21, 34, 53, .04);
}

.detail-panel summary {
  list-style: none;
  position: relative;
  padding: 18px 46px 18px 18px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.detail-panel summary::-webkit-details-marker {
  display: none;
}

.detail-panel summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: #9b6230;
  font-size: 20px;
  font-weight: 400;
}

.detail-panel[open] summary::after {
  content: "−";
}

.detail-panel div {
  padding: 0 18px 18px;
}

.detail-panel p,
.detail-panel li {
  color: #566170;
  font-size: 14px;
  line-height: 1.75;
}

.detail-panel ul {
  margin: 0;
  padding-left: 18px;
}

.detail-related {
  margin-top: 42px;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 28px;
  margin-top: 26px;
  margin-bottom: 30px;
  padding: 22px 34px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, #fbfaf8, #fff);
  box-shadow: var(--shadow-soft);
}

.newsletter__title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.newsletter__title svg {
  width: 38px;
  height: 38px;
  stroke: var(--warm);
  fill: none;
  stroke-width: 1.5;
}

.newsletter h2 {
    margin: 0 0 2px;
    font-family: Fraunces, Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 500;
  }

.newsletter p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.newsletter__form {
  display: grid;
  grid-template-columns: 1fr 126px;
  min-height: 46px;
}

.newsletter input {
  min-width: 0;
  border: 1px solid var(--line);
  border-right: 0;
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  outline: 0;
}

.newsletter input:focus {
  border-color: #c7ad91;
  box-shadow: inset 0 0 0 1px #c7ad91;
}

.newsletter button {
  border: 0;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .2s ease;
}

.newsletter button:hover {
  background: var(--warm-dark);
}

.site-footer {
  margin-top: 18px;
  padding: 48px 0 22px;
  border-top: 1px solid var(--line);
  background: #fbfaf7;
}

.footer__main {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) .78fr 1.02fr .9fr 1.18fr;
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.footer__main h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  display: block;
  margin: 8px 0;
  color: #4d5868;
  font-size: 13.5px;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--warm-dark);
  transform: translateX(2px);
}

.footer-about .brand {
    margin-bottom: 18px;
  }

.brand--logo-footer {
  max-width: 164px;
}

.footer-about p {
  max-width: 330px;
  margin: 0 0 18px;
  color: #5f6978;
  font-size: 14px;
  line-height: 1.7;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid #cfd5dc;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--ink);
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.socials a:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.socials svg,
.footer-contact svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.socials svg {
  width: 18px;
  height: 18px;
}

.footer-contact a {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 9px;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
}

.footer-contact p {
  margin: 12px 0 0;
  color: #6b7380;
  font-size: 13px;
}

.footer-contact__address {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 9px;
  line-height: 1.6;
}

.payment-badges {
  display: flex;
  align-items: center;
  margin-top: 14px;
}

.payment-badges__image {
  display: block;
  width: 155px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid #ebe5dd;
  color: #6b7380;
  font-size: 12.5px;
  text-align: left;
}

.footer__bottom p {
  flex: 1 1 auto;
  margin: 0;
}

.footer__bottom div {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer__bottom a:hover {
  color: var(--warm-dark);
}

.floating-whatsapp {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(145deg, #2bdd70 0%, #20c763 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(24, 153, 81, .22);
  isolation: isolate;
  animation: whatsapp-float 4.8s ease-in-out infinite;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(37, 211, 102, .24);
  opacity: 0;
  animation: whatsapp-pulse 4.8s ease-out infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(24, 153, 81, .3);
  filter: saturate(1.06);
  animation-play-state: paused;
}

.floating-whatsapp:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(37, 211, 102, .28), 0 14px 30px rgba(24, 153, 81, .3);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@keyframes whatsapp-float {
  0%,
  72%,
  100% {
    transform: translateY(0);
  }

  78% {
    transform: translateY(-3px);
  }

  84% {
    transform: translateY(0);
  }

  90% {
    transform: translateY(-2px);
  }
}

@keyframes whatsapp-pulse {
  0%,
  70% {
    opacity: 0;
    transform: scale(1);
  }

  76% {
    opacity: .5;
  }

  90%,
  100% {
    opacity: 0;
    transform: scale(1.42);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-whatsapp,
  .floating-whatsapp::before {
    animation: none;
  }
}

@media (max-width: 760px) {
  .order-result-hero,
  .order-result-card {
    padding: 20px;
  }

  .order-result-facts div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .floating-whatsapp {
    left: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 1140px) {
  .product-detail__grid,
  .checkout__grid,
  .content-page__grid {
    grid-template-columns: 1fr;
  }

  .catalog-layout {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 20px;
  }

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

  .checkout-summary,
  .product-summary,
  .content-aside {
    position: static;
  }

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

@media (max-width: 1020px) {
  .content-page__grid {
    grid-template-columns: 1fr;
  }

  .content-aside {
    position: static;
  }

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

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

  .checkout-summary {
    position: static;
  }

  .order-result__grid,
  .order-result-hero {
    grid-template-columns: 1fr;
  }

  .order-result-summary {
    position: static;
  }

  .payment-options {
    grid-template-columns: 1fr;
  }

  .bank-transfer-info__row {
    grid-template-columns: 1fr auto;
  }

  .bank-transfer-info__row span {
    grid-column: 1 / -1;
  }

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

  .collection-tile {
    min-height: 146px;
    grid-template-columns: minmax(0, 1fr) 136px;
  }

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

  .product-summary {
    position: static;
  }

  .detail-panels {
    grid-template-columns: 1fr;
  }

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

  .site-header {
    height: auto;
  }

  .header__inner {
    min-height: 82px;
    flex-wrap: wrap;
    padding-block: 14px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .hero__grid {
    width: min(100% - 40px, var(--hero-shell));
  }

  .hero__panel {
    min-height: 360px;
    background-position: 65% center;
  }

  .hero__copy {
    max-width: 390px;
    padding: 34px 0 30px 32px;
  }

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

  .features {
    grid-template-columns: repeat(2, 1fr);
    padding: 26px;
  }

  .footer__main {
    grid-template-columns: 1.35fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .info-page main {
    padding-top: 16px;
  }

  .content-page {
    padding-bottom: 18px;
  }

  .content-page__main {
    gap: 14px;
  }

  .content-page--single .content-page__main {
    width: 100%;
  }

  .content-page__head,
  .content-card,
  .content-aside,
  .tracking-panel {
    padding: 18px 16px;
  }

  .content-page__head::before {
    background-size: 380px auto;
    opacity: .24;
  }

  .contact-grid,
  .contact-form__grid,
  .tracking-form {
    grid-template-columns: 1fr;
  }

  .contact-form__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-map iframe {
    height: 300px;
  }

  .contact-map__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-page main {
    padding-top: 16px;
  }

  .checkout {
    padding-bottom: 18px;
  }

  .checkout__main {
    gap: 14px;
  }

  .checkout-panel,
  .checkout-summary {
    padding: 18px 16px;
  }

  .checkout-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .checkout-summary__head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .checkout-coupon__form {
    grid-template-columns: 1fr;
  }

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

  .checkout-item b {
    grid-column: 2;
  }

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

  .card-view,
  .card-add {
    width: 100%;
  }

  .collection-highlights {
    margin-top: 18px;
  }

  .collection-highlights__grid {
    gap: 12px;
  }

  .collection-tile {
    min-height: 136px;
    grid-template-columns: minmax(0, 1fr) 120px;
  }

  .collection-tile__copy {
    padding: 14px 13px 13px 15px;
    justify-content: flex-end;
  }

  .collection-tile__copy h3 {
    max-width: 124px;
    margin-bottom: 10px;
    font-size: 21px;
  }

  .collection-tile__link {
    min-height: 34px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .collection-tile__circle {
    right: -24px;
    width: 122px;
    height: 122px;
  }

  .product-detail-page main {
    padding-top: 16px;
  }

  .product-detail {
    padding-bottom: 8px;
  }

  .breadcrumbs {
    margin-bottom: 18px;
    column-gap: 10px;
  }

  .breadcrumbs > * {
    min-height: 22px;
    font-size: 12px;
    line-height: 22px;
  }

  .product-detail__grid {
    gap: 18px;
  }

  .product-gallery__stage img {
    aspect-ratio: 1 / .98;
  }

  .product-gallery__video {
    aspect-ratio: 1 / .98;
  }

  .product-summary {
    gap: 20px;
    padding: 22px 18px;
  }

  .product-summary h1 {
    font-size: 24px;
  }

  .product-summary__purchase,
  .product-summary__meta,
  .product-summary__actions {
    grid-template-columns: 1fr;
  }

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

  .product-description__inner {
    padding: 24px 22px;
  }

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

  .detail-add {
    width: 100%;
  }

  .detail-buy {
    width: 100%;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .topbar .container,
  .site-header .container,
  main .container,
  .site-footer .container {
    width: min(100% - 28px, var(--content-shell));
  }

  body {
    padding-bottom: 0;
  }

  .topbar {
    height: auto;
  }

  .topbar__inner {
    min-height: 36px;
    justify-content: center;
  }

  .topbar nav {
    display: none;
  }

  .brand strong {
      font-size: 22px;
      letter-spacing: .2px;
    }
  
  .brand__mark {
      width: 40px;
      height: 40px;
    }
  
  .brand__mark img {
      width: 100%;
      height: 100%;
    }

  .brand--logo {
    width: auto;
    max-width: none;
  }

  .site-header .brand--logo {
    width: auto;
    max-width: none;
  }

  .site-header .brand--logo .brand__mark {
    width: 224px;
    height: auto;
    display: block;
  }

  .site-header .brand--logo .brand__mark img {
    width: 100%;
    height: auto;
    transform: none;
  }

  .brand--logo .brand__mark {
    width: 100%;
    height: auto;
  }

  .header__inner {
    position: relative;
    min-height: 74px;
    flex-wrap: nowrap;
    gap: 10px;
    padding-block: 12px;
  }

  .menu-button {
    width: 32px;
    height: 32px;
    display: grid;
    align-content: center;
    gap: 4px;
    margin-left: auto;
    cursor: pointer;
  }

  .menu-button span {
    width: 16px;
    height: 2px;
    justify-self: center;
    background: var(--ink);
  }

  .header-actions {
    gap: 8px;
    margin-left: 8px;
  }

  .header-actions a {
    width: 34px;
    height: 34px;
  }

  .header-actions button {
    width: 34px;
    height: 34px;
  }

  .site-search {
    padding-block: 10px 12px;
  }

  .site-search__form {
    min-height: 46px;
  }

  .site-search-result {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .site-search-result b {
    grid-column: 2;
  }

  .cart-link span {
    top: -3px;
    right: -3px;
    width: 16px;
    height: 16px;
    font-size: 9px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 92;
    width: min(86vw, 360px);
    height: 100dvh;
    display: grid;
    align-content: start;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    margin: 0;
    padding: 18px 20px 28px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    border-left: 1px solid #e8dfd3;
    background: #fffdf9;
    box-shadow: -18px 0 44px rgba(21, 34, 53, .18);
    transform: translateX(104%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .24s ease, visibility .24s ease;
  }

  .main-nav > a,
  .main-nav__categories > summary {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 0 4px;
    border-bottom: 1px solid #eee6dc;
    font-size: 16px;
    text-align: left;
  }

  .main-nav > a::after,
  .main-nav__categories > summary::after {
    right: auto;
    width: 50%;
  }

  .main-nav > a[aria-current="page"] {
    color: #8a5a2f;
  }

  .main-nav__categories {
    width: 100%;
  }

  .main-nav__categories > summary {
    justify-content: space-between;
  }

  .main-nav__dropdown {
    position: static;
    width: 100%;
    max-height: min(42dvh, 360px);
    margin: 0;
    padding: 10px 0 12px;
    overflow-x: hidden;
    overflow-y: auto;
    transform: none;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid #eee6dc;
    background: transparent;
  }

  .main-nav__category-groups {
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .main-nav__category-group {
    width: 100%;
    min-width: 0;
  }

  .main-nav__category-group h3 {
    padding-inline: 10px;
  }

  .main-nav__category-list {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .main-nav__all,
  .main-nav__category-list a {
    width: 100%;
    max-width: 100%;
    min-height: 40px;
    padding-inline: 10px;
    border-color: transparent;
    background: #faf7f2;
    font-size: 13px;
  }

  .main-nav__category-list a {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
  }

  .main-nav__category-name {
    width: 100%;
    min-width: 0;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 7px;
  }

  .main-nav__category-name > span:last-child {
    font-size: 12px;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .main-nav__category-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .main-nav__category-icon svg {
    width: 14px;
    height: 14px;
  }

  .main-nav__category-list small {
    min-width: 16px;
    align-self: center;
  }

  .nav-toggle:checked ~ .main-nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav__head {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid #dfd4c6;
  }

  .mobile-nav__head strong {
    color: var(--ink);
    font-family: Fraunces, Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 500;
  }

  .mobile-nav__close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid #e1d7ca;
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
  }

  .mobile-nav__close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
  }

  .mobile-nav__backdrop {
    position: fixed;
    inset: 0;
    z-index: 91;
    display: block;
    background: rgba(13, 24, 40, .42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s ease, visibility .24s ease;
  }

  .nav-toggle:checked ~ .mobile-nav__backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body:has(.nav-toggle:checked) {
    overflow: hidden;
  }

  .hero {
    padding-top: 8px;
  }

  .hero__grid {
    width: min(100% - 28px, var(--hero-shell));
  }

  .hero__panel {
    align-items: flex-end;
    min-height: 382px;
    background:
      linear-gradient(90deg, rgba(250, 247, 242, .35) 0%, rgba(250, 247, 242, .12) 48%, rgba(250, 247, 242, 0) 78%),
      linear-gradient(180deg, rgba(244, 236, 223, 0) 28%, rgba(244, 236, 223, .2) 52%, rgba(244, 236, 223, .9) 84%, rgba(244, 236, 223, .98) 100%),
      url("../img/hero-iznik-banner-wide.png?v=20260610-1") 72% bottom / auto 103% no-repeat;
    box-shadow:
      0 0 3px rgba(56, 43, 30, .17),
      0 0 13px rgba(56, 43, 30, .17);
  }

  .hero__panel::after {
    inset: 10px;
  }

  .hero__copy {
    max-width: 100%;
    padding: 128px 16px 18px;
    transform: translateY(-10px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: 29px;
    line-height: 1.06;
  }

  .hero__copy > p:not(.hero__eyebrow) {
    max-width: 100%;
    font-size: 13.5px;
  }

  .hero__copy-break {
    display: block;
  }

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

  .hero__actions .button {
    width: 100%;
    min-height: 40px;
    gap: 8px;
    padding: 0 12px;
    font-size: 12px;
  }

  .categories {
    width: 100%;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 26px 14px 38px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .categories::-webkit-scrollbar {
    display: none;
  }

  .category {
    flex: 0 0 116px;
    gap: 8px;
    scroll-snap-align: start;
  }

  .category img {
    width: 104px;
    height: 104px;
  }

  .category span:last-child {
    max-width: 104px;
    font-size: 11px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .section-heading > a {
    align-self: flex-end;
    font-size: 13px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }

  .quick-add {
    position: static;
    width: 100%;
    margin-top: 10px;
    opacity: 1;
    transform: none;
  }

  .features,
  .collection,
  .newsletter,
  .footer__main {
    grid-template-columns: 1fr;
  }

  .features {
    padding: 22px;
  }

  .atelier-note__inner {
    grid-template-columns: 1fr;
    padding: 24px 22px;
    gap: 18px;
  }

  .atelier-note__inner::after {
    top: auto;
    right: -26px;
    bottom: -8px;
    width: 76%;
    height: 92px;
    opacity: .18;
    background-size: auto 178%;
  }

  .atelier-note h2 {
    font-size: 28px;
  }

  .atelier-note__meta {
    justify-content: flex-start;
  }

  .newsletter {
    padding: 22px;
  }

  .newsletter__form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .newsletter input,
  .newsletter button {
    min-height: 46px;
    border: 1px solid var(--line);
  }

  .site-footer {
    padding: 38px 0 88px;
  }

  .footer__main {
    gap: 28px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer__bottom {
    align-items: center;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    text-align: center;
  }

  .footer__bottom p {
    width: 100%;
    text-align: center;
  }

  .footer__bottom div {
    width: 100%;
    margin-left: 0;
    justify-content: center;
    gap: 10px 16px;
    text-align: center;
  }

  .cart-drawer {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 52;
    width: 100%;
    height: min(76dvh, 680px);
    max-height: none;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    overflow: hidden;
    border-left: 0;
    border-top: 1px solid #e7ded2;
    border-radius: 18px 18px 0 0;
    background: #fffdfa;
    box-shadow: 0 -16px 38px rgba(21, 34, 53, .14);
    transform: translateY(100%);
  }

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

  body.cart-open .cart-overlay {
    z-index: 51;
  }

  .cart-drawer__handle {
    display: block;
    width: 44px;
    height: 4px;
    margin: 8px auto 0;
    border-radius: 999px;
    background: #d7c9b9;
  }

  .cart-drawer__header,
  .cart-drawer__footer {
    padding: 12px 14px;
  }

  .cart-drawer__body {
    min-height: 0;
    overflow-y: auto;
    padding: 6px 14px 10px;
  }

  .cart-drawer__footer {
    position: sticky;
    bottom: 0;
    z-index: 2;
  }

  .cart-drawer__header h2 {
    font-size: 24px;
    line-height: 1;
  }

  .cart-drawer__caption {
    margin-top: 3px;
    font-size: 12px;
  }

  .cart-drawer__close {
    width: 36px;
    height: 36px;
  }

  .cart-item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
    padding: 11px 0;
  }

  .cart-item__head {
    gap: 8px;
  }

  .cart-item__head strong,
  .cart-item__head b {
    font-size: 13px;
  }

  .cart-item__controls {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
  }

  .cart-item__actions {
    justify-content: flex-end;
  }

  .cart-inline {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .cart-summary-row span,
  .cart-summary-row strong {
    font-size: 13px;
  }

  .cart-drawer__actions {
    grid-template-columns: 1fr 1fr;
  }

  .cart-drawer__summary {
    gap: 8px;
    margin-bottom: 10px;
  }

  .cart-drawer__note {
    font-size: 11px;
  }

  .cart-secondary,
  .cart-primary {
    min-height: 42px;
    padding: 0 10px;
    font-size: 13px;
  }
}

@media (max-width: 460px) {
  .main-nav {
    width: min(90vw, 340px);
    padding: 14px 12px 22px;
  }

  .main-nav__dropdown {
    max-height: min(46dvh, 380px);
  }

  .main-nav__category-group h3 {
    padding-inline: 6px;
  }

  .main-nav__all,
  .main-nav__category-list a {
    padding-inline: 6px;
  }

  .main-nav__category-name {
    gap: 6px;
  }

  .main-nav__category-name > span:last-child {
    font-size: 11.5px;
  }

  .cart-drawer {
    height: min(74dvh, 640px);
  }

  .cart-drawer__header,
  .cart-drawer__footer {
    padding-inline: 12px;
  }

  .cart-drawer__body {
    padding-inline: 12px;
  }

  .cart-drawer__header h2 {
    font-size: 22px;
  }

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

  .cart-item__copy {
    gap: 6px;
  }

  .cart-item__head {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .cart-qty-stepper {
    grid-template-columns: 28px 34px 28px;
    min-height: 32px;
  }

  .cart-qty-stepper button,
  .cart-qty-input {
    height: 32px;
  }

  .cart-qty-stepper button {
    width: 28px;
    font-size: 16px;
  }

  .cart-inline--link {
    padding-inline: 4px;
  }

  .content-page__head h1,
  .content-card h2,
  .tracking-panel h2 {
    font-size: 26px;
  }

  .content-aside h3 {
    font-size: 19px;
  }

  .content-page__head,
  .content-card,
  .content-aside,
  .tracking-panel {
    padding: 16px 14px;
  }

  .content-page__head::before {
    background-size: 290px auto;
    opacity: .18;
  }

  .content-page__head::after {
    inset: 10px;
  }

  .checkout-panel h1,
  .checkout-panel h2,
  .checkout-summary h2 {
    font-size: 26px;
  }

  .checkout-panel,
  .checkout-summary {
    padding: 16px 14px;
  }

  .checkout-consent__check {
    grid-template-columns: 16px minmax(0, 1fr);
    padding: 12px;
  }

  .collection-tile {
    min-height: 126px;
    grid-template-columns: minmax(0, 1fr) 96px;
  }

  .collection-tile__copy {
    padding: 13px 10px 12px 12px;
    justify-content: flex-end;
  }

  .collection-tile__copy h3 {
    max-width: 104px;
    font-size: 19px;
  }

  .collection-tile__circle {
    right: -20px;
    width: 96px;
    height: 96px;
  }

  .product-gallery__thumbs {
    gap: 8px;
  }

  .product-summary {
    padding: 18px 15px;
  }

.product-summary__price strong {
    font-size: 30px;
  }

  .product-summary__chips {
    gap: 8px;
  }

  .product-summary__chips span {
    min-height: 32px;
    padding-inline: 11px;
    font-size: 11px;
  }

  .topbar__message {
    font-size: 12px;
  }

  .header__inner {
    gap: 10px;
  }

  .header-actions svg {
    width: 21px;
    height: 21px;
  }

  .cart-link {
    width: 34px;
    height: 34px;
  }

  .menu-button {
    width: 30px;
    height: 30px;
  }

  .menu-button span {
    width: 15px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero__copy {
    width: 100%;
    margin-top: auto;
    padding: 148px 14px 16px;
  }

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

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

  .product-card img {
    object-fit: contain;
  }

  .product-card__media {
    aspect-ratio: 1 / 1.02;
  }

  .badge {
    top: 10px;
    left: 10px;
    font-size: 10px;
  }

  .favorite {
    top: 9px;
    right: 9px;
  }

  .product-card h3 {
    font-size: 14px;
  }

  .quick-add {
    min-height: 38px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .checkout-summary__row--total span,
  .checkout-summary__row--total strong {
    font-size: 17px;
  }

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

@media (min-width: 1680px) {
  .collection-highlights__grid {
    gap: 18px;
  }

  .collection-tile {
    min-height: 156px;
    grid-template-columns: minmax(0, 1fr) 144px;
  }

  .collection-tile__circle {
    right: -26px;
    width: 142px;
    height: 142px;
  }

  .product-detail__grid {
    gap: 42px;
  }

  .product-summary {
    padding: 32px 32px 34px;
  }

  .product-summary h1 {
    font-size: 32px;
  }

  .detail-related {
    margin-top: 48px;
  }

  :root {
    --container: 1260px;
    --content-shell: 1240px;
    --hero-shell: 1460px;
  }

  .main-nav {
    gap: 34px;
  }

  .hero__grid {
    width: min(100% - 56px, var(--content-shell));
  }

  .topbar .container,
  .site-header .container,
  main .container,
  .site-footer .container {
    width: min(100% - 56px, var(--content-shell));
  }

  .hero__panel {
    min-height: 420px;
    background-position: 62% center;
  }

  .hero__copy {
    max-width: 450px;
    padding-left: 52px;
  }

  .atelier-note__inner {
    padding-inline: 44px;
  }

  .atelier-note__inner::after {
    width: min(42%, 620px);
    background-size: auto 208%;
  }

  .categories {
    gap: 28px;
  }

  .product-grid {
    gap: 26px;
  }

  .features {
    padding-inline: 52px;
  }

  .newsletter {
    grid-template-columns: minmax(320px, 1fr) minmax(420px, 620px);
    padding-inline: 42px;
  }
}

.admin-database-status__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-database-status__item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid #ece4d9;
  background: #fcfaf7;
}

.admin-database-status__item span {
  color: #8a7f73;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.admin-database-status__item strong {
  color: #1a2740;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.admin-database-status__item--wide {
  grid-column: span 3;
}

@media (max-width: 900px) {
  .admin-database-status__grid {
    grid-template-columns: 1fr;
  }

  .admin-database-status__item--wide {
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  .catalog-page {
    padding-inline: 14px;
  }

  .catalog-layout {
    display: block;
  }

  .catalog-content {
    width: 100%;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px;
  }

  .catalog-toolbar__actions {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
  }

  .catalog-sort,
  .catalog-mobile-trigger {
    width: 100%;
    min-width: 0;
  }

  .catalog-summary {
    display: none;
  }

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

  .catalog-grid .product-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-grid .product-card__media {
    margin: 10px 10px 0;
  }

  .catalog-grid .product-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.02;
    object-fit: contain;
  }

  .catalog-grid .product-card__body {
    padding: 14px 12px 12px;
  }

  .catalog-grid .product-card h3 {
    font-size: 15px;
    line-height: 1.35;
  }

  .catalog-grid .card-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

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

@media (max-width: 560px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .catalog-page {
    padding-inline: 10px;
  }

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

  .catalog-page .catalog-grid .product-card {
    min-width: 0;
  }

  .catalog-page .catalog-grid .product-card__media {
    min-height: 0;
    aspect-ratio: 1 / 1.24;
    margin: 7px 7px 0;
    padding: 7px;
  }

  .catalog-page .catalog-grid .product-card__body {
    min-width: 0;
    padding: 10px 9px 9px;
  }

  .catalog-page .catalog-grid .product-category {
    margin-bottom: 4px;
    overflow: hidden;
    font-size: 9px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .catalog-page .catalog-grid .product-card h3 {
    min-height: 34px;
    margin-bottom: 8px;
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .catalog-page .catalog-grid .price-line strong {
    overflow-wrap: anywhere;
    font-size: 16px;
    line-height: 1.15;
  }

  .catalog-page .catalog-grid .shipping-note {
    margin: 6px 0 8px;
    font-size: 10px;
  }

  .catalog-page .catalog-grid .card-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .catalog-page .catalog-grid .card-view,
  .catalog-page .catalog-grid .card-add {
    width: 100%;
    min-width: 0;
    min-height: 36px;
    padding: 4px;
    font-size: 10px;
    line-height: 1.15;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .catalog-page {
    padding-inline: 8px;
  }

  .catalog-page .catalog-grid {
    gap: 10px 8px;
  }

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

.product-card .product-card__media {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1.5;
  min-height: 336px;
  padding: 14px;
  background: #fff;
}

.product-card .product-card__media > img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 760px) {
  .product-card .product-card__media {
    min-height: 238px;
    aspect-ratio: 1 / 1.38;
    padding: 10px;
  }
}

@media (min-width: 1141px) {
  .product-detail__grid {
    grid-template-columns: minmax(360px, .82fr) minmax(460px, 1.18fr);
    gap: 28px;
  }

  .product-gallery {
    max-width: 560px;
    justify-self: start;
  }
}

.product-gallery .product-gallery__stage {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1.02;
  min-height: 0;
  max-height: min(620px, calc(100vh - 190px));
  padding: clamp(24px, 4.4vw, 48px);
  background: #fff;
}

.product-gallery .product-gallery__stage > img {
  width: auto;
  height: auto;
  max-width: 84%;
  max-height: 86%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.product-gallery .product-gallery__video {
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 92%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.product-gallery .product-gallery__thumbs button {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 6px;
}

.product-gallery .product-gallery__thumbs img,
.product-gallery-lightbox__thumbs img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 760px) {
  .product-gallery .product-gallery__stage {
    min-height: 0;
    max-height: none;
    aspect-ratio: 1 / 1.04;
    padding: 24px;
  }

  .product-gallery .product-gallery__stage > img {
    max-width: 88%;
    max-height: 88%;
  }
}

@media (max-width: 460px) {
  .product-gallery .product-gallery__stage {
    aspect-ratio: 1 / 1;
    padding: 18px;
  }
}

.product-detail-page .breadcrumbs {
  margin-bottom: 18px;
}

.product-detail-page .product-detail__grid {
  gap: clamp(30px, 3.2vw, 46px);
}

.product-detail-page .product-gallery {
  gap: 10px;
  width: 100%;
}

.product-detail-page .product-gallery .product-gallery__stage {
  aspect-ratio: 1 / 1.14;
  min-height: 0;
  border-color: #e7ded2;
  background: #fff;
  box-shadow: 0 12px 28px rgba(21, 34, 53, .055);
}

.product-detail-page .product-gallery .product-gallery__stage > img {
  max-width: 86%;
  max-height: 88%;
}

.product-detail-page .product-gallery .product-gallery__thumbs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: stretch;
  gap: 12px;
}

.product-detail-page .product-gallery .product-gallery__thumbs button {
  position: relative;
  padding: 8px;
  overflow: hidden;
  border-color: #e7ded2;
  background: #fff;
  box-shadow: none;
}

.product-detail-page .product-gallery .product-gallery__thumbs button > img {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  max-width: none;
  max-height: none;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.product-detail-page .product-gallery .product-gallery__thumbs button:hover,
.product-detail-page .product-gallery .product-gallery__thumbs button.is-active {
  border-color: #b98d61;
  transform: none;
  box-shadow: inset 0 0 0 1px rgba(185, 141, 97, .25);
}

.product-detail-page .product-summary {
  position: static;
  top: auto;
  gap: 20px;
  padding: 32px 34px 34px;
  border-color: #e7ded2;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 28px rgba(21, 34, 53, .045);
}

.product-detail-page .product-summary__head {
  gap: 14px;
  padding-bottom: 2px;
}

.product-detail-page .product-summary__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee7de;
}

.product-detail-page .product-summary__category {
  color: #9a6d3e;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  text-transform: none;
  transition: color .2s ease;
}

.product-detail-page .product-summary__category:hover,
.product-detail-page .product-summary__category:focus-visible {
  color: #17263b;
}

.product-detail-page .product-summary__sku {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 5px;
  min-width: 0;
  color: #858a91;
  font-size: 12px;
  line-height: 1.4;
}

.product-detail-page .product-summary__sku span {
  flex: 0 0 auto;
}

.product-detail-page .product-summary__sku strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #4d5663;
  font-size: 12px;
  font-weight: 600;
}

.product-detail-page .product-summary h1 {
  max-width: 820px;
  font-size: clamp(32px, 2.25vw, 42px);
  line-height: 1.08;
}

.product-detail-page .product-summary__head p {
  max-width: 700px;
  color: #66707e;
  font-size: 15.5px;
  line-height: 1.72;
}

.product-detail-page .product-summary__price {
  padding-top: 0;
}

.product-detail-page .product-summary__price strong {
  font-size: clamp(36px, 2.3vw, 42px);
  letter-spacing: .1px;
}

.product-detail-page .product-summary__purchase {
  gap: 14px;
}

.product-detail-page .product-summary__actions {
  gap: 14px;
}

.product-detail-page .detail-add,
.product-detail-page .detail-buy {
  min-height: 56px;
  font-size: 14.5px;
}

.product-detail-page .detail-buy {
  background: #fff;
}

.product-detail-page .product-summary__support {
  min-height: 50px;
  justify-content: flex-start;
  padding: 0 16px;
  border-color: #e4eee5;
  background: #fbfdfb;
  color: #28714c;
  font-size: 13.5px;
}

.product-detail-page .product-summary__support-mark {
  width: 28px;
  height: 28px;
}

.product-detail-page .product-summary__support svg {
  width: 17px;
  height: 17px;
}

.product-detail-page .product-summary__services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-detail-page .product-service {
  min-height: 58px;
  grid-template-columns: 19px minmax(0, 1fr);
  gap: 10px;
  padding: 12px 13px;
  background: #fff;
}

.product-detail-page .product-service svg {
  width: 19px;
  height: 19px;
}

.product-detail-page .product-service span {
  overflow: visible;
  font-size: 12.5px;
  line-height: 1.35;
  text-overflow: clip;
  white-space: normal;
}

.product-detail-page .product-description {
  margin-top: 24px;
}

.product-detail-page .product-description__inner {
  padding: 34px 38px;
  border-color: #e8dfd3;
  background: #fff;
}

.product-detail-page .product-description h2 {
  margin-bottom: 16px;
  font-size: 31px;
}

.product-detail-page .product-description p {
  max-width: 980px;
  font-size: 15.5px;
  line-height: 1.9;
}

.product-detail-page .detail-related {
  margin-top: 34px;
}

@media (min-width: 1141px) {
  .product-detail-page .product-detail__grid {
    grid-template-columns: minmax(440px, .9fr) minmax(520px, 1fr);
    align-items: start;
  }

  .product-detail-page .product-gallery {
    max-width: 620px;
    justify-self: start;
  }

  .product-detail-page .product-summary {
    align-self: start;
  }
}

@media (max-width: 760px) {
  .product-detail-page .breadcrumbs {
    margin-bottom: 14px;
  }

  .product-detail-page .product-detail__grid {
    gap: 16px;
  }

  .product-detail-page .product-gallery .product-gallery__stage {
    aspect-ratio: 1 / 1.12;
    padding: 16px;
  }

  .product-detail-page .product-gallery .product-gallery__stage > img {
    max-width: 88%;
    max-height: 88%;
  }

  .product-detail-page .product-gallery .product-gallery__thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
  }

  .product-detail-page .product-gallery .product-gallery__thumbs button {
    padding: 0;
  }

  .product-detail-page .product-gallery .product-gallery__thumbs button > img {
    inset: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }

  .product-detail-page .product-summary {
    gap: 16px;
    padding: 22px 18px;
  }

  .product-detail-page .product-summary h1 {
    font-size: 28px;
  }

  .product-detail-page .product-summary__head p {
    font-size: 14.5px;
  }

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

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

  .product-detail-page .product-service span {
    font-size: 11.5px;
    white-space: normal;
  }

  .product-detail-page .product-description__inner {
    padding: 24px 18px;
  }
}

@media (max-width: 520px) {
  .product-detail-page .product-summary__eyebrow {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 6px 12px;
  }

  .product-detail-page .product-summary__sku {
    justify-content: flex-start;
  }

  .products .product-grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, calc((100% - 10px) / 2));
    gap: 14px 10px;
    overflow: visible;
  }

  .products .product-grid .product-card {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border-color: #ded7ce;
  }

  .products .product-grid .product-card__media,
  .products .product-grid .product-card__body {
    width: auto;
    min-width: 0;
  }

  .product-detail-page .product-summary__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .product-detail-page .detail-add,
  .product-detail-page .detail-buy {
    min-width: 0;
    min-height: 48px;
    padding-inline: 8px;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
  }

  .product-detail-page .product-gallery .product-gallery__thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .product-detail-page .product-service {
    min-height: 52px;
  }
}

/* Admin mobile application layout */
.admin-nav-toggle,
.admin-sidebar-backdrop,
.admin-sidebar__close,
.admin-mobile-topbar,
.admin-mobile-nav {
  display: none;
}

.admin-sidebar__head {
  display: block;
}

@media (max-width: 980px) {
  body.admin-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
  }

  body.admin-page:has(.admin-nav-toggle:checked) {
    overflow: hidden;
  }

  .admin-shell {
    width: 100%;
    min-width: 0;
  }

  .admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 120;
    width: min(86vw, 320px);
    min-height: 100dvh;
    gap: 18px;
    padding: max(18px, env(safe-area-inset-top)) 16px calc(24px + env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(-105%);
    transition: transform .24s ease;
    box-shadow: 24px 0 56px rgba(8, 20, 39, .28);
  }

  .admin-nav-toggle:checked ~ .admin-sidebar {
    transform: translateX(0);
  }

  .admin-sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: block;
    background: rgba(8, 18, 33, .48);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
    backdrop-filter: blur(2px);
  }

  .admin-nav-toggle:checked ~ .admin-sidebar-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .admin-sidebar__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
  }

  .admin-sidebar__close,
  .admin-mobile-menu-button {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
  }

  .admin-sidebar__close svg,
  .admin-mobile-menu-button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
  }

  .admin-brand img {
    width: 166px;
  }

  .admin-nav {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .admin-nav a {
    min-height: 48px;
    grid-template-columns: 32px minmax(0, 1fr) auto;
  }

  .admin-nav a:hover,
  .admin-nav a.is-active {
    transform: none;
  }

  .admin-main {
    width: 100%;
    min-width: 0;
    margin-left: 0;
  }

  .admin-topbar {
    position: sticky;
    top: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
    padding: max(10px, env(safe-area-inset-top)) 14px 10px;
    background: rgba(250, 247, 241, .97);
  }

  .admin-mobile-topbar {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 11px;
  }

  .admin-mobile-menu-button {
    border-color: #ded4c7;
    background: #fff;
    color: #10284e;
    box-shadow: 0 6px 16px rgba(21, 34, 53, .05);
  }

  .admin-mobile-topbar > div {
    min-width: 0;
    display: grid;
    gap: 1px;
  }

  .admin-mobile-topbar small {
    color: #7a8492;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .admin-mobile-topbar strong {
    overflow: hidden;
    color: #10284e;
    font-size: 16px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .admin-toolbar {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    order: initial;
    justify-content: flex-end;
    gap: 8px;
  }

  .admin-search {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: none;
    min-height: 44px;
    order: initial;
    border-radius: 12px;
  }

  .admin-search input,
  .admin-form-field input,
  .admin-form-field select,
  .admin-form-field textarea,
  .admin-order-status-inline select,
  .admin-order-quick-edit select,
  .admin-order-quick-edit input {
    font-size: 16px;
  }

  .admin-profile > div {
    display: none;
  }

  .admin-profile {
    flex: 0 0 auto;
    padding: 3px;
    border: 0;
    background: transparent;
  }

  .admin-profile__avatar {
    width: 38px;
    height: 38px;
  }

  .admin-icon-button,
  .admin-logout {
    min-width: 40px;
    min-height: 40px;
  }

  .admin-logout {
    padding-inline: 10px;
  }

  .admin-notifications__panel {
    position: fixed;
    top: 116px;
    right: 12px;
    left: 12px;
    width: auto;
    max-height: calc(100dvh - 160px);
    overflow-y: auto;
  }

  .admin-content {
    width: 100%;
    min-width: 0;
    gap: 14px;
    padding: 14px 12px calc(92px + env(safe-area-inset-bottom));
  }

  .admin-welcome--compact {
    display: none;
  }

  .admin-panel,
  .admin-stat-card,
  .admin-orders-filter,
  .admin-order-table-row {
    min-width: 0;
    border-radius: 10px;
  }

  .admin-panel {
    padding: 15px;
  }

  .admin-product-form-panel {
    padding: 0;
  }

  .admin-panel__head,
  .admin-panel__head--table {
    gap: 12px;
    margin-bottom: 14px;
  }

  .admin-panel__head h2 {
    font-size: 24px;
  }

  .admin-panel__head p {
    font-size: 13px;
    line-height: 1.5;
  }

  .admin-table-actions,
  .admin-panel__filters,
  .admin-tool-actions,
  .admin-detail-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .admin-table-actions > *,
  .admin-panel__filters > *,
  .admin-tool-actions > *,
  .admin-detail-actions > * {
    width: 100%;
    min-width: 0;
  }

  .admin-table-actions form,
  .admin-tool-actions form,
  .admin-detail-actions form {
    display: flex;
  }

  .admin-select,
  .admin-primary,
  .admin-row-delete {
    min-height: 46px;
    justify-content: center;
  }

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

  .admin-stat-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding: 14px 12px;
  }

  .admin-stat-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .admin-stat-card__icon svg {
    width: 21px;
    height: 21px;
  }

  .admin-stat-card__copy strong {
    font-size: 23px;
  }

  .admin-stat-card__copy span,
  .admin-stat-card__copy small {
    font-size: 11px;
  }

  .admin-grid,
  .admin-dashboard-meta,
  .admin-detail-split,
  .admin-order-detail__grid,
  .admin-settings-layout,
  .admin-product-editor-layout,
  .admin-bulk-grid {
    grid-template-columns: 1fr;
  }

  .admin-product-form__layout {
    padding: 0 14px 18px;
  }

  .admin-product-form > .admin-panel__head {
    padding: 16px 14px 0;
  }

  .admin-product-section {
    gap: 14px;
    padding: 14px;
  }

  .admin-product-section--media {
    position: static;
    top: auto;
  }

  .admin-product-form__grid,
  .admin-shipping-rule,
  .admin-media-field,
  .admin-media-field--inline,
  .admin-product-upload-grid {
    grid-template-columns: 1fr;
  }

  .admin-form-field input,
  .admin-form-field select {
    min-height: 48px;
  }

  .admin-form-field textarea {
    min-height: 124px;
  }

  .admin-file-field input[type="file"] {
    max-width: 100%;
  }

  .admin-gallery-grid,
  .admin-gallery-grid--manager,
  .admin-gallery-grid--compact,
  .admin-product-editor-sidebar .admin-gallery-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-gallery-thumb--manager {
    max-width: none;
  }

  .admin-gallery-action {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
  }

  .admin-table-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .admin-table-wrap::before {
    content: "Tabloyu yana kaydırın";
    position: sticky;
    left: 0;
    display: block;
    width: fit-content;
    margin: 0 0 8px;
    padding: 5px 8px;
    border: 1px solid #e3d9cc;
    border-radius: 999px;
    background: #fffaf3;
    color: #79634e;
    font-size: 10px;
    font-weight: 700;
  }

  .admin-table {
    min-width: 760px;
  }

  .admin-table th,
  .admin-table td {
    padding: 12px 9px;
  }

  .admin-table th:last-child,
  .admin-table td:last-child {
    position: sticky;
    right: 0;
    z-index: 2;
    background: #fffdfa;
    box-shadow: -10px 0 18px rgba(21, 34, 53, .05);
  }

  .admin-table th:last-child {
    z-index: 3;
    background: #faf7f2;
  }

  .admin-product-cell {
    min-width: 230px;
  }

  .admin-table__footer {
    gap: 12px;
  }

  .admin-pagination {
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .admin-orders-hero {
    gap: 12px;
    padding: 2px 2px 0;
  }

  .admin-orders-hero .admin-primary {
    width: 100%;
  }

  .admin-orders-stats {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .admin-orders-stats::-webkit-scrollbar {
    display: none;
  }

  .admin-orders-stat {
    flex: 0 0 min(76vw, 280px);
    gap: 13px;
    padding: 16px;
    border-radius: 14px;
    scroll-snap-align: start;
  }

  .admin-orders-stat__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .admin-orders-stat__copy strong {
    font-size: 24px;
  }

  .admin-order-listing--table {
    display: grid;
    gap: 10px;
  }

  .admin-order-table-row {
    overflow: hidden;
    border: 1px solid #e6eaf2;
    background: #fff;
    box-shadow: 0 10px 26px rgba(17, 31, 57, .04);
  }

  .admin-order-table-row__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 15px;
  }

  .admin-order-table-col--customer,
  .admin-order-table-col--product,
  .admin-order-table-col--meta,
  .admin-order-table-col--total {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    min-width: 0;
    padding: 0;
    justify-items: start;
  }

  .admin-order-table-col--compact-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .admin-order-meta-pair {
    width: 100%;
    padding: 10px;
    border: 1px solid #edf0f5;
    border-radius: 8px;
    background: #fafbfe;
  }

  .admin-order-row__total {
    width: 100%;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: start;
    padding-top: 12px;
    border-top: 1px solid #edf0f5;
  }

  .admin-order-row__total strong {
    justify-self: end;
    font-size: 18px;
  }

  .admin-order-row__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .admin-order-row__actions > *,
  .admin-order-row__actions form,
  .admin-order-row__actions .admin-select,
  .admin-order-row__actions .admin-primary,
  .admin-order-row__actions .admin-row-delete,
  .admin-order-status-inline select {
    width: 100%;
    min-width: 0;
  }

  .admin-message-card,
  .admin-stock-row,
  .admin-activity-row {
    min-width: 0;
  }

  .admin-mobile-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: calc(66px + env(safe-area-inset-bottom));
    padding: 6px 5px env(safe-area-inset-bottom);
    border-top: 1px solid rgba(21, 34, 53, .1);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 -10px 30px rgba(16, 40, 78, .09);
    backdrop-filter: blur(18px);
  }

  .admin-mobile-nav a,
  .admin-mobile-nav label {
    min-width: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    padding: 4px 2px;
    color: #697486;
    cursor: pointer;
  }

  .admin-mobile-nav a.is-active {
    color: #10284e;
  }

  .admin-mobile-nav a.is-active::before {
    content: "";
    position: absolute;
    top: 4px;
    width: 22px;
    height: 3px;
    border-radius: 3px;
    background: #c18a50;
  }

  .admin-mobile-nav a,
  .admin-mobile-nav label {
    position: relative;
  }

  .admin-mobile-nav svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .admin-mobile-nav span {
    max-width: 100%;
    overflow: hidden;
    font-size: 10px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 520px) {
  .admin-topbar {
    padding-inline: 10px;
  }

  .admin-content {
    padding-inline: 10px;
  }

  .admin-toolbar {
    gap: 5px;
  }

  .admin-profile {
    display: none;
  }

  .admin-logout {
    min-width: 44px;
    padding-inline: 8px;
    font-size: 11px;
  }

  .admin-panel,
  .admin-product-section {
    padding: 13px;
  }

  .admin-product-form > .admin-panel__head {
    padding: 14px 12px 0;
  }

  .admin-table-actions,
  .admin-panel__filters,
  .admin-tool-actions,
  .admin-detail-actions {
    grid-template-columns: 1fr;
  }

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

  .admin-stat-card {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .admin-stat-card__icon {
    width: 38px;
    height: 38px;
  }

  .admin-stat-card__copy strong {
    font-size: 21px;
  }

  .admin-gallery-grid,
  .admin-gallery-grid--manager,
  .admin-gallery-grid--compact,
  .admin-product-editor-sidebar .admin-gallery-grid--compact {
    gap: 8px;
  }

  .admin-gallery-thumb--manager {
    padding: 6px;
  }

  .admin-gallery-thumb__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-gallery-action {
    width: 100%;
  }

  .admin-message-card {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 12px;
  }

  .admin-message-card__meta {
    grid-auto-flow: row;
  }
}

@media (max-width: 370px) {
  .admin-mobile-topbar small {
    display: none;
  }

  .admin-mobile-topbar strong {
    font-size: 14px;
  }

  .admin-logout {
    display: none;
  }

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

/* Product review moderation */
.admin-review-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-bottom: 18px; }
.admin-review-stats a { display: flex; justify-content: space-between; align-items: center; min-height: 72px; padding: 15px 17px; border: 1px solid #e6e9ef; border-radius: 8px; color: #1f2937; background: #fff; text-decoration: none; box-shadow: 0 8px 20px rgba(27, 38, 59, .04); }
.admin-review-stats span { color: #687386; font-size: 12px; font-weight: 700; }
.admin-review-stats strong { color: #263612; font-size: 25px; }
.admin-review-filter { display: flex; gap: 8px; align-items: center; }
.admin-review-filter input, .admin-review-filter select { min-height: 38px; border: 1px solid #dfe4eb; border-radius: 6px; padding: 8px 10px; color: #263247; background: #fff; font: 600 12px Inter, sans-serif; }
.admin-review-filter input { width: min(280px, 34vw); }
.admin-review-list { display: grid; gap: 12px; padding: 16px; }
.admin-review-card { border: 1px solid #e3e7ed; border-radius: 8px; padding: 16px; background: #fff; }
.admin-review-card__top { display: flex; justify-content: space-between; gap: 18px; }
.admin-review-card__top h3 { margin: 8px 0 4px; color: #1e293b; font-size: 15px; }
.admin-review-card__top p { margin: 0; color: #7a8495; font-size: 12px; }
.admin-review-status { display: inline-flex; padding: 5px 8px; border-radius: 12px; font-size: 10px; font-weight: 800; }
.admin-review-status.is-pending { color: #986214; background: #fff5d9; }
.admin-review-status.is-approved { color: #287044; background: #e8f6ed; }
.admin-review-status.is-rejected { color: #a13c3c; background: #fdeaea; }
.admin-review-rating { display: grid; gap: 3px; text-align: right; }
.admin-review-rating span { color: #e89d00; font-size: 17px; }
.admin-review-rating strong { color: #263247; font-size: 12px; }
.admin-review-card__content { margin-top: 14px; padding-top: 13px; border-top: 1px solid #eef0f4; }
.admin-review-card__content h4 { margin: 0 0 6px; color: #263247; font-size: 14px; }
.admin-review-card__content p { margin: 0; color: #5f6979; font-size: 13px; line-height: 1.65; }
.admin-review-card__content img { width: 86px; height: 86px; margin-top: 12px; object-fit: cover; border-radius: 6px; }
.admin-review-card__actions { display: grid; grid-template-columns: repeat(auto-fit, minmax(142px, 1fr)); gap: 8px; margin-top: 14px; }
.admin-review-card__actions form { min-width: 0; margin: 0; }
.admin-review-card__actions button { width: 100%; min-height: 40px; justify-content: center; padding: 0 12px; }
.admin-review-editor { display: grid; gap: 16px; margin-top: 14px; padding: 17px; border: 1px solid #dce3ce; border-radius: 8px; background: #f8faf4; }
.admin-review-editor[hidden] { display: none; }
.admin-review-editor__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.admin-review-editor__head > div { display: grid; gap: 3px; }
.admin-review-editor__head strong { color: #263612; font-size: 15px; }
.admin-review-editor__head small { color: #74806a; font-size: 12px; }
.admin-review-editor__head > button { width: 34px; height: 34px; display: grid; place-items: center; border: 0; border-radius: 6px; color: #43511f; background: #edf1e4; font-size: 22px; cursor: pointer; }
.admin-review-editor__grid { display: grid; grid-template-columns: minmax(0, 1fr) 150px; gap: 13px; }
.admin-review-editor__actions { display: flex; justify-content: flex-end; gap: 8px; }
.admin-review-editor__actions button { min-width: 170px; min-height: 42px; justify-content: center; }
@media (max-width: 900px) { .admin-review-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } .admin-panel__head--table { align-items: stretch; } .admin-review-filter { flex-wrap: wrap; } }
@media (max-width: 600px) { .admin-review-stats { grid-template-columns: 1fr; } .admin-review-filter { display: grid; } .admin-review-filter input { width: 100%; } .admin-review-card__top { display: grid; } .admin-review-rating { text-align: left; } .admin-review-card__actions, .admin-review-editor__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .admin-review-editor__grid .admin-form-field--full { grid-column: 1 / -1; } .admin-review-editor__actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); } .admin-review-editor__actions button { min-width: 0; width: 100%; } }

/* R.ALP admin brand theme */
body.admin-page {
  --ink: #263612;
  --ink-soft: #43551f;
  --muted: #68705f;
  --warm: #718344;
  --warm-dark: #43551f;
  --warm-soft: #eef1e4;
  background: #f3f5ef;
}

.admin-page .admin-sidebar {
  background: linear-gradient(180deg, #2c3d14 0%, #1e2c0c 100%);
  box-shadow: 18px 0 40px rgba(30, 44, 12, .14);
}

.admin-page .admin-brand span { color: rgba(236, 240, 222, .78); }
.admin-page .admin-nav a { color: rgba(255, 255, 255, .9); border-radius: 8px; }
.admin-page .admin-nav a:hover,
.admin-page .admin-nav a.is-active { background: rgba(238, 242, 222, .12); border-color: rgba(238, 242, 222, .14); }
.admin-page .admin-nav a:hover svg,
.admin-page .admin-nav a.is-active svg { background: rgba(238, 242, 222, .14); color: #e7edce; }
.admin-page .admin-nav b { color: #f0dfad; background: rgba(240, 223, 173, .14); }
.admin-page .admin-sidebar__card { border-color: rgba(238, 242, 222, .12); background: rgba(238, 242, 222, .06); }

.admin-page .admin-topbar { background: rgba(248, 249, 244, .94); border-color: rgba(67, 85, 31, .12); }
.admin-page .admin-search,
.admin-page .admin-search-results,
.admin-page .admin-profile,
.admin-page .admin-icon-button { border-color: rgba(67, 85, 31, .16); }
.admin-page .admin-search svg,
.admin-page .admin-icon-button { color: #53652d; }
.admin-page .admin-search-result:hover,
.admin-page .admin-search-result.is-active { background: #f0f3e8; }
.admin-page .admin-search-result mark { color: #43551f; border-color: #dce3c9; background: #f7f9f1; }
.admin-page .admin-notifications__clear { color: #43551f; }
.admin-page .admin-notification-row:hover { background: rgba(67, 85, 31, .06); }
.admin-page .admin-notification-row__dot--message { background: #687842; box-shadow: 0 0 0 5px rgba(104, 120, 66, .13); }

.admin-page .admin-welcome h1::after { width: 8px; height: 8px; margin-left: 9px; vertical-align: 9px; border-radius: 50%; background: #8a9b54; opacity: 1; }
.admin-page .admin-welcome p,
.admin-page .admin-panel__head p { color: #68705f; }
.admin-page .admin-ghost-link { color: #53652d; }
.admin-page .admin-stat-card,
.admin-page .admin-panel { border-color: rgba(67, 85, 31, .14); box-shadow: 0 12px 28px rgba(36, 48, 15, .055); }
.admin-page .admin-stat-card__icon--soft { color: #53652d; background: linear-gradient(180deg, #f4f0df 0%, #ebe4c8 100%); }
.admin-page .admin-stat-card__icon--dark { color: #fff; background: linear-gradient(180deg, #53652d 0%, #344519 100%); }
.admin-page .admin-select { color: #344519; border-color: #d4dbc1; background: #fff; }
.admin-page .admin-select:hover { border-color: #83945a; background: #f7f9f2; }
.admin-page .admin-primary { color: #fff; border-color: #344519; background: #344519; }
.admin-page .admin-primary:hover { border-color: #263612; background: #263612; }
.admin-page .admin-icon-button span { background: #83934f; }
.admin-page .admin-row-link { color: #43551f; }
.admin-page .admin-table th { color: #53604a; background: #f5f7f1; }
.admin-page .admin-table td { border-color: #e5e9dc; }
.admin-page .admin-review-stats strong { color: #344519; }

body.admin-login-page { background: #f3f5ef; }
.admin-login-page .admin-login-card { border-color: #dce2cd; background: rgba(255, 255, 255, .97); box-shadow: 0 24px 70px rgba(36, 48, 15, .1); }
.admin-login-page .admin-login-brand { color: #344519; }
.admin-login-page .admin-login-security strong { color: #344519; border-color: #ccd5b4; background: #f1f4e8; }

/* Centered admin branding and text-only profile. */
.admin-page .admin-brand {
  width: 100%;
  padding-right: 0;
  justify-items: center;
  gap: 5px;
  text-align: center;
}

.admin-page .admin-brand img {
  width: 184px;
  height: 88px;
  max-width: 100%;
  padding: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.admin-page .admin-brand span {
  width: 100%;
  text-align: center;
}

.admin-page .admin-profile {
  padding: 7px 11px;
}
.admin-login-page .admin-primary { color: #fff; border-color: #344519; background: #344519; }
.admin-login-page .admin-primary:hover { border-color: #263612; background: #263612; }
.admin-login-page .admin-form-field input:focus { border-color: #718344; box-shadow: 0 0 0 3px rgba(113, 131, 68, .13); }
