:root {
  --ink: #17201d;
  --muted: #68716d;
  --paper: #f7f5ef;
  --white: #fff;
  --forest: #123d34;
  --forest-2: #1d5648;
  --copper: #b66f43;
  --sand: #e9e0d1;
  --sage: #dce7df;
  --line: rgba(23, 32, 29, .13);
  --danger: #9d3d31;
  --shadow: 0 22px 60px rgba(26, 38, 34, .12);
  --container: min(1360px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: var(--container); margin-inline: auto; }
.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;
}

.announcement {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  color: #fff;
  background: var(--forest);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(247, 245, 239, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-main {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}
.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border: 2px solid var(--copper);
  transform: rotate(45deg);
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--paper);
}
.brand-mark::before { width: 10px; height: 41px; left: 10px; top: -5px; }
.brand-mark::after { width: 41px; height: 10px; left: -5px; top: 10px; }
.brand-text { display: grid; line-height: 1; }
.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: .2em;
}
.brand-text small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .23em;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.desktop-nav a {
  position: relative;
  padding: 31px 0 28px;
  font-size: 12px;
  font-weight: 700;
}
.mega-menu {
  position: relative;
}

.mega-menu-toggle {
  position: relative;
  min-height: 82px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.mega-menu-toggle:focus-visible {
  outline: 0;
}

.mega-menu-toggle:focus-visible::before {
  content: "";
  position: absolute;
  inset: 22px -12px;
  border: 2px solid rgba(182,111,67,.42);
  border-radius: 999px;
  pointer-events: none;
}

.mega-menu-toggle::after,
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 22px;
  height: 1px;
  background: var(--ink);
  transition: right .22s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after,
.mega-menu:hover .mega-menu-toggle::after,
.mega-menu:focus-within .mega-menu-toggle::after,
.mega-menu.is-open .mega-menu-toggle::after { right: 0; }

.mega-menu-panel {
  position: fixed;
  z-index: 93;
  top: var(--mega-panel-top, 82px);
  left: 50%;
  width: min(1140px, calc(100vw - 56px));
  max-height: calc(100vh - var(--mega-panel-top, 82px) - 48px);
  overflow: auto;
  padding: 20px 22px 22px;
  color: var(--ink);
  background: #faf7f0;
  border: 1px solid rgba(18,61,52,.1);
  border-radius: 18px;
  box-shadow: 0 26px 60px -28px rgba(18,61,52,.34), 0 10px 26px -18px rgba(18,61,52,.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transform-origin: top center;
  transition: opacity .19s cubic-bezier(.22,.61,.36,1), transform .19s cubic-bezier(.22,.61,.36,1);
}

/* hover köprüsü: toggle ile panel arası boşlukta menü kapanmasın */
.mega-menu-panel::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.desktop-nav .mega-menu-panel a {
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}

.mega-menu-panel a::after {
  display: none;
}

.mega-menu-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 2px 4px 14px;
  border-bottom: 1px solid rgba(18,61,52,.11);
}

.mega-menu-head > span {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.mega-menu-editorial-kicker {
  color: var(--copper);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.mega-menu-head strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 750;
  line-height: 1.15;
}

.mega-menu-head small {
  max-width: 520px;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.45;
}

.desktop-nav .mega-menu-all-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: var(--forest);
  background: rgba(18,61,52,.055);
  border: 1px solid rgba(18,61,52,.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.mega-menu-layout {
  display: grid;
  grid-template-columns: 196px minmax(0, 1fr) 256px;
  gap: 22px;
  padding-top: 16px;
  min-height: 286px;
}

.mega-menu-index {
  display: grid;
  align-content: start;
  gap: 2px;
  padding-right: 18px;
  border-right: 1px solid rgba(18,61,52,.1);
}

.desktop-nav .mega-menu-index-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  padding: 11px 12px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-left: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: color .16s ease, background .16s ease, border-color .16s ease;
}

.mega-menu-index-link span {
  color: inherit;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.2;
}

.desktop-nav .mega-menu-index-link:hover {
  color: var(--forest);
  background: rgba(182,111,67,.06);
  outline: 0;
}

.desktop-nav .mega-menu-index-link.is-active {
  color: var(--forest);
  background: rgba(250,244,235,.92);
  border-left-color: var(--copper);
}

.desktop-nav .mega-menu-index-link.is-active span {
  font-weight: 700;
}

.mega-menu-groups {
  min-width: 0;
}

.mega-menu-group {
  display: none;
  min-width: 0;
}

.mega-menu-group.is-active {
  display: block;
  animation: megaFade .2s cubic-bezier(.22,.61,.36,1);
}

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

.mega-menu-group-intro {
  margin: 0 0 12px;
  padding: 0 2px 12px;
  border-bottom: 1px solid rgba(18,61,52,.08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.mega-menu-group-intro span {
  display: inline-block;
  margin-right: 8px;
  color: var(--copper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mega-menu-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 14px;
  align-content: start;
}

.desktop-nav .mega-menu-link {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 0;
  padding: 11px 28px 11px 12px;
  color: var(--ink);
  border-radius: 10px;
  background: transparent;
  border: 0;
  transition: background .16s ease;
}

.desktop-nav .mega-menu-link::before {
  display: none;
}

.desktop-nav .mega-menu-link::after {
  content: "\203A";
  position: absolute;
  top: 12px;
  right: 13px;
  bottom: auto;
  left: auto;
  width: auto;
  height: auto;
  display: block;
  color: var(--copper);
  background: transparent;
  font-size: 17px;
  line-height: 1;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .16s ease, transform .16s ease;
}

.mega-menu-link span {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.mega-menu-link strong {
  color: var(--forest);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.mega-menu-link small {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.4;
}

.desktop-nav .mega-menu-link:hover,
.desktop-nav .mega-menu-link:focus-visible,
.desktop-nav .mega-menu-link.is-active {
  background: #fff;
  outline: 0;
}

.desktop-nav .mega-menu-link:hover strong,
.desktop-nav .mega-menu-link:focus-visible strong,
.desktop-nav .mega-menu-link.is-active strong {
  color: #9a5a32;
}

.desktop-nav .mega-menu-link:hover::after,
.desktop-nav .mega-menu-link:focus-visible::after,
.desktop-nav .mega-menu-link.is-active::after {
  opacity: 1;
  transform: translateX(0);
}

.desktop-nav .mega-menu-all-link:focus-visible,
.desktop-nav .mega-menu-index-link:focus-visible,
.desktop-nav .mega-menu-link:focus-visible,
.desktop-nav .mega-menu-editorial-actions a:focus-visible {
  outline: 2px solid rgba(182,111,67,.48);
  outline-offset: 3px;
}

.mega-menu-editorial {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 12px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255,253,248,.96), rgba(239,231,216,.74)),
    var(--paper);
  border: 1px solid rgba(18,61,52,.11);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

.mega-menu-editorial-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 12px;
  border-radius: 13px;
  background: var(--sand);
}

.mega-menu-editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-menu-editorial::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(18,61,52,.12);
  border-radius: 50%;
}

.mega-menu-editorial > * {
  position: relative;
  z-index: 1;
}

.mega-menu-editorial-kicker {
  color: var(--copper);
}

.mega-menu-editorial > strong {
  margin-top: 7px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.12;
}

.mega-menu-editorial p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.55;
}

.mega-menu-editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.desktop-nav .mega-menu-editorial-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #fff;
  background: var(--forest);
  border: 1px solid rgba(18,61,52,.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.desktop-nav .mega-menu-editorial-actions a + a {
  color: var(--forest);
  background: rgba(18,61,52,.06);
}

.mega-menu-editorial-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}

.mega-menu-editorial-meta span {
  display: grid;
  gap: 3px;
  padding-top: 10px;
  border-top: 1px solid rgba(18,61,52,.13);
}

.mega-menu-editorial-meta strong {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--forest);
  font-size: 17px;
  font-weight: 650;
}

.mega-menu-editorial-meta small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  line-height: 1.35;
}

.desktop-nav a.is-hotel,
.desktop-nav a.is-campaigns {
  color: var(--forest);
  font-weight: 850;
}

@media (max-width: 1180px) {
  .mega-menu-panel {
    width: calc(100vw - 40px);
  }

  .mega-menu-layout {
    grid-template-columns: 176px minmax(0, 1fr) 224px;
    gap: 18px;
  }
}

@media (max-width: 960px) {
  .mega-menu-panel {
    width: calc(100vw - 32px);
    padding: 16px;
    border-radius: 18px;
  }

  .mega-menu-head {
    flex-direction: column;
    gap: 12px;
  }

  .mega-menu-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mega-menu-index {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 6px;
    overflow-x: auto;
    padding: 0 0 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(18,61,52,.1);
  }

  .desktop-nav .mega-menu-index-link {
    border-left: 0;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
  }

  .desktop-nav .mega-menu-index-link.is-active {
    border-left-color: transparent;
    border-bottom-color: var(--copper);
  }

  .mega-menu-editorial {
    min-height: 0;
  }

  .mega-menu-editorial-media {
    display: none;
  }
}

.mega-menu.is-hovered .mega-menu-panel,
.mega-menu.is-focus-open .mega-menu-panel,
.mega-menu.is-open .mega-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

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

.header-search-field {
  position: relative;
  width: 100%;
}

.header-search-field button {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: var(--forest);
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.header-search-field button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: .2s ease;
}
.icon-button:hover { color: #fff; background: var(--forest); transform: translateY(-2px); }
.icon-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  color: #fff;
  background: var(--copper);
  border: 2px solid var(--paper);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}
.menu-button { display: none; }
.account-menu {
  position: relative;
}

.account-menu::after {
  content: "";
  position: absolute;
  z-index: 93;
  top: 100%;
  right: 0;
  width: 230px;
  height: 18px;
  pointer-events: none;
}

.account-menu:hover::after,
.account-menu:focus-within::after,
.account-menu.is-open::after {
  pointer-events: auto;
}

.account-dropdown {
  position: absolute;
  z-index: 94;
  top: calc(100% + 14px);
  right: 0;
  width: 230px;
  display: grid;
  gap: 4px;
  padding: 14px;
  color: var(--ink);
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(18,61,52,.12);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(18,61,52,.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease;
}

.account-dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 14px;
  width: 14px;
  height: 14px;
  background: inherit;
  border-top: 1px solid rgba(18,61,52,.12);
  border-left: 1px solid rgba(18,61,52,.12);
  transform: rotate(45deg);
}

.account-menu:hover .account-dropdown,
.account-menu:focus-within .account-dropdown,
.account-menu.is-open .account-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.account-dropdown strong {
  display: flex;
  align-items: center;
  min-height: 36px;
  margin: 0 0 6px;
  padding: 0 12px;
  color: var(--forest);
  background: rgba(18,61,52,.07);
  border: 1px solid rgba(18,61,52,.1);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
}

.account-dropdown a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  color: var(--ink);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.account-dropdown a:hover {
  color: var(--forest);
  background: rgba(18,61,52,.07);
}

.mobile-panel {
  position: fixed;
  z-index: 49;
  top: 118px;
  right: auto;
  bottom: 0;
  left: -100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: auto;
  padding: 42px 28px;
  color: #fff;
  background: var(--forest);
  transform: none;
  transition: left .3s ease;
}
body.menu-open .mobile-panel,
.mobile-panel.is-open {
  left: 0 !important;
  transform: none !important;
}
.mobile-panel a {
  position: relative;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}
.mobile-panel a.is-active {
  padding-left: 16px;
  color: #f1d1b9;
}
.mobile-panel a.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
}
.mobile-account-menu {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.mobile-account-menu strong {
  color: rgba(255,255,255,.56);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mobile-panel .mobile-account-menu a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 850;
}

.mobile-category-menu {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.mobile-category-menu > strong {
  color: rgba(255,255,255,.56);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mobile-category-group {
  overflow: hidden;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
}

.mobile-category-group summary {
  position: relative;
  min-height: 52px;
  display: grid;
  gap: 2px;
  align-content: center;
  padding: 10px 40px 10px 14px;
  cursor: pointer;
  list-style: none;
}

.mobile-category-group summary::-webkit-details-marker {
  display: none;
}

.mobile-category-group summary::after {
  content: "\203A";
  position: absolute;
  top: 50%;
  right: 17px;
  color: rgba(255,255,255,.72);
  font-size: 23px;
  line-height: 1;
  transform: translateY(-50%) rotate(90deg);
  transition: transform .18s ease;
}

.mobile-category-group[open] summary::after {
  transform: translateY(-50%) rotate(-90deg);
}

.mobile-category-group summary:focus-visible {
  outline: 2px solid rgba(233,196,168,.72);
  outline-offset: -3px;
  border-radius: 13px;
}

.mobile-category-group summary span {
  color: #fff;
  font-size: 14.5px;
  font-weight: 900;
  line-height: 1.2;
}

.mobile-category-group summary small {
  margin-top: 0;
  color: rgba(255,255,255,.58);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .07em;
  line-height: 1.25;
  text-transform: uppercase;
}

.mobile-category-group > div {
  display: grid;
  gap: 5px;
  padding: 0 7px 8px;
}

.mobile-panel .mobile-category-link {
  min-height: 0;
  display: grid;
  gap: 3px;
  align-items: start;
  padding: 10px 11px;
  color: #fff;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 850;
}

.mobile-panel .mobile-category-link span {
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.25;
}

.mobile-panel .mobile-category-link small {
  margin-top: 0;
  color: rgba(255,255,255,.56);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
}

.mobile-panel .mobile-category-link:hover,
.mobile-panel .mobile-category-link.is-active {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.21);
}

.mobile-panel a.mobile-special-link {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: #fff;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
}

.mobile-panel > small {
  margin-top: auto;
  color: rgba(255,255,255,.5);
  font-size: 11px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 22px 0;
  color: var(--muted);
  font-size: 11px;
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: #b2b8b5;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 25px; height: 1px; background: currentColor; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  color: #fff;
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: .2s ease;
}
.button:hover { background: var(--forest-2); border-color: var(--forest-2); transform: translateY(-2px); }
.button.light { color: var(--ink); background: #fff; border-color: var(--line); }
.button.light:hover { color: #fff; background: var(--forest); }
.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.category-hero {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  min-height: 390px;
  overflow: hidden;
  background: var(--sand);
  border-radius: 28px;
}
.category-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 64px;
}
.category-hero h1 {
  margin: 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.04em;
}
.category-hero p {
  max-width: 520px;
  margin: 0;
  color: #59635f;
  font-size: 14px;
  line-height: 1.75;
}
.category-hero-image { position: relative; min-height: 390px; overflow: hidden; }
.category-hero-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.category-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(233,224,209,.3), transparent 32%);
}
.category-links {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 28px 0 34px;
  scrollbar-width: none;
}
.category-links::-webkit-scrollbar { display: none; }
.category-link {
  flex: 0 0 auto;
  min-width: 164px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 13px;
  align-items: center;
  padding: 10px 14px 10px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 11px;
  font-weight: 750;
}
.category-link img { width: 50px; height: 50px; object-fit: cover; border-radius: 11px; }
.category-link:hover { border-color: rgba(18,61,52,.45); }

.catalog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  padding: 42px 0 25px;
  border-top: 1px solid var(--line);
}
.catalog-head h2 {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -.03em;
}
.catalog-tools { display: flex; align-items: center; gap: 10px; }
.catalog-count { color: var(--muted); font-size: 11px; }
.tool-button,
.sort-select {
  min-height: 42px;
  padding: 0 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.tool-button { display: none; cursor: pointer; }
.sort-select { min-width: 180px; outline: 0; }
.catalog-layout {
  display: grid;
  grid-template-columns: 235px 1fr;
  gap: 36px;
  align-items: start;
  padding-bottom: 100px;
}

.category-seo {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 34px;
  margin: 10px 0 90px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.category-seo-head h2 {
  margin: 14px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.03em;
}

.category-seo-head p,
.category-seo-description,
.category-seo-grid p {
  color: #59635f;
  font-size: 13px;
  line-height: 1.75;
}

.category-seo-description {
  grid-column: 1 / -1;
  max-width: 980px;
}

.category-seo-description > :first-child {
  margin-top: 0;
}

.category-seo-description > :last-child {
  margin-bottom: 0;
}

.category-seo-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.category-seo-description + .category-seo-grid {
  grid-column: 1 / -1;
}

.category-seo-grid article {
  min-width: 0;
  padding: 18px;
  background: var(--sage);
  border: 1px solid rgba(18,61,52,.08);
  border-radius: 16px;
}

.category-seo-grid h3 {
  margin: 0 0 9px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
}

.category-seo-grid p {
  margin: 0;
  font-size: 12px;
}

.filters {
  position: sticky;
  top: 112px;
  background: var(--paper);
}
.filters-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
}
.filters-head strong { font-size: 12px; }
.clear-filters {
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 10px;
  text-decoration: underline;
}
.filter-group { border-bottom: 1px solid var(--line); }
.filter-toggle {
  width: 100%;
  min-height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}
.filter-toggle::after { content: "−"; font-size: 18px; font-weight: 400; }
.filter-group.is-closed .filter-toggle::after { content: "+"; }
.filter-content { padding: 0 0 18px; }
.filter-group.is-closed .filter-content { display: none; }
.check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  color: #505a56;
  cursor: pointer;
  font-size: 11px;
  text-decoration: none;
}
.check:hover { color: var(--forest); }
.check input { accent-color: var(--forest); }
.check small { margin-left: auto; color: #9aa09d; }
.check.is-active { color: var(--forest); font-weight: 800; }
.price-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.price-fields input {
  width: 100%;
  min-height: 39px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  font-size: 11px;
}
.price-filter-form { display: grid; gap: 10px; }
.filter-apply {
  min-height: 38px;
  color: #fff;
  background: var(--forest);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}
.filter-apply:hover { background: var(--forest-2); }
.filter-hint { color: var(--muted); font-size: 9px; }
.swatches { display: flex; flex-wrap: wrap; gap: 9px; }
.swatch {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
  cursor: pointer;
  text-decoration: none;
}
.swatch.is-active { box-shadow: 0 0 0 2px var(--forest); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 18px; }
.product-card { min-width: 0; }
.product-media {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #eeeae2;
  border-radius: 18px;
}
.product-media > a,
.product-media > a img { width: 100%; height: 100%; }
.product-media img { object-fit: cover; transition: transform .55s ease; }
.product-card:hover .product-media > a img { transform: scale(1.025); }
.product-badges {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.product-badge {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-badge.sale { color: #fff; background: var(--danger); }
.product-badge.home-hit { color: #fff; background: var(--forest); }
.home-product-highlight .product-media {
  box-shadow: 0 18px 44px rgba(18, 61, 52, .16);
  outline: 1px solid rgba(166, 114, 63, .28);
}
.home-product-highlight .product-title { color: var(--forest); }
.wishlist {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}
.wishlist svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.wishlist.is-active { color: #fff; background: var(--copper); }
.wishlist.is-active svg { fill: currentColor; }
.product-quick-view {
  position: absolute;
  z-index: 3;
  left: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(16,26,24,.08);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(16,26,24,.16);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, border-color .18s ease, color .18s ease;
}
.product-quick-view svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.product-card:hover .product-quick-view,
.product-quick-view:focus-visible {
  opacity: 1;
  transform: none;
}
.product-quick-view:hover {
  color: var(--forest);
  border-color: rgba(16,74,62,.24);
}
.product-variant-preview {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}
.product-variant-count {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px 4px 6px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(16,26,24,.18);
  cursor: default;
  font-size: 11px;
  font-weight: 850;
  pointer-events: auto;
  transition: opacity .16s ease, transform .16s ease;
}
.product-variant-count-dot {
  width: 18px;
  height: 18px;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50%;
  background: conic-gradient(#b99a75 0 25%, #dee5e1 0 50%, #d7a2b0 0 75%, #526f9d 0);
  box-shadow: 0 0 0 1px rgba(16,26,24,.14);
}
.product-variant-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(32,45,42,.1);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(16,26,24,.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}
.product-variant-preview:hover .product-variant-count,
.product-variant-preview:focus-within .product-variant-count {
  opacity: 0;
  transform: translateY(6px);
}
.product-variant-preview:hover .product-variant-panel,
.product-variant-preview:focus-within .product-variant-panel {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.product-variant-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
}
.product-variant-panel-head small {
  color: var(--copper);
  font-size: 10px;
  font-weight: 850;
  white-space: nowrap;
}
.product-variant-panel-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}
.product-variant-panel-item {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  min-width: 0;
  color: var(--forest);
  background: #f5f2ec;
  border: 1px solid var(--line);
  border-radius: 7px;
  text-decoration: none;
}
.product-variant-panel-item.is-active {
  border-color: var(--copper);
  box-shadow: 0 0 0 2px rgba(183,139,92,.2);
}
.product-variant-panel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none !important;
  transition: none;
}
.product-variant-panel-item span {
  padding: 4px;
  overflow: hidden;
  font-size: 9px;
  font-weight: 850;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.quick-add {
  position: absolute;
  z-index: 2;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 43px;
  color: #fff;
  background: rgba(18,61,52,.94);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: .25s ease;
}
.product-card:hover .quick-add,
.quick-add:focus-visible { opacity: 1; transform: none; }
.quick-add.is-added { background: var(--copper); }
.product-info { padding: 15px 3px 0; }
.product-brand {
  color: var(--muted);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-title {
  display: block;
  min-height: 42px;
  margin: 7px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.25;
}
.product-rating { color: var(--copper); font-size: 11px; letter-spacing: .08em; }
.product-rating small { margin-left: 5px; color: var(--muted); letter-spacing: 0; }
.product-price { display: flex; align-items: baseline; gap: 8px; margin-top: 9px; }
.product-price strong { font-size: 15px; }
.product-price del { color: #9ca29f; font-size: 11px; }
.product-card-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 2px;
}
.product-card-variant-label {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 28px;
  margin: 8px 0 2px;
  padding: 6px 10px;
  overflow: hidden;
  border: 1px solid rgba(183, 139, 92, .42);
  border-radius: 8px;
  background: #fff;
  color: var(--forest);
  font-size: 10px;
  font-weight: 850;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.product-card-variant {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
}
.product-card-variant img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card-variant span {
  padding: 0 5px;
  overflow: hidden;
  font-size: 8px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-card-variant.is-active {
  border-color: var(--copper);
  box-shadow: 0 0 0 2px rgba(183, 139, 92, .18);
}
.product-card-variant:disabled {
  cursor: not-allowed;
  opacity: .42;
}
.product-card-cart-discount {
  width: fit-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
  padding: 0 9px;
  color: var(--forest);
  background: rgba(18, 61, 52, .08);
  border: 1px solid rgba(18, 61, 52, .12);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}
.product-card-cart-discount::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--copper);
  border-radius: 50%;
}
.product-colors { display: flex; gap: 6px; margin-top: 10px; }
.product-colors span { width: 13px; height: 13px; border: 1px solid rgba(0,0,0,.12); border-radius: 50%; }
.load-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 54px 0 0;
}
.load-more span { color: var(--muted); font-size: 10px; }
.load-track { width: min(310px, 80%); height: 2px; overflow: hidden; background: #dddcd7; }
.load-track::after { content: ""; display: block; width: 38%; height: 100%; background: var(--forest); }

.product-page { padding-bottom: 100px; }
.product-layout {
  --product-gallery-height: clamp(560px, calc(100vh - 146px), 760px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
  gap: 56px;
  align-items: start;
}
.gallery {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-width: 0;
}
.gallery-thumbs {
  position: relative;
  height: var(--product-gallery-height);
  min-width: 0;
}
.thumbs {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden auto;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scrollbar-width: none;
}
.thumbs::-webkit-scrollbar { display: none; }
.gallery-thumbs.has-overflow .thumbs { padding-block: 38px; }
.thumb {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: .78;
  scroll-snap-align: start;
  overflow: hidden;
  padding: 0;
  background: #eeeae2;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
}
.thumb.is-active { border-color: var(--forest); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb-scroll {
  position: absolute;
  left: 50%;
  z-index: 3;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--forest);
  background: rgba(255,255,255,.93);
  border: 1px solid rgba(23,32,29,.12);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(23,32,29,.12);
  cursor: pointer;
  transform: translateX(-50%);
}
.thumb-scroll::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}
.thumb-scroll-up { top: 4px; }
.thumb-scroll-up::before { transform: translateY(2px) rotate(45deg); }
.thumb-scroll-down { bottom: 4px; }
.thumb-scroll-down::before { transform: translateY(-2px) rotate(225deg); }
.gallery-thumbs:not(.has-overflow) .thumb-scroll,
.thumb-scroll.is-disabled {
  opacity: 0;
  pointer-events: none;
}
.main-image {
  position: relative;
  height: var(--product-gallery-height);
  overflow: hidden;
  background: #eeeae2;
  border-radius: 22px;
}
.main-image img { width: 100%; height: 100%; object-fit: cover; }
.main-image.is-stock-empty img {
  filter: saturate(.78) brightness(.82);
}
.image-label {
  position: absolute;
  top: 18px;
  left: 18px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #fff;
  background: var(--danger);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-stock-empty[hidden] {
  display: none;
}
.product-stock-empty {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(16, 73, 60, .92);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(16, 26, 24, .24);
}
.product-stock-empty strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}
.product-stock-empty button {
  min-height: 34px;
  padding: 0 13px;
  color: var(--forest);
  background: #fff;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 850;
  white-space: nowrap;
}
.product-panel {
  position: sticky;
  top: 112px;
  padding: 12px 0;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  color: var(--muted);
  font-size: 10px;
}
.product-panel h1 {
  margin: 15px 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 3.1vw, 50px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.035em;
}
.product-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 13px;
  font-size: 11px;
}
.rating-row .stars { color: var(--copper); letter-spacing: .1em; }
.rating-row a { color: var(--muted); text-decoration: underline; }
.detail-price {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin-top: 20px;
}
.detail-price strong { font-size: 28px; }
.detail-price del { color: #9aa09d; font-size: 14px; }
.detail-price .discount { color: var(--danger); font-size: 11px; font-weight: 800; }
.installment { margin-top: 7px; color: var(--muted); font-size: 10px; }
.option { padding: 18px 0; border-top: 1px solid var(--line); }
.option-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  font-size: 11px;
}
.option-head strong { font-weight: 800; }
.option-head span,
.option-head a { color: var(--muted); }
.option-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.option-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}
.option-button.is-active { color: #fff; background: var(--forest); border-color: var(--forest); }
.minimum-notice {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 12px;
  padding: 7px 11px;
  color: #715532;
  background: #fff8ed;
  border: 1px solid #eadcc8;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
}
.minimum-total-card {
  display: inline-grid;
  gap: 3px;
  min-width: min(100%, 292px);
  margin-top: 10px;
  padding: 11px 13px;
  color: #17372d;
  background: #f3faf5;
  border: 1px solid #cfe8d8;
  border-radius: 10px;
}
.minimum-total-card span {
  color: #5d7069;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.minimum-total-card strong {
  color: var(--forest);
  font-size: 19px;
  line-height: 1.1;
}
.minimum-total-card small {
  color: #53645e;
  font-size: 11px;
  font-weight: 700;
}
.minimum-total-card small span {
  color: inherit;
  font-size: inherit;
  text-transform: none;
}
.product-campaign-strip {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.product-campaign-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(23, 32, 29, .1);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(26, 38, 34, .06);
}
.product-campaign-card.is-cart {
  color: #fff;
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  border-color: transparent;
}
.product-campaign-card.is-discount {
  background: #fff8ed;
  border-color: #eadcc8;
}
.product-campaign-card.is-soft {
  background: #f6faf7;
  border-color: #dbe9df;
}
.product-campaign-card.is-reward {
  background: #eef8f3;
  border-color: #cfe5dc;
}
.product-campaign-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
  font-size: 14px;
}
.product-campaign-card.is-cart .product-campaign-icon {
  color: #fff;
  background: rgba(255, 255, 255, .16);
}
.product-campaign-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.product-campaign-copy strong {
  color: var(--forest);
  font-size: 11px;
  font-weight: 900;
}
.product-campaign-copy small,
.product-campaign-price small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}
.product-campaign-price {
  display: grid;
  gap: 2px;
  justify-items: end;
  text-align: right;
  white-space: nowrap;
}
.product-campaign-price strong {
  color: var(--forest);
  font-size: 18px;
  font-weight: 950;
}
.product-campaign-card.is-reward .product-campaign-price {
  min-width: 86px;
  padding: 9px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(16, 73, 60, .14);
}
.product-campaign-card.is-reward .product-campaign-price small {
  color: #6e837b;
}
.product-campaign-card.is-reward .product-campaign-price strong {
  font-size: 15px;
}
.product-campaign-card.is-cart .product-campaign-copy strong,
.product-campaign-card.is-cart .product-campaign-copy small,
.product-campaign-card.is-cart .product-campaign-price small,
.product-campaign-card.is-cart .product-campaign-price strong {
  color: #fff;
}
.variant-picker {
  display: grid;
  gap: 12px;
}
.variant-picker-group {
  display: grid;
  gap: 7px;
  min-width: 0;
}
.variant-picker-heading {
  display: flex;
  gap: 5px;
  align-items: baseline;
  color: var(--ink);
  font-size: 12px;
}
.variant-picker-heading span {
  font-weight: 700;
}
.variant-picker-heading strong {
  font-weight: 900;
}
.variant-picker-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 9px;
  min-width: 0;
  overflow: auto hidden;
  padding: 2px 2px 6px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.variant-picker-list::-webkit-scrollbar {
  display: none;
}
.variant-swatch,
.variant-chip {
  position: relative;
  display: inline-grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
}
.variant-swatch {
  flex: 0 0 auto;
  width: 66px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  padding: 3px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(26, 38, 34, .08);
  scroll-snap-align: start;
}
.variant-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.variant-swatch span,
.variant-chip span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.variant-chip {
  flex: 0 0 auto;
  min-width: 74px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
}
.variant-swatch.is-active,
.variant-chip.is-active {
  border-color: #b24735;
  box-shadow: 0 0 0 2px rgba(178, 71, 53, .18);
}
.variant-swatch:disabled,
.variant-chip:disabled {
  cursor: not-allowed;
}
.variant-swatch.is-out-of-stock,
.variant-chip.is-out-of-stock,
.variant-swatch:disabled,
.variant-chip:disabled {
  color: #9a9f9a;
  background: #fbfaf7;
  border-color: #ddd8cf;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.66);
  opacity: 1;
}
.variant-swatch.is-out-of-stock img,
.variant-swatch:disabled img {
  filter: grayscale(.08) saturate(.72);
  opacity: .62;
}
.variant-swatch.is-out-of-stock::before,
.variant-chip.is-out-of-stock::before,
.variant-swatch:disabled::before,
.variant-chip:disabled::before {
  content: "";
  position: absolute;
  left: -12%;
  top: 50%;
  z-index: 2;
  width: 124%;
  height: 1px;
  background: rgba(143, 148, 143, .52);
  transform: rotate(24deg);
  pointer-events: none;
}
.variant-swatch.is-out-of-stock::before,
.variant-swatch:disabled::before {
  left: -22%;
  width: 144%;
  transform: rotate(58deg);
}
.variant-swatch.is-active.is-out-of-stock,
.variant-chip.is-active.is-out-of-stock {
  color: #6f766f;
  background: #fbfaf7;
  border-color: #b8b1a6;
  box-shadow: 0 0 0 2px rgba(26, 38, 34, .06);
}
.variant-swatch.is-active.is-out-of-stock::before,
.variant-chip.is-active.is-out-of-stock::before {
  background: rgba(116, 122, 116, .62);
}
.variant-stock-bell {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 3;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(202, 197, 187, .96);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(26,38,34,.13);
  pointer-events: none;
}
.variant-stock-bell::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 1px;
  border: 1.5px solid #8b908a;
  border-bottom: 0;
  border-radius: 8px 8px 3px 3px;
}
.variant-stock-bell::after {
  content: "";
  position: absolute;
  bottom: 3.5px;
  left: 50%;
  width: 5px;
  height: 1.5px;
  background: #8b908a;
  border-radius: 999px;
  transform: translateX(-50%);
}
.variant-chip .variant-stock-bell {
  top: -6px;
  right: -6px;
  width: 16px;
  height: 16px;
}
.variant-chip .variant-stock-bell::before {
  width: 6px;
  height: 6px;
}
.variant-chip .variant-stock-bell::after {
  bottom: 3px;
  width: 4px;
}
.variant-swatch.is-active.is-out-of-stock .variant-stock-bell,
.variant-chip.is-active.is-out-of-stock .variant-stock-bell {
  background: rgba(255,255,255,.96);
  border-color: #aeb7b0;
  box-shadow: 0 4px 10px rgba(26,38,34,.14);
}
.variant-swatch.is-active.is-out-of-stock .variant-stock-bell::before,
.variant-chip.is-active.is-out-of-stock .variant-stock-bell::before {
  border-color: #69756f;
  border-bottom: 0;
}
.variant-swatch.is-active.is-out-of-stock .variant-stock-bell::after,
.variant-chip.is-active.is-out-of-stock .variant-stock-bell::after {
  background: #69756f;
}
.variant-swatch.is-notify-requested,
.variant-chip.is-notify-requested,
.product-quick-swatch.is-notify-requested,
.product-quick-chip.is-notify-requested,
.option-button.is-notify-requested {
  border-color: rgba(16, 73, 60, .46);
}
.variant-swatch.is-notify-requested .variant-stock-bell,
.variant-chip.is-notify-requested .variant-stock-bell,
.product-quick-swatch.is-notify-requested .variant-stock-bell,
.product-quick-chip.is-notify-requested .variant-stock-bell,
.option-button.is-notify-requested .variant-stock-bell {
  background: #10493c;
  border-color: #fff;
  box-shadow: 0 5px 13px rgba(16, 73, 60, .25);
}
.variant-swatch.is-notify-requested .variant-stock-bell::before,
.variant-chip.is-notify-requested .variant-stock-bell::before,
.product-quick-swatch.is-notify-requested .variant-stock-bell::before,
.product-quick-chip.is-notify-requested .variant-stock-bell::before,
.option-button.is-notify-requested .variant-stock-bell::before {
  border-color: #fff;
  border-bottom: 0;
}
.variant-swatch.is-notify-requested .variant-stock-bell::after,
.variant-chip.is-notify-requested .variant-stock-bell::after,
.product-quick-swatch.is-notify-requested .variant-stock-bell::after,
.product-quick-chip.is-notify-requested .variant-stock-bell::after,
.option-button.is-notify-requested .variant-stock-bell::after {
  background: #fff;
}
.is-notify-loading .variant-stock-bell {
  opacity: .55;
}
.has-stock-notify-modal,
.has-stock-notify-result-modal { overflow: hidden; }
.stock-notify-modal[hidden] { display: none; }
.stock-notify-modal {
  position: fixed;
  inset: 0;
  z-index: 10080;
  display: grid;
  place-items: center;
  padding: 22px;
}
.stock-notify-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 23, .58);
  backdrop-filter: blur(2px);
}
.stock-notify-dialog {
  position: relative;
  z-index: 1;
  width: min(430px, calc(100vw - 28px));
  display: grid;
  gap: 14px;
  padding: 28px;
  background: #fffefa;
  border: 1px solid rgba(16, 73, 60, .12);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(19, 31, 27, .22);
}
.stock-notify-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}
.stock-notify-close:hover {
  color: var(--forest);
  border-color: rgba(16, 73, 60, .3);
}
.stock-notify-kicker {
  color: #b24735;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}
.stock-notify-dialog h2 {
  margin: 0;
  padding-right: 36px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.08;
}
.stock-notify-dialog p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.stock-notify-dialog label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}
.stock-notify-dialog input {
  min-height: 44px;
  width: 100%;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
}
.stock-notify-dialog input:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(16, 73, 60, .13);
}
.stock-notify-alert {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.45;
}
.stock-notify-alert.is-success {
  color: #10493c;
  background: #dfeee7;
}
.stock-notify-alert.is-error {
  color: #8e2f21;
  background: #f7e5df;
}
.stock-notify-submit {
  min-height: 48px;
  color: #fff;
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
  font-weight: 850;
}
.stock-notify-submit:disabled {
  cursor: wait;
  opacity: .7;
}
.stock-notify-submit:hover:not(:disabled) {
  background: #0d3d32;
}
.stock-notify-result-modal[hidden] { display: none; }
.stock-notify-result-modal {
  position: fixed;
  inset: 0;
  z-index: 10095;
  display: grid;
  place-items: center;
  padding: 22px;
}
.stock-notify-result-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 23, .62);
  backdrop-filter: blur(2px);
}
.stock-notify-result-dialog {
  position: relative;
  z-index: 1;
  width: min(470px, calc(100vw - 28px));
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 38px 34px 34px;
  color: var(--ink);
  background: #fffefa;
  border: 1px solid rgba(16, 73, 60, .12);
  border-radius: 14px;
  box-shadow: 0 28px 80px rgba(19, 31, 27, .26);
  text-align: center;
}
.stock-notify-result-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}
.stock-notify-result-close:hover {
  color: var(--forest);
  border-color: rgba(16, 73, 60, .3);
}
.stock-notify-result-icon {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
  color: var(--forest);
  border: 3px solid rgba(16, 73, 60, .52);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(16, 73, 60, .12);
}
.stock-notify-result-envelope {
  position: relative;
  width: 46px;
  height: 32px;
  border: 3px solid currentColor;
  border-radius: 5px;
}
.stock-notify-result-envelope::before,
.stock-notify-result-envelope::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 28px;
  height: 3px;
  background: currentColor;
  transform-origin: top;
}
.stock-notify-result-envelope::before {
  left: 1px;
  transform: rotate(34deg);
}
.stock-notify-result-envelope::after {
  right: 1px;
  transform: rotate(-34deg);
}
.stock-notify-result-badge {
  position: absolute;
  top: 4px;
  right: -2px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--forest);
  border: 3px solid #fffefa;
  border-radius: 50%;
  box-shadow: 0 7px 16px rgba(16, 73, 60, .23);
}
.stock-notify-result-badge::before {
  content: "";
  width: 9px;
  height: 15px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(42deg) translate(-1px, -1px);
}
.stock-notify-result-kicker {
  color: var(--forest);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}
.stock-notify-result-dialog h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.08;
}
.stock-notify-result-dialog p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.stock-notify-result-ok {
  width: 100%;
  min-height: 50px;
  margin-top: 10px;
  color: #fff;
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}
.stock-notify-result-ok:hover {
  background: var(--forest-2);
}
.has-product-quick-modal { overflow: hidden; }
.product-quick-modal[hidden] { display: none; }
.product-quick-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: 24px;
}
.product-quick-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 23, .58);
  backdrop-filter: blur(2px);
}
.product-quick-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 32px));
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(320px, 1fr);
  gap: 26px;
  overflow: auto;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(32,45,42,.1);
  border-radius: 10px;
  box-shadow: 0 28px 90px rgba(16,26,24,.26);
}
.product-quick-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}
.product-quick-media {
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: #f3efe8;
  border-radius: 8px;
}
.product-quick-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product-quick-copy {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 24px 10px 8px 0;
}
.product-quick-brand {
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-quick-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.12;
}
.product-quick-rating {
  min-height: 16px;
  color: var(--copper);
  font-size: 11px;
  letter-spacing: .06em;
}
.product-quick-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.product-quick-price strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}
.product-quick-price del {
  color: #9ca29f;
  font-size: 13px;
}
.product-quick-cart-discount,
.product-quick-alert {
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}
.product-quick-cart-discount {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--forest);
  background: #eef7f1;
  border: 1px solid #d5eadc;
}
.product-quick-cart-discount::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--copper);
  border-radius: 50%;
}
.product-quick-alert {
  color: #a83428;
  background: #fff0ee;
}
.product-quick-options {
  display: grid;
  gap: 13px;
  margin-top: 4px;
}
.product-quick-option-group {
  display: grid;
  gap: 8px;
}
.product-quick-option-heading {
  color: var(--ink);
  font-size: 12px;
}
.product-quick-option-heading span { font-weight: 700; }
.product-quick-option-heading strong { font-weight: 900; }
.product-quick-option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.product-quick-swatch,
.product-quick-chip {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
}
.product-quick-swatch {
  width: 66px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  padding: 3px;
  border-radius: 7px;
}
.product-quick-swatch img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 5px;
}
.product-quick-chip {
  min-width: 82px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
}
.product-quick-swatch.is-active,
.product-quick-chip.is-active {
  border-color: #b24735;
  box-shadow: 0 0 0 2px rgba(178,71,53,.18);
}
.product-quick-swatch:disabled,
.product-quick-chip:disabled {
  cursor: not-allowed;
}
.product-quick-swatch.is-out-of-stock,
.product-quick-chip.is-out-of-stock,
.product-quick-swatch:disabled,
.product-quick-chip:disabled {
  color: #9a9f9a;
  background: #fbfaf7;
  border-color: #ddd8cf;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.66);
  opacity: 1;
}
.product-quick-swatch.is-out-of-stock img,
.product-quick-swatch:disabled img {
  filter: grayscale(.08) saturate(.72);
  opacity: .62;
}
.product-quick-swatch.is-out-of-stock::before,
.product-quick-chip.is-out-of-stock::before,
.product-quick-swatch:disabled::before,
.product-quick-chip:disabled::before {
  content: "";
  position: absolute;
  left: -12%;
  top: 50%;
  z-index: 2;
  width: 124%;
  height: 1px;
  background: rgba(143, 148, 143, .52);
  transform: rotate(24deg);
  pointer-events: none;
}
.product-quick-swatch.is-out-of-stock::before,
.product-quick-swatch:disabled::before {
  left: -22%;
  width: 144%;
  transform: rotate(58deg);
}
.product-quick-swatch.is-active.is-out-of-stock,
.product-quick-chip.is-active.is-out-of-stock {
  color: #6f766f;
  background: #fbfaf7;
  border-color: #b8b1a6;
  box-shadow: 0 0 0 2px rgba(26, 38, 34, .06);
}
.product-quick-swatch.is-active.is-out-of-stock::before,
.product-quick-chip.is-active.is-out-of-stock::before {
  background: rgba(116, 122, 116, .62);
}
.product-quick-swatch.is-active.is-out-of-stock .variant-stock-bell,
.product-quick-chip.is-active.is-out-of-stock .variant-stock-bell {
  background: rgba(255,255,255,.96);
  border-color: #aeb7b0;
  box-shadow: 0 4px 10px rgba(26,38,34,.14);
}
.product-quick-swatch.is-active.is-out-of-stock .variant-stock-bell::before,
.product-quick-chip.is-active.is-out-of-stock .variant-stock-bell::before {
  border-color: #69756f;
  border-bottom: 0;
}
.product-quick-swatch.is-active.is-out-of-stock .variant-stock-bell::after,
.product-quick-chip.is-active.is-out-of-stock .variant-stock-bell::after {
  background: #69756f;
}
.product-quick-chip .variant-stock-bell {
  top: -6px;
  right: -6px;
  width: 16px;
  height: 16px;
}
.product-quick-add {
  min-height: 48px;
  margin-top: 4px;
  color: #fff;
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
}
.product-quick-add.is-stock-notify {
  color: var(--forest);
  background: #fff;
  border-color: rgba(16, 73, 60, .28);
  box-shadow: 0 10px 26px rgba(16, 73, 60, .08);
}
.product-quick-add.is-stock-notify:hover {
  border-color: rgba(16, 73, 60, .52);
}
.product-quick-add.is-stock-notify.is-notify-requested {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}
.product-quick-add:disabled {
  cursor: wait;
  opacity: .68;
}
.product-quick-detail {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}
.product-quick-detail:hover { color: var(--forest); }
@media (max-width: 767px) {
  .product-quick-modal { padding: 12px; }
  .product-quick-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 14px;
  }
  .product-quick-media {
    max-height: 52vh;
  }
  .product-quick-copy {
    padding: 0;
  }
  .product-quick-copy h2 {
    font-size: 22px;
  }
  .product-quick-view {
    opacity: 1;
    transform: none;
  }
}
.color-options { display: flex; flex-wrap: wrap; gap: 10px; }
.color-option {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 4px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
  cursor: pointer;
}
.color-option.is-active { box-shadow: 0 0 0 2px var(--forest); }
.buy-row { display: grid; grid-template-columns: 104px 1fr 50px; gap: 10px; margin-top: 18px; }
.buy-row.is-stock-out { grid-template-columns: minmax(0, 1fr) 50px; }
.buy-row.is-stock-out.has-similar-products { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 50px; }
.quantity {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  min-height: 54px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.quantity button { height: 100%; padding: 0; background: transparent; border: 0; cursor: pointer; }
.quantity input { width: 100%; text-align: center; background: transparent; border: 0; outline: 0; font-size: 12px; }
.add-cart {
  min-height: 54px;
  color: #fff;
  background: var(--forest);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
}
.add-cart:hover { background: var(--forest-2); }
.add-cart.is-added { background: var(--copper); }
.stock-notify-cta,
.similar-products-cta {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
  white-space: nowrap;
}
.stock-notify-cta[hidden],
.similar-products-cta[hidden] {
  display: none;
}
.stock-notify-cta {
  color: var(--forest);
  background: #fff;
  border: 1px solid rgba(16, 73, 60, .28);
  box-shadow: 0 10px 26px rgba(16, 73, 60, .08);
}
.stock-notify-cta:hover {
  border-color: rgba(16, 73, 60, .52);
}
.stock-notify-cta.is-notify-requested {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}
.similar-products-cta {
  color: #fff;
  background: var(--forest);
  border: 1px solid var(--forest);
}
.similar-products-cta:hover {
  background: var(--forest-2);
}
.detail-wishlist {
  display: grid;
  place-items: center;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}
.detail-wishlist svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.detail-wishlist.is-active { color: #fff; background: var(--copper); }
.detail-wishlist.is-active svg { fill: currentColor; }
.delivery-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 13px;
}
.delivery-card {
  padding: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
}
.delivery-card strong { display: block; font-size: 10px; }
.delivery-card span { display: block; margin-top: 4px; color: var(--muted); font-size: 9px; line-height: 1.5; }
.product-detail-section {
  margin-top: 48px;
}
.product-detail-section .detail-accordion {
  margin-top: 0;
  border-top: 1px solid var(--line);
}
.detail-accordion { margin-top: 20px; border-top: 1px solid var(--line); }
.detail-item { border-bottom: 1px solid var(--line); }
.detail-toggle {
  width: 100%;
  min-height: 57px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}
.detail-toggle::after { content: "+"; font-size: 18px; font-weight: 400; }
.detail-item.is-open .detail-toggle::after { content: "−"; }
.detail-content { display: none; padding: 0 0 17px; color: var(--muted); font-size: 10px; line-height: 1.75; }
.product-detail-section .detail-toggle {
  min-height: 62px;
  font-size: 12px;
}
.product-detail-section .detail-content {
  max-width: 980px;
  padding-bottom: 24px;
  font-size: 11px;
}
.detail-item.is-open .detail-content { display: block; }

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 64px;
  overflow: hidden;
  background: var(--sand);
  border-radius: 28px;
}
.story-image { min-height: 500px; }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-copy { display: flex; flex-direction: column; justify-content: center; padding: 65px; }
.story-copy h2 {
  margin: 17px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.03em;
}
.story-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 27px; }
.feature { padding-top: 14px; border-top: 1px solid rgba(23,32,29,.16); }
.feature strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 400; }
.feature small { display: block; margin-top: 5px; color: var(--muted); font-size: 9px; }
.product-detail-tabs {
  margin-top: 34px;
  padding-top: 10px;
}
.detail-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-bottom: 1px solid var(--line);
}
.detail-tab {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 850;
}
.detail-tab.is-active,
.detail-tab[aria-selected="true"] {
  color: var(--forest);
  border-bottom-color: var(--forest);
}
.detail-tab-panels {
  padding-top: 24px;
}
.detail-tab-panel {
  max-width: 980px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}
.detail-tab-panel table {
  width: 100% !important;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.detail-tab-panel th,
.detail-tab-panel td {
  width: auto !important;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}
.detail-tab-panel img,
.detail-tab-panel iframe {
  max-width: 100%;
}
.detail-tab-panel[hidden] {
  display: none;
}
.detail-tab-panel.installment-cards {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.detail-tab-panel.installment-cards[hidden] {
  display: none;
}
.recommendations { padding: 100px 0 20px; }
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 30px;
}
.section-title h2 {
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -.03em;
}
.section-title a { color: var(--muted); font-size: 11px; text-decoration: underline; }
.recommendation-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.cart-page {
  padding-bottom: 90px;
}

.cart-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: stretch;
  margin: 22px 0 34px;
  padding: 34px;
  background: var(--sand);
  border-radius: 26px;
}

.cart-hero h1 {
  margin: 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.04em;
}

.cart-hero p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.cart-hero-note {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 150px;
  padding: 22px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 20px;
}

.cart-hero-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
}

.cart-hero-note span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.benefits {
  margin-top: 90px;
  background: #fff;
  border-block: 1px solid var(--line);
}
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.benefit {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 104px;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}
.benefit:first-child { padding-left: 0; }
.benefit:last-child { padding-right: 0; border-right: 0; }
.benefit-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
}
.benefit-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.benefit strong { display: block; margin-bottom: 4px; font-size: 11px; }
.benefit span span { color: var(--muted); font-size: 9px; }
.site-footer { color: rgba(255,255,255,.7); background: #0e2923; }
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 68px;
  padding: 68px 0 52px;
}
.footer-brand .brand { color: #fff; }
.footer-brand .brand-mark { border-color: #d5a27f; }
.footer-brand .brand-mark::before,
.footer-brand .brand-mark::after { background: #0e2923; }
.footer-brand .brand-text small { color: rgba(255,255,255,.42); }
.footer-brand p { max-width: 350px; margin: 24px 0 0; font-size: 11px; line-height: 1.75; }
.footer-column h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-column a { display: block; width: fit-content; margin-bottom: 12px; font-size: 11px; }
.footer-column a:hover { color: #fff; }
.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 9px;
}
.varol-renewal-popup[hidden] { display: none !important; }
.varol-renewal-popup {
  position: fixed;
  z-index: 10130;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
}
.varol-renewal-popup.is-visible { pointer-events: auto; }
.varol-renewal-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 21, 17, .42);
  opacity: 0;
  backdrop-filter: blur(7px);
  transition: opacity .22s ease;
}
.varol-renewal-popup.is-visible .varol-renewal-popup-backdrop { opacity: 1; }
.varol-renewal-card {
  position: relative;
  width: min(100%, 820px);
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 380px;
  overflow: hidden;
  color: #10211d;
  background: linear-gradient(145deg, #fffdf8 0%, #f4efe5 100%);
  border: 1px solid rgba(22, 61, 52, .14);
  border-radius: 32px;
  box-shadow: 0 34px 88px rgba(14, 41, 35, .24);
  opacity: 0;
  transform: translateY(14px) scale(.985);
  transition: opacity .22s ease, transform .22s ease;
}
.varol-renewal-popup.is-visible .varol-renewal-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.varol-renewal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 68%, rgba(197, 126, 82, .08) 68% 100%);
  pointer-events: none;
}
.varol-renewal-card::after {
  content: none;
}
.varol-renewal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(18, 61, 52, .14);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(14, 41, 35, .12);
}
.varol-renewal-close:hover { background: #fff; }
.varol-renewal-close:focus-visible,
.varol-renewal-primary:focus-visible,
.varol-renewal-secondary:focus-visible {
  outline: 3px solid rgba(18, 61, 52, .28);
  outline-offset: 3px;
}
.varol-renewal-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  min-height: 100%;
  padding: 34px;
  color: #fff;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.045) 0 1px, transparent 1px 15px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 18px),
    linear-gradient(145deg, rgba(18, 61, 52, .98), rgba(13, 46, 39, .96));
}
.varol-renewal-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  pointer-events: none;
}
.varol-renewal-visual::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 128px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.16), transparent);
  pointer-events: none;
}
.varol-renewal-brand {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 9px 13px;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .28em;
}
.varol-renewal-visual strong {
  position: relative;
  z-index: 1;
  max-width: 220px;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 500;
}
.varol-renewal-visual small {
  position: relative;
  z-index: 1;
  max-width: 210px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.55;
}
.varol-renewal-content {
  position: relative;
  z-index: 1;
  padding: 44px 46px 38px;
}
.varol-renewal-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 9px 13px;
  color: #8f5936;
  background: rgba(197, 126, 82, .13);
  border: 1px solid rgba(197, 126, 82, .18);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.varol-renewal-card h2 {
  max-width: 430px;
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 500;
}
.varol-renewal-card p {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 0;
  color: #5b6a66;
  font-size: 14px;
  line-height: 1.72;
}
.varol-renewal-highlights {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}
.varol-renewal-highlights span {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: var(--forest);
  background: rgba(18, 61, 52, .07);
  border: 1px solid rgba(18, 61, 52, .1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 760;
}
.varol-renewal-highlights i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border-radius: 50%;
  font-size: 9px;
}
.varol-renewal-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.varol-renewal-primary,
.varol-renewal-secondary {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 820;
}
.varol-renewal-primary {
  color: #fff;
  background: var(--forest);
  box-shadow: 0 18px 38px rgba(18, 61, 52, .24);
}
.varol-renewal-primary:hover { color: #fff; background: #0f332c; }
.varol-renewal-secondary {
  color: var(--forest);
  background: #fff;
  border: 1px solid rgba(18, 61, 52, .16);
}
.varol-renewal-secondary:hover { background: rgba(18, 61, 52, .06); }
body.varol-renewal-open { overflow: hidden; }
@media (max-width: 820px) {
  .varol-renewal-card {
    width: min(100%, 580px);
    grid-template-columns: 1fr;
  }
  .varol-renewal-visual {
    min-height: 158px;
    padding: 28px 30px;
  }
  .varol-renewal-visual strong {
    max-width: none;
    font-size: 34px;
  }
  .varol-renewal-visual small { max-width: none; }
  .varol-renewal-content { padding: 30px; }
}
@media (max-width: 580px) {
  .varol-renewal-popup { align-items: end; padding: 14px; }
  .varol-renewal-card {
    max-height: calc(100vh - 28px);
    overflow-y: auto;
    border-radius: 24px;
  }
  .varol-renewal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }
  .varol-renewal-visual {
    min-height: 128px;
    padding: 24px 22px;
  }
  .varol-renewal-visual::before { inset: 14px; border-radius: 20px; }
  .varol-renewal-brand { font-size: 10px; }
  .varol-renewal-visual strong { font-size: 28px; }
  .varol-renewal-content { padding: 24px 22px 22px; }
  .varol-renewal-card h2 { max-width: 310px; font-size: 36px; }
  .varol-renewal-card p { font-size: 13px; }
  .varol-renewal-highlights { gap: 7px; margin-top: 18px; }
  .varol-renewal-actions { display: grid; }
  .varol-renewal-primary,
  .varol-renewal-secondary { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .varol-renewal-popup-backdrop,
  .varol-renewal-card {
    transition: none;
  }
}
.preview-label {
  position: fixed;
  z-index: 100;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(14,41,35,.92);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(0,0,0,.2);
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.preview-label::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #e4a36d;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(228,163,109,.18);
}
.drawer-backdrop {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: none;
  background: rgba(9,18,15,.48);
  backdrop-filter: blur(3px);
}
.drawer-open .drawer-backdrop { display: block; }
.toast {
  position: fixed;
  z-index: 110;
  left: 50%;
  bottom: 26px;
  min-width: 260px;
  padding: 14px 20px;
  color: #fff;
  background: var(--forest);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 11px;
  font-weight: 750;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: .25s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.mobile-buy-bar { display: none; }

.checkout-page {
  padding-bottom: 100px;
}

.checkout-cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 4px;
  padding: 0 14px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.checkout-cart-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,.46);
}

.checkout-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: stretch;
  margin: 22px 0 24px;
  padding: 34px;
  background: linear-gradient(135deg, var(--sand), #f3ecdf);
  border: 1px solid rgba(23,32,29,.06);
  border-radius: 28px;
}

.checkout-hero h1 {
  margin: 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.7vw, 68px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}

.checkout-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.checkout-hero-panel {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 160px;
  padding: 24px;
  color: #fff;
  background: var(--forest);
  border-radius: 22px;
  box-shadow: 0 20px 48px rgba(18,61,52,.16);
}

.checkout-hero-panel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.checkout-hero-panel span {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  line-height: 1.65;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.checkout-steps span {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.checkout-steps strong {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border-radius: 50%;
  font-size: 10px;
}

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

.checkout-flow {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.checkout-card,
.checkout-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(26,38,34,.07);
}

.checkout-card {
  overflow: hidden;
}

.checkout-card-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 26px 28px 18px;
}

.checkout-card-index {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.checkout-card h2,
.checkout-summary h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -.025em;
}

.checkout-card p,
.checkout-summary p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.checkout-card-body {
  padding: 0 28px 28px;
}

.checkout-card-compact {
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(26,38,34,.055);
}

.checkout-card-compact .checkout-card-head {
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  padding: 17px 18px 10px;
}

.checkout-card-compact .checkout-card-index {
  width: 36px;
  height: 36px;
  font-size: 10px;
}

.checkout-card-compact h2 {
  font-size: 23px;
}

.checkout-card-compact p {
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.45;
}

.checkout-card-compact .checkout-card-body {
  padding: 0 18px 18px;
}

.checkout-page-classic .checkout-hero {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  margin-top: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(26,38,34,.06);
}

.checkout-page-classic .checkout-hero h1 {
  font-size: clamp(38px, 4vw, 58px);
}

.checkout-page-classic .checkout-hero-panel {
  min-height: 0;
  padding: 20px;
}

.checkout-page-classic .checkout-hero-panel .checkout-cart-link {
  margin-top: 8px;
}

.checkout-layout-classic {
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .72fr);
  gap: 22px;
}

.checkout-page-classic .checkout-flow-side {
  gap: 16px;
}

.checkout-page-classic .checkout-card {
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(26,38,34,.055);
}

.checkout-page-classic .checkout-card-head {
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 13px;
  padding: 20px 22px 12px;
}

.checkout-page-classic .checkout-card-index {
  width: 40px;
  height: 40px;
}

.checkout-page-classic .checkout-card h2 {
  font-size: 26px;
}

.checkout-page-classic .checkout-card p {
  font-size: 10px;
}

.checkout-page-classic .checkout-card-body {
  padding: 0 22px 22px;
}

.checkout-page-classic .checkout-card-confirm .table-responsive {
  max-height: none;
}

.checkout-page-classic .checkout-card-confirm #checkout-payment .btn-primary,
.checkout-page-classic .checkout-card-confirm #checkout-payment button.btn-primary,
.checkout-page-classic .checkout-confirm-button {
  min-height: 52px;
  border-radius: 999px;
}

.checkout-partial + .checkout-partial {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.checkout-page fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.checkout-page legend {
  float: none;
  width: auto;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.checkout-page .form-label,
.checkout-page label {
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
}

.checkout-page .form-control,
.checkout-page .form-select {
  min-height: 46px;
  color: var(--ink);
  background-color: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: none;
  font-size: 12px;
}

.checkout-page textarea.form-control {
  min-height: 110px;
}

.checkout-page .form-control:focus,
.checkout-page .form-select:focus {
  border-color: rgba(18,61,52,.42);
  box-shadow: 0 0 0 4px rgba(18,61,52,.08);
}

.checkout-page .input-group {
  border: 1px solid var(--line);
  border-radius: 15px;
  overflow: hidden;
}

.checkout-page .input-group .form-control {
  border: 0;
  border-radius: 0;
}

.checkout-method-fieldset {
  display: grid;
  gap: 9px;
}

.checkout-method-picker {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: #faf8f4;
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 16px;
}

.checkout-method-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.checkout-method-value {
  min-width: 0;
}

.checkout-method-value > span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.checkout-page .checkout-method-input {
  min-height: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.checkout-page .checkout-method-input::placeholder {
  color: rgba(23,32,29,.48);
  font-weight: 750;
}

.checkout-method-picker .btn {
  min-width: 104px;
  min-height: 42px;
  white-space: nowrap;
}

.checkout-page .input-group-text {
  color: var(--forest);
  background: var(--sage);
  border: 0;
}

.checkout-page .btn-primary,
.checkout-page button.btn-primary {
  min-height: 46px;
  padding-inline: 22px;
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.checkout-page .btn-primary:hover,
.checkout-page button.btn-primary:hover {
  background: var(--forest-2);
  border-color: var(--forest-2);
}

.checkout-page .btn-light {
  border-color: var(--line);
  border-radius: 999px;
}

.checkout-page .form-check {
  margin-bottom: 10px;
}

.checkout-method-comment {
  margin-top: 14px;
}

.checkout-page .checkout-method-comment textarea.form-control {
  min-height: 78px;
}

.checkout-agreement {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-bottom: 0;
  padding: 13px 14px;
  background: #faf8f4;
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 15px;
}

.checkout-agreement .form-check-input {
  float: none;
  margin: 2px 0 0;
}

.checkout-agreement .form-check-label {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.checkout-card-payment .form-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-left: 0;
}

.checkout-card-payment .form-switch .form-check-label {
  flex: 1 1 auto;
  text-align: left;
}

.checkout-page .form-check-input {
  border-color: rgba(18,61,52,.28);
}

.checkout-page .form-check-input:checked {
  background-color: var(--forest);
  border-color: var(--forest);
}

.checkout-page .invalid-feedback.d-block,
.checkout-page .is-invalid ~ .invalid-feedback {
  display: block;
  color: var(--danger);
  font-size: 10px;
}

.checkout-page .table {
  margin: 0;
  color: var(--ink);
  border-color: var(--line);
  font-size: 12px;
}

.checkout-page .table th {
  color: var(--muted);
  background: #faf8f4;
  border-color: var(--line);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.checkout-page .table td,
.checkout-page .table th {
  padding: 13px 14px;
  border-color: var(--line);
}

.checkout-page .table a {
  color: var(--forest);
  font-weight: 800;
}

.checkout-page #checkout-payment {
  margin-top: 20px;
}

.checkout-card-confirm .table-responsive {
  max-height: 260px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.checkout-card-confirm .table {
  min-width: 0;
}

.checkout-card-confirm .table td,
.checkout-card-confirm .table th {
  padding: 10px;
  font-size: 11px;
}

.checkout-card-confirm #checkout-payment {
  margin-top: 14px;
}

.checkout-card-confirm #checkout-payment .btn-primary,
.checkout-card-confirm #checkout-payment button.btn-primary {
  width: 100%;
}

.checkout-method-modal .modal-content {
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(26,38,34,.18);
}

.checkout-method-modal .modal-header {
  padding: 18px 20px 12px;
  border-bottom-color: var(--line);
}

.checkout-method-modal .modal-title {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -.025em;
}

.checkout-method-modal .modal-title i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
  font-size: 13px;
}

.checkout-method-modal .modal-body {
  padding: 18px 20px 20px;
}

.checkout-method-modal-intro {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.checkout-method-group-title {
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.checkout-method-option {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 0 0 8px;
  padding: 13px 14px;
  background: #faf8f4;
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 14px;
}

.checkout-method-option .form-check-input {
  float: none;
  margin: 0;
}

.checkout-method-option .form-check-label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.checkout-method-option:has(.form-check-input:checked) {
  background: var(--sage);
  border-color: rgba(18,61,52,.32);
}

.checkout-method-modal-actions {
  margin-top: 16px;
  text-align: right;
}

.checkout-method-modal-actions .btn {
  min-width: 150px;
}

.checkout-summary {
  position: sticky;
  top: 114px;
  display: grid;
  gap: 18px;
  padding: 24px;
}

.checkout-summary-head h2 {
  margin-top: 10px;
}

.checkout-summary-items {
  display: grid;
  gap: 12px;
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
}

.checkout-summary-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px;
  position: relative;
  padding: 12px;
  background: #faf8f4;
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 16px;
}

.checkout-summary-thumb {
  width: 62px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--forest);
  background: var(--sage);
  border-radius: 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

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

.checkout-summary-product {
  min-width: 0;
  padding-right: 76px;
}

.checkout-summary-product strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.checkout-summary-product small,
.checkout-summary-product em {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  line-height: 1.35;
}

.checkout-summary-price {
  position: absolute;
  right: 12px;
  bottom: 12px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 850;
}

.checkout-summary-lines {
  display: grid;
  gap: 11px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.checkout-summary-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
}

.checkout-summary-line strong {
  color: var(--ink);
  text-align: right;
}

.checkout-summary-line.is-discount strong {
  color: #087c55;
}

.checkout-summary-line.is-total {
  margin-top: 6px;
  padding-top: 14px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 15px;
  font-weight: 850;
}

.checkout-summary-line.is-total strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
}

.checkout-summary-compact {
  gap: 13px;
  padding: 18px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(26,38,34,.055);
}

.checkout-summary-compact .checkout-summary-head h2 {
  margin-top: 7px;
  font-size: 28px;
}

.checkout-summary-compact .checkout-summary-head p {
  margin-top: 5px;
}

.checkout-summary-compact .checkout-summary-items {
  max-height: 210px;
}

.checkout-summary-compact .checkout-summary-item {
  grid-template-columns: 54px minmax(0, 1fr);
  padding: 10px;
  border-radius: 14px;
}

.checkout-summary-compact .checkout-summary-thumb {
  width: 54px;
  border-radius: 11px;
}

.checkout-summary-compact .checkout-summary-product {
  padding-right: 66px;
}

.checkout-summary-compact .checkout-summary-line.is-total strong {
  font-size: 24px;
}

.checkout-summary-compact .checkout-edit-cart {
  min-height: 42px;
}

.checkout-summary-compact .checkout-trust-list {
  gap: 8px;
  padding-top: 12px;
}

.checkout-summary-compact .checkout-trust-list span {
  font-size: 10px;
}

.checkout-summary-compact .checkout-trust-list i {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
}

.checkout-edit-cart {
  width: 100%;
  min-height: 48px;
}

.checkout-trust-list {
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.checkout-trust-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.checkout-trust-list i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
}

.checkout-page-legacy {
  padding: 18px 0 120px;
  background: #f6f6f4;
}

body.checkout-address-modal-open {
  overflow: hidden;
}

body.checkout-address-modal-open .checkout-legacy-layout {
  pointer-events: none;
  user-select: none;
}

.checkout-address-entry-modal {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 22, 22, .58);
}

.checkout-address-entry-modal[hidden] {
  display: none;
}

.checkout-address-entry-dialog {
  width: min(100%, 552px);
  max-height: min(92vh, 940px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(23,32,29,.12);
  border-radius: 8px;
  box-shadow: 0 26px 76px rgba(0,0,0,.26);
}

.checkout-address-entry-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.checkout-address-entry-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.checkout-address-entry-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #4e5652;
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 19px;
}

.checkout-address-entry-close:hover {
  background: #f6f4ef;
}

.checkout-address-entry-form {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.checkout-address-entry-body {
  display: grid;
  gap: 16px;
  overflow: auto;
  padding: 22px;
}

.checkout-address-entry-alert {
  padding: 11px 13px;
  color: #8a2d22;
  background: #fff3ef;
  border: 1px solid #ffd5cc;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.checkout-address-entry-alert[hidden] {
  display: none;
}

.checkout-address-account-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkout-address-account-option {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  min-height: 82px;
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.checkout-address-account-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-address-entry-radio {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  border: 2px solid rgba(23,32,29,.26);
  border-radius: 50%;
}

.checkout-address-account-option strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.35;
}

.checkout-address-account-option small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.checkout-address-account-option:has(input:checked) {
  border-color: rgba(154,124,74,.58);
  background: #fffaf3;
  box-shadow: inset 0 0 0 1px rgba(154,124,74,.18);
}

.checkout-address-account-option:has(input:checked) .checkout-address-entry-radio {
  border-color: var(--gold);
  background: var(--ink);
  box-shadow: inset 0 0 0 4px #fff;
}

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

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

.checkout-address-field label {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.checkout-address-field .form-control,
.checkout-address-field .form-select {
  min-height: 38px;
  color: var(--ink);
  border-color: rgba(23,32,29,.12);
  border-radius: 6px;
  font-size: 12px;
}

.checkout-address-field textarea.form-control {
  min-height: 74px;
  resize: vertical;
}

.checkout-address-field .form-control:focus,
.checkout-address-field .form-select:focus {
  border-color: rgba(154,124,74,.54);
  box-shadow: 0 0 0 3px rgba(154,124,74,.12);
}

.checkout-address-email-status {
  padding: 9px 11px;
  color: #6d5a39;
  background: #fffaf3;
  border: 1px solid rgba(154,124,74,.22);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
}

.checkout-address-email-status[hidden] {
  display: none;
}

.checkout-address-login-fields,
.checkout-address-details {
  display: grid;
  gap: 16px;
}

.checkout-address-login-fields[hidden],
.checkout-address-details[hidden] {
  display: none;
}

.checkout-address-login-copy {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: #f8f7f3;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.checkout-address-login-copy strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.checkout-address-login-copy span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.checkout-password-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  border: 1px solid rgba(23,32,29,.12);
  border-radius: 6px;
  overflow: hidden;
}

.checkout-password-field .form-control {
  border: 0;
  border-radius: 0;
}

.checkout-password-field button {
  display: grid;
  place-items: center;
  color: var(--muted);
  background: #fff;
  border: 0;
  border-left: 1px solid rgba(23,32,29,.08);
}

.checkout-address-forgotten {
  width: fit-content;
  color: var(--forest);
  font-size: 11px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.checkout-address-entry-form.is-existing-customer .checkout-address-account-options,
.checkout-address-entry-form.is-existing-customer .checkout-address-details {
  display: none;
}

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

.checkout-phone-field span {
  min-height: 38px;
  display: grid;
  place-items: center start;
  padding: 0 13px;
  color: var(--muted);
  background: #f2f2f2;
  border: 1px solid rgba(23,32,29,.1);
  border-radius: 6px;
  font-size: 12px;
}

.checkout-address-info {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  padding: 12px;
  color: #7b6c55;
  background: #faf7f1;
  border-radius: 6px;
  font-size: 11px;
  line-height: 1.45;
}

.checkout-address-info i {
  margin-top: 2px;
  color: var(--gold);
}

.checkout-address-invoice-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.checkout-address-invoice-options label {
  position: relative;
  margin: 0;
  min-height: 42px;
  cursor: pointer;
}

.checkout-address-invoice-options input {
  position: absolute;
  opacity: 0;
}

.checkout-address-invoice-options span {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #fff;
  font-size: 12px;
  font-weight: 950;
}

.checkout-address-invoice-options label + label span {
  border-left: 1px solid var(--line);
}

.checkout-address-invoice-options input:checked + span {
  color: var(--gold);
  background: #fffaf3;
  box-shadow: inset 0 0 0 1px rgba(154,124,74,.55);
}

.checkout-address-corporate-fields,
.checkout-address-password-fields {
  display: grid;
  gap: 14px;
}

.checkout-address-corporate-fields[hidden],
.checkout-address-password-fields[hidden] {
  display: none;
}

.checkout-address-entry-actions {
  padding: 16px 22px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.checkout-address-save {
  width: 100%;
  min-height: 46px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 950;
}

.checkout-address-save:disabled {
  background: #9d9d9d;
  cursor: not-allowed;
}

.checkout-legacy-container {
  max-width: min(100% - 48px, 1272px);
}

.checkout-legacy-breadcrumb {
  display: none;
}

.checkout-legacy-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 22px;
  margin: 6px 0 18px;
}

.checkout-legacy-logo {
  display: grid;
  width: fit-content;
  color: var(--gold);
  line-height: .9;
  text-decoration: none;
}

.checkout-legacy-logo span {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .18em;
}

.checkout-legacy-logo small {
  margin-top: 4px;
  color: rgba(154,124,74,.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .52em;
  text-align: center;
}

.checkout-secure-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.checkout-secure-badge i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #57bd77;
  border-radius: 10px;
}

.checkout-secure-badge strong {
  color: #57bd77;
  font-size: 22px;
  line-height: 1;
}

.checkout-legacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 934px) 320px;
  gap: 22px;
  align-items: start;
}

.checkout-legacy-main {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.checkout-legacy-card,
.checkout-page-legacy .checkout-summary {
  background: #fff;
  border: 1px solid rgba(23,32,29,.09);
  border-radius: 8px;
  box-shadow: none;
}

.checkout-legacy-card {
  overflow: hidden;
}

.checkout-legacy-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.checkout-legacy-card-head h2,
.checkout-products-toggle summary > span:first-child,
.checkout-page-legacy .checkout-summary h2 {
  margin: 0;
  color: var(--ink);
  font-family: inherit;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.015em;
}

.checkout-legacy-card-head p {
  max-width: 560px;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.checkout-legacy-card-body {
  padding: 22px 18px 24px;
}

.checkout-products-toggle summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  padding: 0 18px 0 22px;
  list-style: none;
  cursor: pointer;
}

.checkout-products-toggle summary::-webkit-details-marker {
  display: none;
}

.checkout-products-preview {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.checkout-products-preview img {
  width: 34px;
  height: 40px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.checkout-products-preview i {
  color: var(--muted);
  font-size: 10px;
  transition: transform .2s ease;
}

.checkout-products-toggle[open] .checkout-products-preview i {
  transform: rotate(180deg);
}

.checkout-products-list {
  display: grid;
  gap: 12px;
  padding: 0 22px 18px;
  border-top: 1px solid var(--line);
}

.checkout-products-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding-top: 14px;
}

.checkout-products-item img {
  width: 54px;
  height: 66px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkout-products-item strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.checkout-products-item small,
.checkout-products-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.checkout-products-item em {
  color: var(--ink);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.checkout-edit-cart {
  width: fit-content;
  color: var(--forest);
  font-size: 11px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.checkout-address-toggle {
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 900;
}

.checkout-address-state {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.checkout-address-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 24px 0 0 #d84b8c;
}

.checkout-address-row {
  width: min(100%, 442px);
}

.checkout-address-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.checkout-address-row-head span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.checkout-address-change {
  min-height: 36px;
  padding: 0 17px;
  color: var(--gold);
  background: #fff;
  border: 1px solid rgba(154,124,74,.45);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 800;
}

.checkout-address-selected {
  position: relative;
  width: 100%;
  min-height: 88px;
  padding: 16px 46px 14px 17px;
  border: 1px solid rgba(154,124,74,.45);
  border-radius: 5px;
}

.checkout-address-selected > span,
.checkout-address-selected small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.checkout-address-selected strong {
  display: block;
  margin-top: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.checkout-address-selected strong span {
  display: inline;
  color: var(--muted);
  font-size: inherit;
  font-weight: 700;
}

.checkout-address-selected p {
  margin: 4px 0;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.5;
}

.checkout-address-selected i {
  position: absolute;
  right: 15px;
  top: 50%;
  color: var(--gold);
  font-size: 15px;
  transform: translateY(-50%);
}

.checkout-same-address,
.checkout-summary-agree {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.checkout-same-address input,
.checkout-summary-agree input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--forest);
}

.checkout-address-empty {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
}

.checkout-address-empty strong {
  color: var(--ink);
  font-size: 14px;
}

.checkout-legacy-address-tools {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.checkout-legacy-address-tools[hidden] {
  display: none;
}

.checkout-legacy-address-tools fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.checkout-legacy-address-tools fieldset + fieldset,
.checkout-legacy-address-tools .checkout-partial + .checkout-partial {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.checkout-legacy-shipping {
  display: none;
}

.checkout-inline-method-fieldset {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  border: 0;
}

.checkout-inline-method-fieldset legend {
  display: none;
}

.checkout-inline-method-form,
.checkout-inline-options {
  display: grid;
  gap: 10px;
}

.checkout-inline-options-payment {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-inline-option {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 80px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(23,32,29,.12);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.checkout-inline-option:hover {
  border-color: rgba(154,124,74,.45);
  transform: translateY(-1px);
}

.checkout-inline-option .form-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-inline-radio {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 2px solid rgba(23,32,29,.16);
  border-radius: 50%;
}

.checkout-inline-option:has(.form-check-input:checked) {
  border-color: rgba(154,124,74,.62);
  box-shadow: inset 0 0 0 1px rgba(154,124,74,.22), 0 10px 24px rgba(26,38,34,.055);
}

.checkout-inline-option:has(.form-check-input:checked) .checkout-inline-radio {
  border-color: var(--forest);
  background: var(--forest);
  box-shadow: inset 0 0 0 5px #fff;
}

.checkout-inline-copy strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.checkout-inline-copy small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.checkout-inline-save {
  display: none;
}

.checkout-method-empty {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.checkout-page-legacy .checkout-method-comment {
  display: none;
}

.checkout-page-legacy .checkout-summary {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 17px;
  padding: 20px;
  border-radius: 8px;
}

.checkout-page-legacy .checkout-summary-head h2 {
  font-size: 24px;
}

.checkout-page-legacy .checkout-summary-lines {
  gap: 0;
}

.checkout-page-legacy .checkout-summary-line {
  padding: 10px 0;
  color: var(--muted);
  border-bottom: 0;
  font-size: 12px;
}

.checkout-page-legacy .checkout-summary-line strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.checkout-page-legacy .checkout-summary-line.is-total {
  margin-top: 8px;
  padding-top: 18px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 17px;
  font-weight: 900;
}

.checkout-page-legacy .checkout-summary-line.is-total strong {
  color: var(--gold);
  font-family: inherit;
  font-size: 20px;
  font-weight: 900;
}

.checkout-summary-agree {
  margin-top: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.45;
}

.checkout-summary-agree a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-page-legacy .checkout-summary-confirm {
  display: grid;
  gap: 10px;
}

.checkout-page-legacy .checkout-summary-confirm:empty {
  display: none;
}

.checkout-page-legacy .checkout-summary-confirm .checkout-confirm-actions {
  display: block;
  margin: 0;
}

.checkout-page-legacy .checkout-summary-confirm .checkout-confirm-button,
.checkout-page-legacy .checkout-summary-confirm button.btn-primary,
.checkout-page-legacy .checkout-summary-confirm input.btn-primary {
  width: 100%;
  min-height: 52px;
  border-color: #2f9560;
  border-radius: 9px;
  background: #2f9560;
  color: #fff;
  box-shadow: 0 14px 28px rgba(47,149,96,.18);
  font-size: 16px;
  font-weight: 950;
}

.checkout-page-legacy .checkout-summary-confirm .checkout-confirm-button:hover,
.checkout-page-legacy .checkout-summary-confirm button.btn-primary:hover,
.checkout-page-legacy .checkout-summary-confirm input.btn-primary:hover {
  border-color: #24784c;
  background: #24784c;
}

.checkout-page-legacy .checkout-summary-confirm .checkout-confirm-button:disabled,
.checkout-page-legacy .checkout-summary-confirm .checkout-confirm-button.is-disabled-by-agree,
.checkout-page-legacy .checkout-summary-confirm button.btn-primary:disabled,
.checkout-page-legacy .checkout-summary-confirm input.btn-primary:disabled {
  border-color: #999;
  background: #999;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.checkout-page-legacy .checkout-legacy-confirm .table-responsive {
  display: none;
}

.checkout-page-legacy #checkout-payment {
  margin-top: 0;
}

.checkout-page-legacy #checkout-payment .btn-primary,
.checkout-page-legacy #checkout-payment button.btn-primary,
.checkout-page-legacy .checkout-confirm-button {
  width: 100%;
  min-height: 48px;
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
}

.checkout-page-legacy #checkout-payment .btn-primary:disabled,
.checkout-page-legacy #checkout-payment button.btn-primary:disabled {
  background: #999;
  border-color: #999;
  opacity: 1;
}

.cart-page {
  padding: 28px 0 96px;
  background:
    radial-gradient(circle at 18% 0, rgba(183,154,117,.13), transparent 34vw),
    linear-gradient(180deg, #fbfaf7 0, #f6f4ef 360px, #fff 100%);
}

.cart-page .breadcrumb {
  margin: 0 0 24px;
}

.cart-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  margin: 0 0 30px;
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(242,235,224,.92)),
    var(--sand);
  border: 1px solid rgba(154,124,74,.14);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(23,32,29,.08);
}

.cart-hero .eyebrow {
  color: var(--forest);
  letter-spacing: .16em;
}

.cart-hero h1 {
  margin: 10px 0 12px;
  font-family: inherit;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 950;
  letter-spacing: -.055em;
}

.cart-hero p {
  max-width: 720px;
  color: #51605a;
  font-size: 14px;
}

.cart-hero-note {
  position: relative;
  min-height: 150px;
  padding: 26px 26px 24px 82px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(23,32,29,.07);
}

.cart-hero-note::before {
  content: "\f023";
  position: absolute;
  top: 28px;
  left: 26px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border-radius: 14px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.cart-hero-note strong {
  font-family: inherit;
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
}

.cart-hero-note span {
  color: #6b756f;
  font-size: 12px;
}

.cart-page #shopping-cart .vc-cart-shell {
  --vc-cart-accent: var(--gold);
  --vc-cart-accent-dark: #80643c;
  --vc-cart-action: var(--ink);
  --vc-cart-action-dark: #0d1114;
  --vc-cart-checkout: var(--forest);
  --vc-cart-checkout-dark: #0d3029;
  --vc-cart-ink: var(--ink);
  --vc-cart-muted: #6f7a75;
  --vc-cart-line: rgba(23,32,29,.1);
  --vc-cart-soft: #fbfaf7;
  margin: 0 0 52px;
}

.cart-page #shopping-cart .vc-cart-title {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -.035em;
}

.cart-page #shopping-cart .vc-cart-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  gap: 24px;
}

.cart-page #shopping-cart .vc-cart-card,
.cart-page #shopping-cart .vc-cart-summary,
.cart-page #shopping-cart .vc-cart-empty {
  border-color: rgba(23,32,29,.1);
  border-radius: 16px;
  box-shadow: 0 18px 54px rgba(23,32,29,.07);
}

.cart-page #shopping-cart .vc-cart-campaign {
  padding: 16px 18px;
  border-color: rgba(154,124,74,.22);
  border-radius: 16px;
  background: #fffdf8;
}

.cart-page #shopping-cart .vc-cart-product-body {
  padding: 20px;
}

.cart-page #shopping-cart .vc-cart-thumb {
  border-radius: 14px;
}

.cart-page #shopping-cart .vc-cart-product-name {
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
}

.cart-page #shopping-cart .vc-cart-chip {
  background: #f5f2ed;
  border-radius: 999px;
}

.cart-page #shopping-cart .vc-cart-total,
.cart-page #shopping-cart .vc-cart-total-row strong,
.cart-page #shopping-cart .vc-cart-summary-title {
  color: var(--ink);
  font-weight: 950;
}

.cart-page #shopping-cart .vc-cart-summary {
  top: 98px;
  padding: 20px;
  background:
    linear-gradient(180deg, #fffdf8 0%, #fff 58%),
    #fff;
  border-color: rgba(154, 124, 74, .18);
}

.cart-page #shopping-cart .vc-cart-btn {
  border-radius: 12px;
}

.cart-page #shopping-cart .vc-cart-btn-primary,
.cart-page #shopping-cart .vc-cart-mobile-checkout {
  border-color: var(--forest) !important;
  background: var(--forest) !important;
}

.cart-page #shopping-cart .vc-cart-btn-primary:hover,
.cart-page #shopping-cart .vc-cart-mobile-checkout:hover {
  border-color: #0d3029 !important;
  background: #0d3029 !important;
}

.cart-page #shopping-cart .vc-cart-recommended {
  border-radius: 16px;
  background:
    linear-gradient(180deg, #fffdf8 0%, #fff 42%),
    #fff;
  border-color: rgba(154, 124, 74, .16);
}

.cart-page #shopping-cart .vc-cart-recommended-image {
  border-radius: 14px;
  background: #f4f0e8;
}

.cart-page #shopping-cart .vc-cart-recommended-head {
  background: #fffaf1;
  border-bottom-color: rgba(154, 124, 74, .14);
}

.cart-page #shopping-cart .vc-cart-recommended-add {
  border-radius: 999px;
}

.checkout-page-legacy .checkout-payment-card .checkout-legacy-card-body {
  display: grid;
  gap: 18px;
}

.checkout-payment-confirm-panel {
  display: grid;
  gap: 16px;
  margin-top: 2px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.checkout-payment-confirm-panel:empty {
  display: none;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-varolpay-form {
  width: 100%;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-varolpay-layout {
  gap: 16px;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-varolpay-box {
  border-color: rgba(23,32,29,.1);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(23,32,29,.06);
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-varolpay-box-title {
  min-height: 64px;
  padding: 0 22px;
  color: var(--ink);
  background: #fbfaf7;
  font-size: 18px;
  font-weight: 950;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-varolpay-box-body {
  padding: 22px;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-varolpay-field {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-varolpay-field span {
  color: #6b756f;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-varolpay-field input,
.checkout-page-legacy .checkout-payment-confirm-panel .vc-varolpay-field select {
  min-height: 54px;
  border-color: rgba(23,32,29,.12);
  border-radius: 12px;
  color: var(--ink);
  font-size: 15px;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-varolpay-secure {
  color: #51605a;
  font-weight: 850;
}

.checkout-page-legacy .checkout-payment-confirm-panel .checkout-confirm-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 2px;
}

.checkout-page-legacy .checkout-payment-confirm-panel .checkout-confirm-button {
  width: 100%;
  max-width: 340px;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-panel {
  min-width: 0;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(23,32,29,.1);
  border-radius: 16px;
  background: #fbfaf7;
  box-shadow: 0 18px 48px rgba(23,32,29,.06);
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-title {
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.2;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-intro {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-icon {
  flex: 0 0 42px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--forest);
  background: rgba(18,61,52,.08);
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-intro strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-intro p,
.checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-payment-text {
  margin: 0;
  color: #6b756f;
  font-size: 13px;
  line-height: 1.55;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-row {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(23,32,29,.1);
  border-radius: 14px;
  background: #fff;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-row.is-iban {
  grid-column: span 2;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-row span {
  grid-column: 1 / -1;
  color: #7b6a50;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-row strong {
  min-width: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-copy-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(18,61,52,.2);
  border-radius: 999px;
  color: var(--forest);
  background: #eef6f2;
  font-size: 12px;
  font-weight: 950;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-copy-button:hover {
  border-color: var(--forest);
  color: #fff;
  background: var(--forest);
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-details {
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 14px;
  background: #fff;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-details summary {
  cursor: pointer;
  padding: 14px 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-lines {
  display: grid;
  gap: 6px;
  padding: 0 16px 16px;
  color: #51605a;
  font-size: 13px;
  line-height: 1.5;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-lines p {
  margin: 0;
  overflow-wrap: anywhere;
}

.checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  color: #7b5d28;
  background: #fff7e8;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

@media (max-width: 991px) {
  .cart-hero,
  .cart-page #shopping-cart .vc-cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-page #shopping-cart .vc-cart-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .cart-page {
    padding-top: 18px;
  }

  .cart-hero {
    padding: 24px;
    border-radius: 18px;
  }

  .cart-hero-note {
    padding: 22px;
  }

  .cart-hero-note::before {
    position: static;
    margin-bottom: 10px;
  }

  .checkout-page-legacy .checkout-payment-confirm-panel .vc-varolpay-box-body {
    padding: 18px;
  }

  .checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-panel {
    padding: 18px;
  }

  .checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-grid,
  .checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-row.is-iban {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .checkout-page-legacy .checkout-payment-confirm-panel .vc-bank-transfer-row {
    grid-template-columns: 1fr;
  }

  .checkout-page-legacy .checkout-payment-confirm-panel .vc-copy-button {
    justify-self: flex-start;
  }

  .checkout-page-legacy .checkout-payment-confirm-panel .checkout-confirm-button {
    max-width: none;
  }
}

#account-login.account-auth-page,
#account-register.account-auth-page,
#account-logout.account-auth-page,
#account-forgotten.account-auth-page,
#account-reset.account-auth-page,
#account-authorize.account-auth-page,
#account-authorize-reset.account-auth-page,
#account-authorize-unlock.account-auth-page,
#account-account.account-page,
#account-wishlist.account-page,
#account-edit.account-page,
#account-password.account-page,
#account-address.account-page,
#account-address-form.account-page,
#account-newsletter.account-page,
#account-reward.account-page,
#account-transaction.account-page,
#account-download.account-page,
#account-payment-method.account-page,
#account-return.account-page,
#account-return-form.account-page,
#account-return-info.account-page,
#account-review.account-page,
#account-order.account-page,
#account-subscription.account-page,
#account-subscription-info.account-page,
#account-affiliate.account-page,
#account-tracking.account-page {
  width: auto;
  max-width: none;
  padding: 0 0 100px;
}

.account-auth-hero,
.account-dashboard-hero,
.account-section-head,
.vc-account-hero {
  display: grid;
  gap: 22px;
  margin: 22px 0 28px;
  padding: 34px;
  background: linear-gradient(135deg, var(--sand), #f3ecdf);
  border: 1px solid rgba(23,32,29,.06);
  border-radius: 28px;
}

.account-auth-hero {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: stretch;
}

.account-auth-hero h1,
.account-dashboard-hero h1,
.account-section-head h1,
.vc-account-hero h2 {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.04em;
}

.account-auth-hero p,
.account-dashboard-hero p,
.account-section-head p,
.vc-account-hero p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.account-auth-note {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  color: #fff;
  background: var(--forest);
  border-radius: 22px;
}

.account-auth-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.account-auth-note span {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  line-height: 1.65;
}

.account-auth-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 22px;
  align-items: stretch;
}

.account-auth-layout-centered {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.account-auth-card,
.account-sidebar,
.account-main,
.vc-account-sidebar,
.vc-account-main {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(26,38,34,.07);
}

.account-auth-card {
  display: grid;
  align-content: start;
  gap: 15px;
  min-height: 360px;
  padding: 30px;
}

.account-onepass-page {
  background:
    radial-gradient(circle at 50% 130px, rgba(18,61,52,.045), transparent 310px),
    linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}

.account-onepass-breadcrumb {
  opacity: .72;
}

.account-onepass-shell {
  display: grid;
  justify-content: center;
  min-height: 760px;
  padding: 70px 0 36px;
}

.account-onepass-card {
  width: min(100%, 560px);
  min-height: 620px;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(23,32,29,.09);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(26,38,34,.08);
}

.account-onepass-brand {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.account-onepass-brand h1,
.account-onepass-panel h2 {
  margin: 4px 0 0;
  color: var(--ink);
  font-family: inherit;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.account-onepass-panel {
  display: none;
  gap: 18px;
}

.account-onepass-panel.is-active {
  display: grid;
}

.account-onepass-panel .account-field {
  margin-top: 0;
}

.account-onepass-copy {
  margin: -6px 0 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.account-onepass-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 20px;
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  border-radius: 8px;
  font-size: 15px;
}

.account-onepass-submit:hover {
  background: var(--forest);
  border-color: var(--forest);
}

.account-onepass-help {
  margin: 8px 4px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  text-align: center;
}

.account-onepass-help a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.account-onepass-status {
  display: none;
  margin: -2px 0 16px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
}

.account-onepass-status.is-info,
.account-onepass-status.is-success {
  display: block;
}

.account-onepass-status.is-info {
  color: var(--forest);
  background: var(--sage);
}

.account-onepass-status.is-success {
  color: #1f6b42;
  background: rgba(84,179,113,.13);
}

.account-onepass-back {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: -4px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 50%;
}

.account-onepass-back:hover {
  background: var(--sage);
}

.account-onepass-readonly {
  position: relative;
}

.account-onepass-readonly .form-control {
  padding-right: 52px;
  font-weight: 850;
}

.account-onepass-readonly button {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
}

.account-onepass-readonly button:hover {
  color: var(--forest);
  background: var(--sage);
}

.account-onepass-register {
  gap: 16px;
}

.account-onepass-consents {
  margin-top: 2px;
}

.account-onepass-consents .account-choice-card {
  grid-template-columns: 22px minmax(0, 1fr);
  padding: 12px;
  background: #fff;
}

.account-logout-card {
  min-height: 0;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.account-logout-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.account-auth-card h2 {
  margin: 4px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
}

.account-auth-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.account-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
}

.account-field {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.account-field label,
.account-page .form-label,
.account-page label {
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.account-field .form-control,
.account-page .form-control,
.account-page .form-select,
.vc-account-main .form-control,
.vc-account-main .form-select {
  min-height: 46px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: none;
  font-size: 12px;
}

.account-field .form-control:focus,
.account-page .form-control:focus,
.account-page .form-select:focus,
.vc-account-main .form-control:focus,
.vc-account-main .form-select:focus {
  border-color: rgba(18,61,52,.42);
  box-shadow: 0 0 0 4px rgba(18,61,52,.08);
}

.account-forgotten {
  width: fit-content;
  color: var(--muted);
  font-size: 11px;
  text-decoration: underline;
}

.account-password-field {
  position: relative;
}

.account-password-field .form-control {
  padding-right: 50px;
}

.account-password-toggle {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
}

.account-password-toggle:hover {
  color: var(--forest);
  background: var(--sage);
}

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

.account-security-code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.account-security-code-row .button {
  min-height: 46px;
  white-space: nowrap;
}

.account-security-actions {
  justify-content: flex-end;
}

.account-security-result {
  text-align: center;
  justify-items: center;
}

.account-register-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.account-register-form-card {
  min-height: 0;
}

.account-register-form,
.account-form-section,
.account-choice-stack,
.account-consent-list,
.account-register-aside,
.account-register-panel,
.account-register-list {
  display: grid;
}

.account-register-form {
  gap: 26px;
}

.account-form-section {
  gap: 16px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.account-form-section:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.account-form-section-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.account-form-section-head h2,
.account-register-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.account-form-section-head p,
.account-register-submit p,
.account-register-panel span {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

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

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

.account-field.required > label::after,
.account-choice-card.is-required .account-choice-copy strong::after {
  content: " *";
  color: var(--danger);
}

.account-field .form-select,
.account-field textarea.form-control {
  min-height: 46px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: none;
  font-size: 12px;
}

.account-field textarea.form-control {
  resize: vertical;
}

.account-page .is-invalid,
.account-auth-page .is-invalid {
  border-color: var(--danger);
}

.account-page .invalid-feedback.d-block,
.account-auth-page .invalid-feedback.d-block,
.account-page .is-invalid ~ .invalid-feedback,
.account-auth-page .is-invalid ~ .invalid-feedback {
  display: block;
  margin-top: 8px;
  color: var(--danger);
  font-size: 9px;
}

.account-choice-stack,
.account-consent-list {
  gap: 10px;
}

.account-choice-card {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  background: #faf8f4;
  border: 1px solid rgba(23,32,29,.09);
  border-radius: 16px;
  cursor: pointer;
}

.account-choice-card-compact {
  padding: 12px;
}

.account-choice-card .form-check-input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  border-color: rgba(18,61,52,.34);
  cursor: pointer;
}

.account-choice-card .form-check-input:checked {
  background-color: var(--forest);
  border-color: var(--forest);
}

.account-choice-copy strong,
.account-register-panel strong {
  display: block;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
}

.account-choice-copy span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.account-choice-copy a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-upload-button {
  width: fit-content;
}

.account-register-submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 4px;
}

.account-register-submit p {
  margin: 0;
}

.account-register-submit a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-profile-form {
  display: grid;
  gap: 26px;
}

.account-head-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  color: var(--forest);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(18,61,52,.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.account-head-link:hover {
  color: #fff;
  background: var(--forest);
}

.account-form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.account-help-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 16px;
  color: var(--ink);
  background: #faf8f4;
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 18px;
}

.account-help-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
}

.account-help-card span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

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

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

.account-invoice-fields.is-hidden {
  display: none;
}

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

.account-address-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.account-address-card.is-default {
  border-color: rgba(18,61,52,.28);
  box-shadow: inset 0 0 0 1px rgba(18,61,52,.08);
}

.account-address-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
}

.account-address-body {
  min-width: 0;
}

.account-address-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}

.account-address-top strong {
  font-size: 13px;
}

.account-address-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 9px;
  color: var(--forest);
  background: var(--sage);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
}

.account-address-text {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.account-address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.account-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 34px;
  text-align: center;
  background: #faf8f4;
  border: 1px dashed rgba(18,61,52,.24);
  border-radius: 22px;
}

.account-empty h2 {
  margin: 4px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.account-empty p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.account-ledger-total {
  min-width: 150px;
  display: grid;
  justify-items: end;
  gap: 4px;
  padding: 18px 20px;
  color: #fff;
  background: var(--forest);
  border-radius: 20px;
}

.account-ledger-total strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.account-ledger-total span {
  color: rgba(255,255,255,.72);
  font-size: 10px;
  font-weight: 850;
}

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

.account-record-list-compact {
  gap: 10px;
}

.account-record-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.account-record-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
}

.account-record-body {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.account-record-date,
.account-record-note {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.account-record-title {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

a.account-record-title:hover {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-record-value {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  white-space: nowrap;
}

.account-subscription-products,
.account-affiliate-payment-grid,
.account-bank-grid,
.account-tracking-form {
  display: grid;
  gap: 14px;
}

.account-subscription-products {
  margin: 16px 0;
}

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

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

.account-payment-panel {
  padding: 18px;
  background: #faf8f4;
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 18px;
}

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

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

.account-tracking-copy textarea {
  min-height: 118px;
}

.account-copy-button {
  min-height: 46px;
  white-space: nowrap;
}

.account-tracking-generator {
  position: relative;
  margin-top: 0;
}

.account-autocomplete {
  width: 100%;
  margin-top: 8px;
  padding: 8px;
  border-color: var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(26,38,34,.12);
}

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

.account-review-stats article {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: #faf8f4;
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 18px;
}

.account-review-stats strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.account-review-stats span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
}

.account-review-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px;
  background: #faf8f4;
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 18px;
}

.account-review-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.account-review-tabs button.is-active {
  color: #fff;
  background: var(--forest);
}

.account-review-tabs span {
  display: inline-grid;
  min-width: 22px;
  min-height: 22px;
  place-items: center;
  color: inherit;
  background: rgba(255,255,255,.22);
  border-radius: 999px;
  font-size: 9px;
}

.account-review-panel {
  display: none;
}

.account-review-panel.is-active {
  display: block;
}

.account-review-product-grid,
.account-review-history {
  display: grid;
  gap: 14px;
}

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

.account-review-product-card,
.account-review-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.account-review-image {
  display: block;
  overflow: hidden;
  background: #f6f1e8;
  border-radius: 16px;
}

.account-review-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.account-review-product-body {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.account-review-title {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.account-review-title:hover {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-review-meta,
.account-review-model {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.account-review-open {
  width: fit-content;
  margin-top: 4px;
}

.account-review-status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
}

.account-review-status.is-approved {
  color: var(--forest);
  background: var(--sage);
}

.account-review-status.is-rejected {
  color: #8a4a1f;
  background: #f7e4d3;
}

.account-review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.account-review-stars {
  display: flex;
  gap: 5px;
}

.account-review-stars button,
.account-review-stars span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #d4cab7;
  background: #faf8f4;
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 50%;
}

.account-review-stars button {
  cursor: pointer;
}

.account-review-stars button.is-active,
.account-review-stars span.is-active {
  color: #b8860b;
  background: #fff7df;
  border-color: rgba(184,134,11,.24);
}

.account-review-modal-open,
.account-review-modal-open body {
  overflow: hidden;
}

.account-review-modal {
  position: fixed;
  z-index: 140;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.account-review-modal[hidden] {
  display: none;
}

.account-review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18,28,24,.52);
  backdrop-filter: blur(8px);
}

.account-review-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(720px, calc(100vh - 48px));
  overflow-y: auto;
  display: grid;
  gap: 14px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 26px;
  box-shadow: 0 34px 95px rgba(12,22,18,.26);
}

.account-review-dialog h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.account-review-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #faf8f4;
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 50%;
}

.account-review-dialog-product {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: #faf8f4;
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 18px;
}

.account-review-dialog-product img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 14px;
}

.account-review-dialog-product strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.account-review-form {
  display: grid;
  gap: 12px;
}

.account-review-label {
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
}

.account-review-form textarea {
  min-height: 128px;
  resize: vertical;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: none;
  font-size: 12px;
  line-height: 1.6;
}

.account-review-form textarea:focus {
  border-color: rgba(18,61,52,.42);
  outline: none;
  box-shadow: 0 0 0 4px rgba(18,61,52,.08);
}

.account-review-message {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.account-review-message.is-error {
  color: var(--danger);
}

.account-order-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
  padding: 8px;
  background: #faf8f4;
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 18px;
}

.account-order-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.account-order-tabs a.is-active,
.account-order-tabs a:hover {
  color: #fff;
  background: var(--forest);
}

.account-order-card-list,
.account-order-product-list,
.account-order-history-list {
  display: grid;
  gap: 14px;
}

.account-order-card,
.account-order-panel,
.account-order-summary article,
.account-order-info-grid article,
.account-order-history-panel,
.account-order-history-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.account-order-card {
  overflow: hidden;
}

.account-order-card-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr .9fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: #faf8f4;
}

.account-order-card-head div,
.account-order-summary article {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.account-order-card-head span,
.account-order-summary span,
.account-order-panel-head span,
.account-order-payment-row span,
.account-order-history-card span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
}

.account-order-card-head strong,
.account-order-summary strong,
.account-order-panel-head strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-order-total,
.account-order-product-body em,
.account-order-payment-row:last-child strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}

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

.account-order-status {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.account-order-status > i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
}

.account-order-status.is-cancel > i {
  color: var(--danger);
  background: #fff1f1;
}

.account-order-status.is-return > i,
.account-order-status.is-progress > i {
  color: #8a4a1f;
  background: #f7e4d3;
}

.account-order-status span {
  display: grid;
  gap: 3px;
}

.account-order-status strong {
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.account-order-status.is-cancel strong {
  color: var(--danger);
}

.account-order-status.is-return strong,
.account-order-status.is-progress strong {
  color: #8a4a1f;
}

.account-order-status small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.account-order-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.account-order-products a {
  width: 74px;
  height: 74px;
  display: inline-flex;
  overflow: hidden;
  background: #f6f1e8;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.account-order-products img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-order-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.account-order-summary article {
  padding: 16px;
}

.account-order-status-text.is-done {
  color: var(--forest);
}

.account-order-status-text.is-cancel {
  color: var(--danger);
}

.account-order-status-text.is-return,
.account-order-status-text.is-progress {
  color: #8a4a1f;
}

.account-order-panel {
  overflow: hidden;
  margin-bottom: 16px;
}

.account-order-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  background: #faf8f4;
}

.account-order-panel-head div {
  display: grid;
  gap: 5px;
}

.account-order-pill,
.account-order-seller a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  color: var(--forest);
  background: #fff;
  border: 1px solid rgba(18,61,52,.16);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.account-order-pill.is-new {
  color: var(--danger);
  border-color: rgba(180,35,24,.28);
  box-shadow: 0 0 0 3px rgba(180,35,24,.08);
}

.account-order-pill em {
  min-height: 20px;
  padding: 0 7px;
  color: #fff;
  background: var(--danger);
  border-radius: 999px;
  font-size: 8px;
  font-style: normal;
}

.account-order-seller {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 16px 18px 0;
  padding: 13px 15px;
  background: #faf8f4;
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 16px;
}

.account-order-seller span {
  color: var(--muted);
  font-size: 11px;
}

.account-order-seller strong {
  color: var(--forest);
}

.account-order-panel > .account-order-status {
  margin: 18px;
}

.account-order-shipment {
  display: grid;
  gap: 12px;
  margin: 18px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.account-order-shipment-state {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.account-order-shipment-state > i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
}

.account-order-shipment.is-progress .account-order-shipment-state > i {
  color: #8a4a1f;
  background: #f7e4d3;
}

.account-order-shipment-state strong {
  display: block;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.account-order-shipment.is-progress .account-order-shipment-state strong {
  color: #8a4a1f;
}

.account-order-shipment-state small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.account-order-shipment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.account-order-shipment-meta span,
.account-order-shipping-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  color: var(--muted);
  background: #faf8f4;
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
}

.account-order-shipment-meta strong,
.account-order-shipping-pill strong {
  color: var(--ink);
}

.account-order-shipping-pill {
  margin: 0 18px 18px;
}

.account-order-product-list {
  padding: 0 18px 18px;
}

.account-order-product {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.account-order-product-image {
  width: 96px;
  height: 96px;
  display: block;
  overflow: hidden;
  background: #f6f1e8;
  border-radius: 14px;
}

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

.account-order-product-body {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.account-order-product-body > a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.account-order-product-body small,
.account-order-product-body span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.account-order-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.account-order-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.account-order-info-grid article {
  overflow: hidden;
}

.account-order-info-grid h2,
.account-order-history-panel h2 {
  margin: 0;
  padding: 16px 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.account-order-info-grid h2 {
  background: #faf8f4;
  border-bottom: 1px solid var(--line);
}

.account-order-info-grid article > div {
  padding: 18px;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.7;
}

.account-order-payment-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}

.account-order-payment-row + .account-order-payment-row {
  border-top: 1px solid var(--line);
}

.account-order-history-panel {
  margin-top: 16px;
  padding-bottom: 18px;
}

.account-order-history-panel > p {
  margin: 0 18px 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.account-order-history-list {
  margin-inline: 18px;
}

.account-order-history-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  background: #faf8f4;
  border-radius: 16px;
}

.account-order-history-card strong {
  color: var(--ink);
  font-size: 12px;
}

.account-order-history-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.account-pagination-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  color: var(--muted);
  font-size: 11px;
}

.account-pagination-row .pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.account-pagination-row .page-item {
  list-style: none;
}

.account-pagination-row .page-link {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--forest);
  background: #fffdf8;
  border: 1px solid rgba(23, 32, 29, .1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.account-pagination-row .active > .page-link,
.account-pagination-row .page-link:hover {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}

.account-payment-method-card {
  align-items: start;
}

.account-payment-method-card .account-record-body {
  display: block;
}

.account-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.account-detail-grid article {
  display: grid;
  gap: 5px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.account-detail-grid-soft {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.account-detail-grid span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
}

.account-detail-grid strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.account-note-card {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  padding: 16px;
  background: #faf8f4;
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 16px;
}

.account-note-card strong {
  font-size: 12px;
}

.account-note-card span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

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

.account-empty-compact {
  padding: 28px 18px;
}

.account-register-aside {
  position: sticky;
  top: 114px;
  gap: 14px;
}

.account-register-panel {
  gap: 14px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(26,38,34,.07);
}

.account-register-list {
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-register-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
}

.account-register-list i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
  font-size: 9px;
}

.account-register-help {
  color: #fff;
  background: var(--forest);
}

.account-register-help strong,
.account-register-help span {
  color: inherit;
}

.account-register-help span {
  color: rgba(255,255,255,.74);
}

.account-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.account-benefits div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.account-benefits i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
}

.account-benefits strong,
.account-benefits span {
  display: block;
}

.account-benefits strong {
  font-size: 12px;
}

.account-benefits span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.account-shell,
.vc-account-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.account-sidebar,
.vc-account-sidebar {
  position: sticky;
  top: 114px;
  display: grid;
  gap: 14px;
  padding: 18px;
}

.account-user-card,
.vc-account-user-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  color: var(--ink);
  background: #faf8f4;
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 18px;
}

.account-avatar,
.vc-account-user-card__avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.account-user-card strong,
.vc-account-user-card strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
}

.account-user-card small,
.vc-account-user-card small {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10px;
}

.account-points-card,
.vc-account-points-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  color: #fff;
  background: var(--forest);
  border-radius: 18px;
}

.account-points-card strong,
.vc-account-points-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.account-points-card small,
.account-points-card em,
.vc-account-points-card small,
.vc-account-points-card em {
  color: rgba(255,255,255,.72);
  font-size: 10px;
  font-style: normal;
}

.account-menu-card,
.vc-account-menu-card {
  display: grid;
  gap: 5px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.account-menu-card h2,
.vc-account-menu-card h2 {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.account-menu-card a,
.vc-account-menu-card a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 8px 10px;
  color: var(--ink);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 750;
}

.account-menu-card a:hover,
.account-menu-card a.is-active,
.vc-account-menu-card a:hover,
.vc-account-menu-card a.active {
  color: var(--forest);
  background: var(--sage);
}

.account-menu-card i,
.vc-account-menu-card i {
  color: var(--forest);
}

.account-menu-card em,
.vc-account-menu-card em {
  min-width: 24px;
  padding: 3px 7px;
  color: var(--forest);
  background: #fff;
  border: 1px solid rgba(18,61,52,.13);
  border-radius: 999px;
  font-size: 9px;
  font-style: normal;
  text-align: center;
}

.account-main,
.vc-account-main {
  min-width: 0;
  padding: 28px;
}

.account-dashboard-hero {
  grid-template-columns: 82px minmax(0, 1fr);
  margin-top: 0;
}

.account-dashboard-avatar {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.account-stat-grid,
.vc-account-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.account-stat-grid a,
.vc-account-hero__stats a {
  display: grid;
  gap: 3px;
  padding: 16px;
  background: #faf8f4;
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 16px;
}

.account-stat-grid strong,
.vc-account-hero__stats strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.account-stat-grid span,
.vc-account-hero__stats span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.account-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.account-action-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: .2s ease;
}

.account-action-card:hover {
  border-color: rgba(18,61,52,.28);
  transform: translateY(-2px);
}

.account-action-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
}

.account-action-card strong,
.account-action-card span {
  grid-column: 2;
}

.account-action-card strong {
  font-size: 13px;
}

.account-action-card span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.account-section-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-top: 0;
}

.wishlist-grid {
  display: grid;
  gap: 14px;
}

.wishlist-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.wishlist-card-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 1;
  color: var(--forest);
  background: var(--sage);
  border-radius: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.wishlist-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wishlist-card-body {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.wishlist-card-title {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.wishlist-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
}

.wishlist-card-meta span {
  padding: 5px 8px;
  background: #faf8f4;
  border-radius: 999px;
}

.wishlist-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.wishlist-card-price strong {
  color: var(--forest);
  font-size: 18px;
  font-weight: 900;
}

.wishlist-card-price del {
  color: var(--muted);
  font-size: 12px;
}

.wishlist-card-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 10px;
  color: #8a4a1f;
  background: #f7e4d3;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
}

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

.wishlist-card-actions .button {
  min-height: 42px;
}

.wishlist-card-actions .btn-danger {
  color: var(--danger);
  background: #fff;
  border-color: rgba(157,61,49,.25);
}

.wishlist-card-actions .btn-danger:hover {
  color: #fff;
  background: var(--danger);
  border-color: var(--danger);
}

.account-empty,
.vc-account-empty {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 54px 24px;
  text-align: center;
  background: #faf8f4;
  border: 1px solid rgba(23,32,29,.08);
  border-radius: 20px;
}

.account-empty i,
.vc-account-empty i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
  font-size: 22px;
}

.account-empty h2,
.vc-account-empty h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.account-empty p,
.vc-account-empty p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.vc-account-toolbar,
.vc-account-tabs,
.vc-order-card,
.vc-order-detail-summary,
.vc-order-delivery-card,
.vc-order-detail-info-grid article,
.vc-order-history-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.vc-account-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
  padding: 18px;
}

.vc-account-toolbar h2,
.vc-order-detail-summary h2,
.vc-order-detail-info-grid h2,
.vc-order-history-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.vc-account-search {
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: #faf8f4;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.vc-account-search input {
  width: 100%;
  height: 42px;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 11px;
}

.vc-account-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  padding: 10px;
}

.vc-account-tabs a {
  padding: 9px 13px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
}

.vc-account-tabs a.active,
.vc-account-tabs a:hover {
  color: #fff;
  background: var(--forest);
}

@media (max-width: 1120px) {
  :root { --container: min(100% - 40px, 1000px); }
  .desktop-nav { gap: 19px; }
  .category-hero-copy { padding-inline: 42px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-layout { gap: 36px; }
  .story-copy { padding: 48px; }
  .checkout-layout { grid-template-columns: minmax(0, 1fr) 340px; }
  .account-shell,
  .vc-account-shell { grid-template-columns: 270px minmax(0, 1fr); }
  .account-stat-grid,
  .vc-account-hero__stats,
  .account-detail-grid,
  .account-review-product-grid,
  .account-order-summary,
  .account-order-info-grid,
  .account-payment-methods { grid-template-columns: repeat(2, 1fr); }
  .account-order-card-head { grid-template-columns: repeat(2, minmax(0, 1fr)) auto; }
  .account-order-card-head .button { grid-column: 3; grid-row: 1 / span 2; }
  .account-order-card-body { grid-template-columns: minmax(220px, .9fr) minmax(0, 1fr); }
  .account-order-card-body > .button { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 32px, 720px); }
  .header-main { min-height: 70px; grid-template-columns: auto 1fr auto; }
  .desktop-nav { display: none; }
  .brand { grid-column: 2; justify-self: center; }
  .brand-text small { display: none; }
  .header-actions { grid-column: 3; }
  .header-actions .account-button { display: none; }
  .menu-button { grid-column: 1; grid-row: 1; display: grid; }
  .mobile-panel { top: 106px; }
  .category-hero { grid-template-columns: 1fr; }
  .category-hero-copy { min-height: 330px; padding: 46px; }
  .category-hero-image { min-height: 360px; }
  .cart-hero { grid-template-columns: 1fr; padding: 26px; }
  .cart-hero-note { min-height: 0; }
  .checkout-hero { grid-template-columns: 1fr; padding: 26px; }
  .checkout-hero-panel { min-height: 0; }
  .checkout-steps { grid-template-columns: 1fr 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; order: -1; }
  .checkout-legacy-top { grid-template-columns: 1fr; }
  .checkout-secure-badge { justify-self: start; }
  .checkout-legacy-layout { grid-template-columns: 1fr; }
  .checkout-page-legacy .checkout-summary { position: static; order: 2; }
  .checkout-inline-options-payment { grid-template-columns: 1fr; }
  .category-seo { grid-template-columns: 1fr; }
  .category-seo-grid,
  .category-seo-description + .category-seo-grid {
    grid-column: 1;
    grid-template-columns: 1fr;
  }
  .account-auth-hero,
  .account-auth-layout,
  .account-register-layout,
  .account-shell,
  .vc-account-shell { grid-template-columns: 1fr; }
  .account-sidebar,
  .account-register-aside,
  .vc-account-sidebar { position: static; }
  .account-auth-card { min-height: 0; }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-listing-hero,
  .listing-empty-rich { grid-template-columns: 1fr; }
  .brand-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .filters {
    position: fixed;
    z-index: 80;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(360px, 90vw);
    overflow-y: auto;
    padding: 22px;
    background: var(--paper);
    transform: translateX(-100%);
    transition: transform .3s ease;
  }
  .drawer-open .filters { transform: none; }
  .tool-button { display: inline-flex; align-items: center; cursor: pointer; }
  .product-layout { grid-template-columns: 1fr; }
  .product-panel { position: static; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-thumbs {
    grid-row: 2;
    height: auto;
  }
  .thumbs {
    height: auto;
    flex-direction: row;
    overflow: auto hidden;
    scroll-snap-type: x proximity;
  }
  .gallery-thumbs.has-overflow .thumbs { padding-block: 0; }
  .thumb-scroll { display: none; }
  .thumb { flex: 0 0 72px; }
  .main-image {
    height: auto;
    aspect-ratio: .81;
  }
  .story { grid-template-columns: 1fr; }
  .story-image { min-height: 460px; }
  .recommendation-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit,
  .benefit:first-child,
  .benefit:last-child { padding: 20px 16px; border-bottom: 1px solid var(--line); }
  .benefit:nth-child(2n) { border-right: 0; }
  .benefit:nth-child(n+3) { border-bottom: 0; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; gap: 42px; }
  .footer-brand { grid-column: span 3; }
}

@media (max-width: 580px) {
  :root { --container: calc(100% - 28px); }
  .announcement { min-height: 32px; font-size: 8px; }
  .site-header { top: 0; }
  .header-main { min-height: 64px; }
  .mobile-panel { top: 96px; }
  .brand-text strong { font-size: 19px; }
  .brand-mark { width: 27px; height: 27px; }
  .brand-mark::before { width: 8px; height: 34px; left: 8px; top: -5px; }
  .brand-mark::after { width: 34px; height: 8px; left: -5px; top: 8px; }
  .icon-button { width: 38px; height: 38px; }
  .breadcrumb { padding-block: 16px; font-size: 9px; }
  .category-hero { border-radius: 20px; }
  .category-hero-copy { min-height: 315px; padding: 35px 25px; }
  .category-hero h1 { font-size: 46px; }
  .category-hero-image { min-height: 300px; }
  .category-link { min-width: 145px; }
  .checkout-hero h1 { font-size: 46px; }
  .checkout-legacy-container { max-width: calc(100% - 24px); }
  .checkout-legacy-top { align-items: flex-start; }
  .checkout-legacy-logo span { font-size: 24px; }
  .checkout-secure-badge { font-size: 11px; }
  .checkout-secure-badge strong { font-size: 17px; }
  .checkout-legacy-card-head,
  .checkout-legacy-card-body,
  .checkout-products-list { padding-inline: 16px; }
  .checkout-products-toggle summary { padding-inline: 16px; }
  .checkout-address-entry-modal { padding: 12px; align-items: stretch; }
  .checkout-address-entry-dialog { width: 100%; max-height: calc(100vh - 24px); }
  .checkout-address-entry-head { padding: 15px 16px; }
  .checkout-address-entry-body { gap: 14px; padding: 16px; }
  .checkout-address-account-options,
  .checkout-address-grid { grid-template-columns: 1fr; }
  .checkout-phone-field { grid-template-columns: 86px minmax(0, 1fr); }
  .checkout-address-entry-actions { padding: 14px 16px; }
  .checkout-products-item { grid-template-columns: 48px minmax(0, 1fr); }
  .checkout-products-item em { grid-column: 2; }
  .checkout-address-head { display: grid; }
  .checkout-address-selected { width: 100%; }
  .checkout-inline-option { padding: 15px; }
  .checkout-steps { grid-template-columns: 1fr; }
  .checkout-steps span { min-height: 48px; }
  .checkout-card-head {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 22px 20px 14px;
  }
  .checkout-card-index { width: 40px; height: 40px; }
  .checkout-card h2,
  .checkout-summary h2 { font-size: 26px; }
  .checkout-card-body { padding: 0 20px 22px; }
  .checkout-card-compact .checkout-card-head {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 16px 16px 9px;
  }
  .checkout-card-compact .checkout-card-index {
    width: 34px;
    height: 34px;
  }
  .checkout-card-compact h2 { font-size: 22px; }
  .checkout-card-compact .checkout-card-body { padding: 0 16px 16px; }
  .checkout-page .input-group {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
  }
  .checkout-page .input-group .btn {
    grid-column: 1 / -1;
    border-radius: 0;
  }
  .checkout-method-picker {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 9px;
  }
  .checkout-method-icon {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }
  .checkout-method-picker .btn {
    grid-column: 1 / -1;
    width: 100%;
  }
  .checkout-method-modal .modal-dialog {
    margin: 14px;
  }
  .checkout-method-modal .modal-title {
    font-size: 22px;
  }
  .checkout-method-modal-actions .btn {
    width: 100%;
  }
  .checkout-summary { padding: 20px; }
  .checkout-summary-compact { padding: 16px; }
  .checkout-summary-compact .checkout-summary-item {
    grid-template-columns: 50px minmax(0, 1fr);
  }
  .checkout-summary-compact .checkout-summary-thumb { width: 50px; }
  .checkout-summary-product { padding-right: 0; }
  .checkout-summary-compact .checkout-summary-product { padding-right: 0; }
  .checkout-summary-price {
    position: static;
    grid-column: 2;
    margin-top: 4px;
  }
  .account-auth-hero,
  .account-dashboard-hero,
  .account-section-head,
  .vc-account-hero {
    grid-template-columns: 1fr;
    padding: 26px;
    border-radius: 22px;
  }
  .account-auth-hero h1,
  .account-dashboard-hero h1,
  .account-section-head h1,
  .vc-account-hero h2 { font-size: 42px; }
  .account-onepass-shell { min-height: 0; padding: 24px 0 12px; }
  .account-onepass-card { min-height: 0; padding: 24px; border-radius: 18px; }
  .account-onepass-brand { grid-template-columns: 42px minmax(0, 1fr); }
  .account-onepass-brand h1,
  .account-onepass-panel h2 { font-size: 22px; }
  .account-onepass-submit { min-height: 52px; }
  .account-auth-card,
  .account-main,
  .vc-account-main { padding: 22px; }
  .account-form-section-head,
  .account-field-grid,
  .account-choice-card,
  .account-invoice-toggle,
  .account-invoice-fields,
  .account-payment-methods,
  .account-bank-grid,
  .account-tracking-copy,
  .account-security-code-row,
  .account-address-card,
  .account-record-card,
  .account-detail-grid,
  .account-detail-grid-soft,
  .account-reason-grid,
  .account-review-stats,
  .account-review-product-grid,
  .account-review-product-card,
  .account-review-card,
  .account-order-summary,
  .account-order-card-head,
  .account-order-card-body,
  .account-order-info-grid,
  .account-order-product,
  .account-order-shipment-state {
    grid-template-columns: 1fr;
  }
  .account-order-tabs { display: grid; }
  .account-order-tabs a { justify-content: center; }
  .account-order-card-head .button,
  .account-order-card-body > .button {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
  }
  .account-order-panel-head,
  .account-order-seller {
    align-items: stretch;
    flex-direction: column;
  }
  .account-order-pill,
  .account-order-seller a,
  .account-order-product-actions .button {
    width: 100%;
  }
  .account-order-product-actions {
    display: grid;
  }
  .account-order-product-image {
    width: 82px;
    height: 82px;
  }
  .account-review-tabs { display: grid; }
  .account-review-tabs button { justify-content: center; }
  .account-review-dialog {
    max-height: calc(100vh - 28px);
    padding: 24px 20px;
    border-radius: 22px;
  }
  .account-ledger-total { justify-items: start; }
  .account-choice-card .form-check-input {
    grid-row: 1;
  }
  .account-register-submit {
    display: grid;
  }
  .account-form-actions,
  .account-address-actions {
    display: grid;
  }
  .account-benefits,
  .account-card-grid,
  .account-stat-grid,
  .vc-account-hero__stats { grid-template-columns: 1fr; }
  .wishlist-card { grid-template-columns: 98px minmax(0, 1fr); gap: 13px; }
  .wishlist-card-actions { display: grid; grid-template-columns: 1fr; }
  .vc-account-toolbar { display: grid; }
  .vc-account-search { min-width: 0; }
  .catalog-head { display: block; padding-top: 30px; }
  .catalog-head h2 { font-size: 35px; }
  .catalog-tools { margin-top: 18px; justify-content: space-between; }
  .catalog-listing-page .catalog-tools { align-items: stretch; }
  .listing-tools,
  .listing-selects { width: 100%; }
  .listing-selects { display: grid; grid-template-columns: minmax(0, 1fr) 112px; }
  .listing-selects .sort-select { width: 100%; }
  .sort-select { min-width: 0; width: 58%; }
  .tool-button { width: 39%; justify-content: center; }
  .catalog-count { display: none; }
  .catalog-layout { padding-bottom: 68px; }
  .product-grid { gap: 27px 10px; }
  .listing-search-form { grid-template-columns: 1fr; }
  .listing-search-form .button { width: 100%; }
  .listing-hero-panel { padding: 30px 24px; }
  .listing-mini-products,
  .brand-card-grid { grid-template-columns: 1fr; }
  .listing-empty-rich,
  .brand-index-section { padding: 22px; }
  .product-media { border-radius: 14px; }
  .product-badges { top: 8px; left: 8px; }
  .product-badge { min-height: 21px; padding-inline: 7px; font-size: 7px; }
  .wishlist { top: 8px; right: 8px; width: 31px; height: 31px; }
  .quick-add { display: none; }
  .product-info { padding-top: 11px; }
  .product-title { min-height: 48px; font-size: 15px; }
  .product-rating { font-size: 9px; }
  .product-price { display: grid; gap: 2px; }
  .product-card-cart-discount {
    min-height: 22px;
    padding-inline: 8px;
    font-size: 9px;
  }
  .product-colors { display: none; }
  .gallery { margin-inline: -14px; }
  .main-image { border-radius: 0; }
  .thumbs { padding-inline: 14px; }
  .product-panel h1 { font-size: 39px; }
  .buy-row,
  .buy-row.is-stock-out,
  .buy-row.is-stock-out.has-similar-products {
    grid-template-columns: 92px 48px;
    justify-content: start;
  }
  .buy-row .add-cart,
  .buy-row .stock-notify-cta,
  .buy-row .similar-products-cta {
    display: none !important;
  }
  .delivery-cards { grid-template-columns: 1fr; }
  .product-campaign-card {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    min-height: 58px;
    padding: 10px;
  }
  .product-campaign-icon {
    width: 34px;
    height: 34px;
  }
  .product-campaign-price {
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }
  .product-campaign-price strong { font-size: 16px; }
  .story { margin-top: 68px; border-radius: 20px; }
  .story-image { min-height: 360px; }
  .story-copy { padding: 38px 25px; }
  .story-copy h2 { font-size: 38px; }
  .feature-list { grid-template-columns: 1fr; }
  .product-detail-tabs {
    margin-top: 28px;
  }
  .detail-tabs {
    overflow: auto hidden;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .detail-tabs::-webkit-scrollbar {
    display: none;
  }
  .detail-tab {
    flex: 0 0 auto;
    min-height: 46px;
    padding-inline: 14px;
  }
  .detail-tab-panels {
    padding-top: 18px;
  }
  .detail-tab-panel table {
    display: block;
    width: 100% !important;
  }
  .detail-tab-panel thead,
  .detail-tab-panel tbody,
  .detail-tab-panel tr {
    display: block;
    width: 100% !important;
  }
  .detail-tab-panel td,
  .detail-tab-panel th {
    display: block;
    width: 100% !important;
  }
  .detail-tab-panel tbody tr {
    display: grid;
    grid-template-columns: minmax(88px, .38fr) minmax(0, 1fr);
  }
  .detail-tab-panel tbody td {
    min-width: 0;
  }
  .recommendations { padding-top: 68px; }
  .section-title h2 { font-size: 36px; }
  .recommendation-grid { gap: 26px 10px; }
  .benefits { margin-top: 68px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit,
  .benefit:first-child,
  .benefit:last-child,
  .benefit:nth-child(n+3) { padding: 17px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit:last-child { border-bottom: 0; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 35px 22px; padding-block: 50px 40px; }
  .footer-brand { grid-column: span 2; }
  .footer-column:last-child { grid-column: span 2; }
  .footer-bottom { min-height: 86px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 7px; }
  .preview-label { right: 9px; bottom: 76px; padding: 8px 11px; font-size: 7px; }
  .product-page { padding-bottom: 90px; }
  .mobile-buy-bar {
    position: fixed;
    z-index: 60;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 10px;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255,255,255,.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }
  .mobile-buy-bar strong { display: block; font-size: 15px; }
  .mobile-buy-bar small { color: var(--muted); font-size: 8px; }
  .mobile-buy-bar button {
    min-height: 47px;
    color: #fff;
    background: var(--forest);
    border: 0;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 850;
  }
  .mobile-buy-bar button.is-stock-notify {
    color: var(--forest);
    background: #fff;
    border: 1px solid rgba(16, 73, 60, .28);
  }
  .mobile-buy-bar button.is-stock-notify.is-notify-requested {
    color: #fff;
    background: var(--forest);
    border-color: var(--forest);
  }
  .toast { bottom: 84px; width: calc(100% - 28px); min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Home page */
.home-page { overflow: hidden; }
.home-hero {
  position: relative;
  background:
    radial-gradient(circle at 12% 12%, rgba(182,111,67,.13), transparent 27%),
    linear-gradient(135deg, #eee7dc 0%, #f7f5ef 58%);
}
.home-hero-layout {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(420px, .84fr) minmax(0, 1.16fr);
  gap: 70px;
  align-items: center;
  padding-block: 54px;
}
.home-hero-copy { position: relative; z-index: 2; padding: 42px 0; }
.home-hero-copy h1 {
  max-width: 650px;
  margin: 25px 0 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 5.25vw, 82px);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.055em;
}
.home-hero-copy h1 em { color: var(--copper); font-weight: 400; }
.home-hero-copy > p {
  max-width: 565px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}
.home-hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.home-text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
}
.home-text-link:hover { color: var(--copper); }
.home-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 610px;
  margin-top: 62px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}
.home-proof div { display: grid; gap: 6px; }
.home-proof strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
}
.home-proof span { max-width: 120px; color: var(--muted); font-size: 8px; line-height: 1.5; }
.home-hero-visual {
  position: relative;
  height: 612px;
  overflow: hidden;
  border-radius: 4px 42px 4px 42px;
  box-shadow: 0 30px 80px rgba(36,48,43,.16);
}
.home-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(8,23,19,.33));
  pointer-events: none;
}
.home-hero-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: center 57%; }
.hero-product-note {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 27px;
  min-width: 245px;
  display: grid;
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}
.hero-product-note span { color: var(--copper); font-size: 8px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.hero-product-note strong { margin-top: 6px; font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 400; }
.hero-product-note small { margin-top: 8px; color: var(--muted); font-size: 9px; }
.hero-index {
  position: absolute;
  z-index: 2;
  top: 25px;
  right: 25px;
  padding: 9px 13px;
  color: #fff;
  background: rgba(14,41,35,.68);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-intro { padding: 120px 0 130px; }
.home-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .5fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 47px;
}
.home-section-head h2,
.home-title-row h2,
.home-story-copy h2,
.home-campaign h2,
.home-hospitality h2 {
  margin: 20px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.25vw, 65px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.045em;
}
.home-section-head p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.home-category-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-rows: 355px 285px;
  gap: 17px;
}
.home-category-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #e9e4da;
  border-radius: 22px;
}
.home-category-card-large { grid-row: span 2; }
.home-category-card-wide { grid-column: span 2; }
.home-category-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.home-category-card:hover > img { transform: scale(1.035); }
.home-category-card-large > img { object-position: center 48%; }
.home-category-card-sand { background: #e8e3d9; }
.home-category-card-sand > img { object-position: center 36%; opacity: .95; }
.home-category-card-wide > img { object-position: center 55%; }
.category-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 43%, rgba(9,24,20,.72));
}
.category-card-content {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 26px;
  display: grid;
  color: #fff;
}
.category-card-content small { font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; opacity: .72; }
.category-card-content strong { margin-top: 6px; font-family: Georgia, "Times New Roman", serif; font-size: 29px; font-weight: 400; }
.category-card-content span { margin-top: 13px; font-size: 9px; font-weight: 750; }
.category-card-content-dark { top: 25px; bottom: auto; color: var(--ink); }
.category-card-content-dark small { color: var(--muted); }
.home-products { padding: 112px 0 125px; background: #fff; }
.home-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 47px;
}
.home-title-row h2 { font-size: clamp(42px, 4vw, 60px); }
.home-product-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
.home-story { padding: 130px 0; background: #e7eee8; }
.home-story-layout { display: grid; grid-template-columns: 1fr .92fr; gap: 105px; align-items: center; }
.home-story-image { position: relative; height: 675px; overflow: hidden; border-radius: 3px 34px 3px 34px; }
.home-story-image img { width: 100%; height: 100%; object-fit: cover; }
.home-story-image > span {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 15px 23px;
  color: #fff;
  background: var(--forest);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.home-story-copy h2 { max-width: 650px; }
.home-story-copy > p {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}
.story-points { display: grid; gap: 0; margin: 36px 0 30px; border-top: 1px solid rgba(23,32,29,.13); }
.story-points div { display: grid; grid-template-columns: 150px 1fr; gap: 22px; padding: 19px 0; border-bottom: 1px solid rgba(23,32,29,.13); }
.story-points strong { font-size: 10px; }
.story-points span { color: var(--muted); font-size: 10px; line-height: 1.65; }
.home-campaign { padding: 36px 0; background: var(--paper); }
.home-campaign-card {
  min-height: 340px;
  display: grid;
  grid-template-columns: 1.2fr .55fr;
  gap: 80px;
  align-items: center;
  padding: 68px 78px;
  color: #fff;
  background:
    radial-gradient(circle at 95% 10%, rgba(228,163,109,.28), transparent 32%),
    var(--forest);
  border-radius: 28px;
}
.home-campaign .eyebrow { color: #e4b08e; }
.home-campaign h2 { max-width: 760px; font-size: clamp(42px, 4vw, 60px); }
.home-campaign p { margin: 20px 0 0; color: rgba(255,255,255,.62); font-size: 12px; }
.home-campaign-actions { display: grid; justify-items: start; gap: 28px; }
.home-campaign-actions > span { display: grid; gap: 5px; }
.home-campaign-actions strong { font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 400; }
.home-campaign-actions small { color: rgba(255,255,255,.52); font-size: 9px; }
.home-hospitality { padding: 125px 0 35px; }
.home-hospitality-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 90px; align-items: center; }
.home-hospitality-copy > p {
  max-width: 570px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}
.hospitality-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 37px 0;
  padding-block: 25px;
  border-block: 1px solid var(--line);
}
.hospitality-stats div { display: grid; gap: 6px; }
.hospitality-stats strong { font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 400; }
.hospitality-stats span { color: var(--muted); font-size: 8px; line-height: 1.5; }
.home-hospitality-image { position: relative; height: 600px; overflow: hidden; border-radius: 34px 4px 34px 4px; }
.home-hospitality-image img { width: 100%; height: 100%; object-fit: cover; }
.home-hospitality-image > span {
  position: absolute;
  right: 25px;
  bottom: 25px;
  min-width: 190px;
  display: grid;
  padding: 16px 20px;
  background: rgba(255,255,255,.92);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}
.home-hospitality-image strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 400; }
.home-hospitality-image small { margin-top: 5px; color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.home-benefits { margin-top: 120px; }

@media (max-width: 1120px) {
  .home-hero-layout { min-height: 640px; grid-template-columns: .9fr 1.1fr; gap: 38px; }
  .home-hero-visual { height: 530px; }
  .home-proof { gap: 14px; }
  .home-category-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 480px 310px 300px; }
  .home-category-card-large { grid-row: auto; }
  .home-category-card-wide { grid-column: span 2; }
  .home-product-grid { grid-template-columns: repeat(3, 1fr); }
  .home-story-layout { gap: 55px; }
  .home-story-image { height: 600px; }
  .home-campaign-card { padding: 58px; }
  .home-hospitality-layout { gap: 55px; }
}

@media (max-width: 760px) {
  .home-hero-layout { min-height: 0; grid-template-columns: 1fr; gap: 0; padding: 0; }
  .home-hero-copy { padding: 58px 0 42px; }
  .home-hero-copy h1 { margin: 20px 0; font-size: clamp(46px, 14vw, 62px); }
  .home-hero-copy > p { font-size: 12px; line-height: 1.75; }
  .home-hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; margin-top: 27px; }
  .home-proof { gap: 10px; margin-top: 42px; }
  .home-proof strong { font-size: 19px; }
  .home-proof span { font-size: 7px; }
  .home-hero-visual { width: calc(100% + 28px); height: 485px; margin-left: -14px; border-radius: 0; }
  .hero-product-note { left: 14px; right: 14px; bottom: 14px; min-width: 0; }
  .hero-index { top: 14px; right: 14px; }
  .home-intro { padding: 78px 0 82px; }
  .home-section-head { grid-template-columns: 1fr; gap: 22px; margin-bottom: 30px; }
  .home-section-head h2,
  .home-title-row h2,
  .home-story-copy h2,
  .home-campaign h2,
  .home-hospitality h2 { font-size: 39px; }
  .home-section-head p { font-size: 11px; }
  .home-category-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 390px 250px 225px; gap: 10px; }
  .home-category-card-large { grid-column: span 2; }
  .home-category-card-wide { grid-column: span 2; }
  .home-category-card { border-radius: 15px; }
  .category-card-content { left: 17px; right: 17px; bottom: 17px; }
  .category-card-content strong { font-size: 21px; }
  .category-card-content span { font-size: 8px; }
  .category-card-content-dark { top: 17px; bottom: auto; }
  .home-products { padding: 76px 0 82px; }
  .home-title-row { align-items: flex-start; flex-direction: column; gap: 21px; margin-bottom: 30px; }
  .home-product-grid { grid-template-columns: 1fr 1fr; gap: 28px 10px; }
  .home-product-grid .product-card:last-child { display: block; }
  .home-story { padding: 82px 0; }
  .home-story-layout { grid-template-columns: 1fr; gap: 48px; }
  .home-story-image { height: 470px; }
  .home-story-copy > p { font-size: 11px; }
  .story-points div { grid-template-columns: 105px 1fr; gap: 13px; }
  .home-campaign { padding: 18px 0; }
  .home-campaign-card { min-height: 0; grid-template-columns: 1fr; gap: 42px; padding: 48px 28px; border-radius: 20px; }
  .home-campaign-actions { gap: 22px; }
  .home-hospitality { padding: 78px 0 0; }
  .home-hospitality-layout { grid-template-columns: 1fr; gap: 48px; }
  .hospitality-stats { gap: 9px; }
  .hospitality-stats strong { font-size: 20px; }
  .home-hospitality-image { height: 450px; border-radius: 22px 3px 22px 3px; }
  .home-hospitality-image > span { right: 14px; bottom: 14px; }
  .home-benefits { margin-top: 80px; }
}

/* OpenCart integration */
.brand-logo {
  width: 150px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

#varol-cart-slot {
  display: flex;
}

.varol-cart-shell,
.varol-cart-menu {
  position: relative;
}

.varol-cart-button {
  text-decoration: none;
}

.varol-cart-menu::after {
  content: "";
  position: absolute;
  z-index: 94;
  top: 100%;
  right: 0;
  width: min(380px, calc(100vw - 28px));
  height: 18px;
  pointer-events: none;
}

.varol-cart-menu:hover::after,
.varol-cart-menu:focus-within::after,
.varol-cart-menu.is-open::after {
  pointer-events: auto;
}

.varol-mini-cart,
.varol-cart-notification {
  position: absolute;
  z-index: 95;
  top: calc(100% + 14px);
  right: 0;
  width: min(380px, calc(100vw - 28px));
  color: var(--ink);
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(18,61,52,.12);
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(18,61,52,.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease;
}

.varol-mini-cart::before,
.varol-cart-notification::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 18px;
  width: 14px;
  height: 14px;
  background: inherit;
  border-top: 1px solid rgba(18,61,52,.12);
  border-left: 1px solid rgba(18,61,52,.12);
  transform: rotate(45deg);
}

.varol-cart-menu:hover .varol-mini-cart,
.varol-cart-menu:focus-within .varol-mini-cart,
.varol-cart-menu.is-open .varol-mini-cart,
.varol-cart-notification.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.varol-mini-cart-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 12px;
  border-bottom: 1px solid var(--line);
}

.varol-mini-cart-head strong {
  font-size: 15px;
  font-weight: 850;
}

.varol-mini-cart-head span {
  color: var(--muted);
  font-size: 11px;
}

.varol-mini-cart-list {
  max-height: 320px;
  display: grid;
  gap: 12px;
  overflow: auto;
  padding: 14px 18px;
}

.varol-mini-cart-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 30px;
  gap: 12px;
  align-items: center;
}

.varol-mini-cart-thumb {
  width: 58px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--surface);
  border-radius: 10px;
}

.varol-mini-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.varol-mini-cart-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.varol-mini-cart-copy a {
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.varol-mini-cart-copy span,
.varol-mini-cart-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.varol-mini-cart-item form {
  margin: 0;
}

.varol-mini-cart-item button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.varol-mini-cart-totals {
  display: grid;
  gap: 7px;
  padding: 0 18px 14px;
}

.varol-mini-cart-totals div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 11px;
}

.varol-mini-cart-totals .is-total {
  color: var(--ink);
  font-size: 14px;
}

.varol-mini-cart-actions,
.varol-cart-notification-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px 18px 18px;
}

.varol-mini-cart-actions a,
.varol-cart-notification-actions a,
.varol-cart-notification-actions button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  text-decoration: none;
}

.varol-mini-cart-actions a:first-child,
.varol-cart-notification-actions button {
  color: var(--forest);
  background: #fff;
  border: 1px solid rgba(18,61,52,.18);
}

.varol-mini-cart-actions a:last-child,
.varol-cart-notification-actions a {
  color: #fff;
  background: var(--forest);
  border: 1px solid var(--forest);
}

.varol-cart-notification {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
}

.varol-cart-notification[hidden] {
  display: none;
}

.varol-cart-notification-thumb {
  width: 58px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--surface);
  border-radius: 10px;
}

.varol-cart-notification-thumb[hidden] {
  display: none;
}

.varol-cart-notification-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.varol-cart-notification-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 4px;
}

.varol-cart-notification-copy strong {
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
}

.varol-cart-notification-copy span {
  overflow: hidden;
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.varol-cart-notification-copy small {
  color: var(--muted);
  font-size: 10px;
}

.varol-cart-notification-actions {
  grid-column: 1 / -1;
  padding: 0;
}

.varol-cart-notification-actions button {
  cursor: pointer;
}

.varol-mini-cart-empty {
  display: grid;
  gap: 6px;
  padding: 26px 18px;
  text-align: center;
}

.varol-mini-cart-empty strong {
  font-size: 15px;
  font-weight: 850;
}

.varol-mini-cart-empty span {
  color: var(--muted);
  font-size: 11px;
}

.header-search-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  max-height: 0;
  background: rgba(247, 245, 239, .98);
  border-bottom: 1px solid transparent;
  opacity: 0;
  transition: max-height .25s ease, opacity .2s ease, border-color .2s ease;
}

.search-open .header-search-panel {
  max-height: min(620px, calc(100vh - 110px));
  border-color: var(--line);
  opacity: 1;
}

.header-search-form {
  position: relative;
  display: grid;
  gap: 12px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.header-search-form input[type="search"] {
  width: 100%;
  height: 54px;
  padding: 0 62px 0 20px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: 0;
}

.header-search-form input[type="search"]:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(18, 61, 52, .08);
}

.header-search-form .header-search-field button {
  right: 8px;
  width: 40px;
  height: 40px;
}

.header-search-form .header-search-field button svg {
  width: 18px;
  height: 18px;
}

.header-search-live {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(18,61,52,.1);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(18,61,52,.12);
}

.header-search-live-state {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.header-search-live-groups {
  display: grid;
  gap: 12px;
  max-height: min(420px, calc(100vh - 230px));
  overflow: auto;
}

.header-search-group {
  display: grid;
  gap: 6px;
}

.header-search-group h3 {
  margin: 0;
  color: var(--forest);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.header-search-result {
  min-width: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(18,61,52,.045);
  border: 1px solid rgba(18,61,52,.08);
  border-radius: 14px;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.header-search-result:hover,
.header-search-result.is-active {
  background: var(--sage);
  border-color: rgba(18,61,52,.18);
  transform: translateY(-1px);
}

.header-search-result img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: cover;
  border-radius: 10px;
}

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

.header-search-result strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-search-result small {
  color: var(--muted);
  font-size: 11px;
}

.header-search-result em {
  margin-left: auto;
  padding: 5px 7px;
  color: var(--forest);
  background: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.header-search-view-all {
  justify-self: start;
  padding: 8px 11px;
  color: #fff;
  background: var(--forest);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.varol-alerts {
  position: fixed;
  z-index: 120;
  top: 132px;
  left: 50%;
  width: min(560px, calc(100vw - 32px));
  transform: translateX(-50%);
}

.varol-alerts .alert {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 52px;
  margin: 0 0 10px;
  padding: 14px 44px 14px 16px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(23, 32, 29, .1);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(23, 32, 29, .13);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.55;
}

.varol-alerts .alert-success {
  color: var(--forest);
  background: #eef8f2;
  border-color: rgba(18, 61, 52, .18);
}

.varol-alerts .alert-danger {
  color: #7a211b;
  background: #fff4f2;
  border-color: rgba(157, 61, 49, .2);
}

.varol-alerts .btn-close {
  position: absolute;
  top: 12px;
  right: 12px;
  opacity: .72;
}

.product-media > form {
  position: static;
}

.category-page {
  padding-bottom: 0;
}

.catalog-layout > div {
  min-width: 0;
}

.category-filter-link {
  text-decoration: none;
}

.filter-checkmark {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
}

.check.is-active .filter-checkmark {
  position: relative;
  background: var(--forest);
  border-color: var(--forest);
}

.check.is-active .filter-checkmark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.load-track::after {
  width: var(--progress, 38%);
}

.varol-pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  max-width: 100%;
  margin: 0;
}

.varol-pagination .page-link {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px !important;
  font-size: 10px;
}

.varol-pagination .active > .page-link,
.varol-pagination .page-link:hover {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}

.catalog-empty {
  padding: 70px 30px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.catalog-empty p {
  margin: 0 0 24px;
  color: var(--muted);
}

.catalog-listing-page {
  padding-bottom: 90px;
}

.catalog-listing-section {
  padding-bottom: 96px;
}

.catalog-listing-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .64fr);
}

.listing-hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  min-height: 100%;
  padding: 46px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(213, 162, 127, .35), transparent 34%),
    linear-gradient(145deg, var(--forest), #0e2923);
}

.listing-panel-kicker {
  color: rgba(255,255,255,.66);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.listing-hero-panel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  line-height: 1;
}

.listing-hero-panel small {
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

.listing-hero-panel .button {
  align-self: flex-start;
  margin-top: 8px;
}

.listing-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 620px;
  margin-top: 26px;
}

.listing-search-form input[type="search"] {
  min-height: 50px;
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: 0;
}

.listing-check {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
}

.listing-check input {
  width: 15px;
  height: 15px;
  accent-color: var(--forest);
}

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

.listing-chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

.listing-chip:hover,
.listing-chip.is-active {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}

.listing-tools {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.listing-selects {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.listing-selects .sort-select {
  width: auto;
}

.limit-select {
  min-width: 112px;
}

.listing-note {
  margin: -6px 0 24px;
  padding: 14px 18px;
  color: var(--forest);
  background: rgba(213, 162, 127, .16);
  border: 1px solid rgba(213, 162, 127, .35);
  border-radius: 14px;
  font-size: 12px;
}

.listing-empty-rich {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  gap: 18px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.listing-empty-rich h2,
.brand-index-section h3 {
  margin: 10px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -.03em;
}

.listing-empty-rich p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.75;
}

.listing-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.listing-empty-panel {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.listing-empty-panel h3 {
  margin: 0 0 14px;
  font-size: 13px;
}

.listing-empty-products {
  grid-column: 1 / -1;
}

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

.listing-mini-product {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
}

.listing-mini-product img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}

.listing-mini-product strong {
  display: block;
  font-size: 11px;
  line-height: 1.35;
}

.listing-mini-product small {
  display: block;
  margin-top: 6px;
  color: var(--forest);
  font-weight: 850;
}

.listing-mini-product del {
  color: var(--muted);
  font-weight: 500;
}

.brand-index-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.brand-index-nav a {
  min-width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
}

.brand-index-nav a:hover {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}

.brand-index-sections {
  display: grid;
  gap: 26px;
}

.brand-index-section {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}

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

.brand-card {
  display: grid;
  gap: 6px;
  min-height: 86px;
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 16px;
  text-decoration: none;
}

.brand-card span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.brand-card small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.brand-card:hover {
  border-color: rgba(18,61,52,.36);
  transform: translateY(-1px);
}

.option-button:disabled {
  cursor: not-allowed;
}
.option-button.is-out-of-stock,
.option-button:disabled {
  color: #9a9f9a;
  background: #fbfaf7;
  border-color: #ddd8cf;
  box-shadow: none;
  opacity: 1;
}
.option-button.is-out-of-stock::before,
.option-button:disabled::before {
  content: "";
  position: absolute;
  left: -8%;
  top: 50%;
  z-index: 2;
  width: 116%;
  height: 1px;
  background: rgba(143, 148, 143, .52);
  transform: rotate(20deg);
  pointer-events: none;
}
.option-button.is-active.is-out-of-stock {
  color: #6f766f;
  background: #fbfaf7;
  border-color: #b8b1a6;
  box-shadow: 0 0 0 2px rgba(26, 38, 34, .06);
}
.option-button.is-active.is-out-of-stock::before {
  background: rgba(116, 122, 116, .62);
}
.option-button .variant-stock-bell {
  top: -6px;
  right: -6px;
  width: 16px;
  height: 16px;
}
.variant-swatch.is-notify-requested,
.variant-chip.is-notify-requested,
.product-quick-swatch.is-notify-requested,
.product-quick-chip.is-notify-requested,
.option-button.is-notify-requested {
  border-color: rgba(16, 73, 60, .58);
}
.variant-swatch.is-notify-requested .variant-stock-bell,
.variant-chip.is-notify-requested .variant-stock-bell,
.product-quick-swatch.is-notify-requested .variant-stock-bell,
.product-quick-chip.is-notify-requested .variant-stock-bell,
.option-button.is-notify-requested .variant-stock-bell {
  background: #10493c;
  border-color: #fff;
  box-shadow: 0 5px 13px rgba(16, 73, 60, .25);
}
.variant-swatch.is-notify-requested .variant-stock-bell::before,
.variant-chip.is-notify-requested .variant-stock-bell::before,
.product-quick-swatch.is-notify-requested .variant-stock-bell::before,
.product-quick-chip.is-notify-requested .variant-stock-bell::before,
.option-button.is-notify-requested .variant-stock-bell::before {
  border-color: #fff;
  border-bottom: 0;
}
.variant-swatch.is-notify-requested .variant-stock-bell::after,
.variant-chip.is-notify-requested .variant-stock-bell::after,
.product-quick-swatch.is-notify-requested .variant-stock-bell::after,
.product-quick-chip.is-notify-requested .variant-stock-bell::after,
.option-button.is-notify-requested .variant-stock-bell::after {
  background: #fff;
}
.variant-swatch.is-active.is-notify-requested .variant-stock-bell,
.variant-chip.is-active.is-notify-requested .variant-stock-bell,
.product-quick-swatch.is-active.is-notify-requested .variant-stock-bell,
.product-quick-chip.is-active.is-notify-requested .variant-stock-bell,
.option-button.is-active.is-notify-requested .variant-stock-bell {
  background: #10493c;
  border-color: #fff;
  box-shadow: 0 5px 13px rgba(16, 73, 60, .25);
}
.variant-swatch.is-active.is-notify-requested .variant-stock-bell::before,
.variant-chip.is-active.is-notify-requested .variant-stock-bell::before,
.product-quick-swatch.is-active.is-notify-requested .variant-stock-bell::before,
.product-quick-chip.is-active.is-notify-requested .variant-stock-bell::before,
.option-button.is-active.is-notify-requested .variant-stock-bell::before {
  border-color: #fff;
  border-bottom: 0;
}
.variant-swatch.is-active.is-notify-requested .variant-stock-bell::after,
.variant-chip.is-active.is-notify-requested .variant-stock-bell::after,
.product-quick-swatch.is-active.is-notify-requested .variant-stock-bell::after,
.product-quick-chip.is-active.is-notify-requested .variant-stock-bell::after,
.option-button.is-active.is-notify-requested .variant-stock-bell::after {
  background: #fff;
}

.varol-field,
.varol-subscription-select {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  font-size: 11px;
}

textarea.varol-field {
  resize: vertical;
}

.invalid-feedback.d-block {
  display: block;
  margin-top: 8px;
  color: var(--danger);
  font-size: 9px;
}

.product-description {
  font-size: 11px;
}

.product-description > :first-child {
  margin-top: 0;
}

.product-description img {
  max-width: 100%;
  height: auto;
}

.attribute-group-title {
  display: block;
  margin: 8px 0;
  color: var(--ink);
}

.attribute-list {
  margin: 0 0 16px;
}

.attribute-list div {
  display: grid;
  grid-template-columns: minmax(100px, .8fr) 1.2fr;
  gap: 14px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}

.attribute-list dt {
  color: var(--ink);
  font-weight: 700;
}

.attribute-list dd {
  margin: 0;
}

.installment-cards {
  gap: 10px;
}

.detail-item.is-open .detail-content.installment-cards {
  display: grid;
}

.installment-card {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.installment-card span,
.installment-card small {
  color: var(--muted);
}

.product-reviews {
  padding: 80px 0 10px;
}

.product-review-panel {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3vw, 32px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(26, 38, 34, .07);
}

.product-reviews h2 {
  margin: 10px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.08;
}

.product-review-list {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.varol-review-list {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.varol-review-card {
  min-width: 0;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.varol-review-card header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.varol-review-card strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.varol-review-card time {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.varol-review-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.varol-review-card .rating,
.compare-table .rating {
  color: var(--copper);
}

.varol-review-card .rating {
  display: inline-flex;
  gap: 3px;
  padding-top: 2px;
}

.varol-review-empty {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 150px;
  padding: 28px;
  color: var(--muted);
  background: var(--paper);
  border: 1px dashed rgba(23, 32, 29, .2);
  border-radius: 18px;
  text-align: center;
}

.varol-review-empty i {
  color: var(--forest);
  font-size: 28px;
}

.varol-review-empty p {
  margin: 0;
}

.varol-review-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
}

.varol-review-pagination .pagination {
  max-width: 100%;
  flex-wrap: wrap;
}

.product-review-write {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.product-review-fields {
  display: grid;
  gap: 4px;
}

.product-reviews .form-control {
  min-height: 48px;
  padding: 12px 14px;
  background: #fbfaf7;
  border-color: var(--line);
  border-radius: 14px;
  box-shadow: none;
}

.product-reviews textarea.form-control {
  min-height: 132px;
  resize: vertical;
}

.product-reviews .form-control:focus {
  background: #fff;
  border-color: rgba(18, 61, 52, .42);
  box-shadow: 0 0 0 4px rgba(18, 61, 52, .08);
}

.product-reviews .form-field small,
.product-review-login {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.review-rating-input {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.review-rating-input > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.review-rating-input label {
  position: relative;
  cursor: pointer;
}

.review-rating-input input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.review-rating-input i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--copper);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: .18s ease;
}

.review-rating-input input:checked + i,
.review-rating-input label:hover i {
  color: #fff;
  background: var(--copper);
  border-color: var(--copper);
  transform: translateY(-1px);
}

.review-rating-input.is-invalid i,
.review-rating-input .form-check-input.is-invalid + i {
  border-color: rgba(157, 61, 49, .45);
}

.product-reviews .btn-primary {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
  border-radius: 999px;
}

body:has(.mobile-buy-bar) .varol-whatsapp {
  bottom: 88px;
}

.varol-whatsapp {
  position: fixed;
  z-index: 65;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #1f9d55;
  border-radius: 50%;
  box-shadow: 0 14px 35px rgba(15, 70, 45, .28);
  font-size: 23px;
}

.varol-whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
}

.footer-logo {
  display: inline-flex;
}

.footer-brand > a:not(.brand) {
  display: block;
  width: fit-content;
  margin-top: 14px;
  color: rgba(255, 255, 255, .74);
  font-size: 11px;
}

.blog-page {
  padding-bottom: 96px;
  background: var(--paper);
}

.blog-hero,
.blog-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .46fr);
  gap: 42px;
  align-items: stretch;
  margin-bottom: 34px;
  padding: clamp(34px, 5vw, 64px);
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(213, 162, 127, .28), transparent 34%),
    linear-gradient(145deg, var(--forest), #102c26);
  border-radius: 28px;
  overflow: hidden;
}

.blog-detail-hero {
  display: block;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.blog-hero h1,
.blog-detail-hero h1 {
  max-width: 820px;
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 400;
  line-height: .98;
}

.blog-hero p,
.blog-hero-description {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
}

.blog-hero-image,
.blog-detail-image {
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  border-radius: 24px;
}

.blog-hero-image img,
.blog-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.blog-search {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(160px, .45fr) auto;
  gap: 10px;
  flex: 1;
}

.blog-search input,
.blog-search select,
.blog-sort select {
  min-height: 46px;
  width: 100%;
  padding: 0 16px;
  color: var(--ink);
  background: #f7f4ee;
  border: 1px solid transparent;
  border-radius: 999px;
  outline: 0;
}

.blog-topic-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.blog-topic-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}

.blog-topic-nav a.is-active,
.blog-topic-nav a:hover {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}

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

.blog-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.blog-card-image {
  display: block;
  aspect-ratio: 1.25;
  overflow: hidden;
  background: #eeeae2;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-copy {
  padding: 22px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-detail-hero .blog-meta {
  justify-content: center;
  margin-top: 20px;
  color: rgba(255,255,255,.66);
}

.blog-card h2 {
  margin: 12px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.18;
}

.blog-card h2 a,
.blog-read-more {
  color: var(--ink);
  text-decoration: none;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.blog-read-more {
  display: inline-flex;
  margin-top: 20px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.blog-detail {
  max-width: 960px;
  margin: 0 auto;
}

.blog-detail-image {
  min-height: 420px;
  margin-bottom: 34px;
  background: #eeeae2;
}

.blog-detail-content {
  padding: clamp(28px, 5vw, 58px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.85;
}

.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3 {
  margin: 1.2em 0 .55em;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.14;
}

.blog-detail-content h1:first-child,
.blog-detail-content h2:first-child,
.blog-detail-content h3:first-child {
  margin-top: 0;
}

.blog-detail-content > h1:first-child,
.blog-detail-content > h1:first-of-type {
  display: none;
}

.blog-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.blog-detail-content a {
  color: var(--forest);
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}

.blog-tags strong,
.blog-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}

.blog-tags strong {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.blog-tags a {
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  text-decoration: none;
}

.blog-comments,
.blog-back {
  max-width: 960px;
  margin: 28px auto 0;
}

.blog-comments {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.blog-comment-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 22px;
}

.blog-comment-actions,
.blog-comment-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}

.blog-comment-action {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--forest);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.blog-comment-action:hover {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}

.blog-comment-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 18px;
  align-items: end;
  margin-bottom: 20px;
}

.blog-comment-head h2 {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -.025em;
}

.blog-comment-sort {
  display: grid;
  gap: 8px;
}

.blog-comment-sort span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.blog-comment-sort select,
.blog-comment-modal .form-control {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
}

.blog-comment-modal textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.blog-comment-list,
.blog-comment-thread {
  display: grid;
  gap: 14px;
}

.blog-comment-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.blog-comment-card-body {
  padding: 18px;
}

.blog-comment-card header,
.blog-comment-reply header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 14px;
  margin-bottom: 10px;
}

.blog-comment-card strong,
.blog-comment-reply strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.blog-comment-card time,
.blog-comment-reply time {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-comment-card p,
.blog-comment-reply p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.72;
}

.blog-comment-reply-slot {
  border-top: 1px solid var(--line);
}

.blog-comment-replies {
  display: grid;
  gap: 0;
}

.blog-comment-reply {
  margin-left: 24px;
  padding: 18px 18px 18px 22px;
  border-left: 2px solid rgba(18, 61, 52, .18);
}

.blog-comment-more {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px;
}

.blog-comment-empty {
  display: grid;
  place-items: center;
  min-height: 130px;
  padding: 26px;
  color: var(--muted);
  background: var(--paper);
  border: 1px dashed rgba(23, 32, 29, .22);
  border-radius: 18px;
  text-align: center;
}

.blog-comment-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.blog-comment-modal .modal-footer {
  padding: 18px 26px 24px;
  border-top: 1px solid var(--line);
}

.campaign-overview {
  overflow: hidden;
  background: var(--paper);
}

.campaign-overview .hero {
  position: relative;
  overflow: hidden;
  background: #eee8dd;
}

.campaign-overview .hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -220px;
  bottom: -250px;
  border: 1px solid rgba(18, 61, 52, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 78px rgba(18, 61, 52, .035), 0 0 0 156px rgba(18, 61, 52, .025);
}

.campaign-overview .hero-layout {
  min-height: min(680px, calc(100vh - 124px));
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  align-items: stretch;
}

.campaign-overview .hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 80px 96px 0;
}

.campaign-overview .hero h1 {
  max-width: 690px;
  margin: 24px 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 5.4vw, 82px);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.04em;
}

.campaign-overview .hero h1 em {
  color: var(--copper);
  font-weight: 400;
}

.campaign-overview .hero-description {
  max-width: 580px;
  margin: 0;
  color: #4e5a56;
  font-size: 18px;
  line-height: 1.75;
}

.campaign-overview .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.campaign-overview .button svg,
.campaign-overview .text-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.campaign-overview .hero-image {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #d8d1c5;
}

.campaign-overview .hero-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s ease;
}

.campaign-overview .hero:hover .hero-image > img {
  transform: scale(1.02);
}

.campaign-overview .hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(238, 232, 221, .23), transparent 26%), linear-gradient(0deg, rgba(0, 0, 0, .25), transparent 42%);
  pointer-events: none;
}

.campaign-overview .hero-offer {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  width: 230px;
  padding: 24px;
  color: #fff;
  background: rgba(18, 61, 52, .92);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 22px;
  backdrop-filter: blur(12px);
}

.campaign-overview .hero-offer small {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, .7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.campaign-overview .hero-offer strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 39px;
  font-weight: 400;
  line-height: 1;
}

.campaign-overview .hero-offer span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  line-height: 1.5;
}

.campaign-overview .benefits {
  margin: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.campaign-overview .benefit {
  min-height: 112px;
  padding: 24px 30px;
}

.campaign-overview .benefit strong {
  font-size: 13px;
}

.campaign-overview .benefit span span {
  font-size: 11px;
  line-height: 1.5;
}

.campaign-overview .campaigns {
  padding: 112px 0 124px;
}

.campaign-overview .section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.campaign-overview .section-heading h2 {
  max-width: 760px;
  margin: 15px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.campaign-overview .section-heading p {
  max-width: 390px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.campaign-overview .filter-bar {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  margin-bottom: 28px;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.campaign-overview .filter-bar::-webkit-scrollbar {
  display: none;
}

.campaign-overview .filter-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 18px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.campaign-overview .filter-button:hover,
.campaign-overview .filter-button.is-active {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}

.campaign-overview .campaign-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.campaign-overview .campaign-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--forest);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 50px rgba(20, 35, 30, .08);
  isolation: isolate;
  transition: transform .28s ease, box-shadow .28s ease, opacity .2s ease;
}

.campaign-overview .campaign-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.campaign-overview .campaign-card.is-hidden {
  display: none;
}

.campaign-overview .campaign-card.is-large {
  grid-column: span 8;
  min-height: 610px;
}

.campaign-overview .campaign-card.is-tall {
  grid-column: span 4;
  min-height: 610px;
}

.campaign-overview .campaign-card.is-third {
  grid-column: span 4;
  min-height: 470px;
}

.campaign-overview .campaign-card > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .75, .2, 1);
}

.campaign-overview .campaign-card:hover > img {
  transform: scale(1.035);
}

.campaign-overview .campaign-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 18, 15, .89) 0%, rgba(9, 18, 15, .3) 50%, rgba(9, 18, 15, .04) 100%);
}

.campaign-overview .campaign-card.is-sage {
  color: var(--ink);
  background: #d9e4da;
}

.campaign-overview .campaign-card.is-sage::after {
  background: linear-gradient(0deg, rgba(221, 231, 222, .98) 0%, rgba(221, 231, 222, .76) 49%, rgba(221, 231, 222, .02) 100%);
}

.campaign-overview .campaign-card.is-sand {
  color: var(--ink);
  background: #e8ded0;
}

.campaign-overview .campaign-card.is-sand::after {
  background: linear-gradient(0deg, rgba(235, 225, 211, .98) 0%, rgba(235, 225, 211, .7) 49%, rgba(235, 225, 211, .02) 100%);
}

.campaign-overview .card-top {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.campaign-overview .card-label,
.campaign-overview .card-date {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.campaign-overview .card-date {
  color: #fff;
  background: rgba(15, 26, 22, .42);
}

.campaign-overview .is-sage .card-date,
.campaign-overview .is-sand .card-date {
  color: var(--ink);
  background: rgba(255, 255, 255, .75);
}

.campaign-overview .campaign-card-content {
  padding: 31px;
}

.campaign-overview .campaign-card.is-large .campaign-card-content {
  max-width: 660px;
  padding: 42px;
}

.campaign-overview .offer-kicker {
  display: block;
  max-width: 560px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .74);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.5;
  text-transform: uppercase;
}

.campaign-overview .is-sage .offer-kicker,
.campaign-overview .is-sand .offer-kicker {
  color: rgba(23, 32, 29, .64);
}

.campaign-overview .campaign-card h3 {
  max-width: 620px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.025em;
}

.campaign-overview .campaign-card.is-large h3 {
  font-size: clamp(44px, 4vw, 61px);
}

.campaign-overview .campaign-card p {
  max-width: 560px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  line-height: 1.65;
}

.campaign-overview .is-sage p,
.campaign-overview .is-sand p {
  color: rgba(23, 32, 29, .68);
}

.campaign-overview .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.campaign-overview .text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-weight: 800;
}

.campaign-overview .text-link span {
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
}

.campaign-overview .offer-value {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.campaign-overview .campaign-empty {
  padding: 60px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.campaign-overview .campaign-empty h2 {
  margin: 18px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
}

.campaign-overview .campaign-empty p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.75;
}

.campaign-overview .loyalty {
  padding: 0 0 124px;
}

.campaign-overview .loyalty-panel {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  overflow: hidden;
  color: #fff;
  background: var(--forest);
  border-radius: var(--radius-lg);
}

.campaign-overview .loyalty-panel::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -180px;
  top: -300px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 84px rgba(255, 255, 255, .025), 0 0 0 168px rgba(255, 255, 255, .018);
}

.campaign-overview .loyalty-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
}

.campaign-overview .loyalty-copy .eyebrow {
  color: #d8b08d;
}

.campaign-overview .loyalty-copy h2 {
  max-width: 650px;
  margin: 20px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.campaign-overview .loyalty-copy p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, .69);
  font-size: 14px;
  line-height: 1.75;
}

.campaign-overview .loyalty-copy .button {
  width: fit-content;
  margin-top: 31px;
  color: var(--forest);
  background: #fff;
  border-color: #fff;
}

.campaign-overview .loyalty-visual {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 60px 70px 60px 20px;
}

.campaign-overview .membership-card {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 1.58;
  overflow: hidden;
  padding: 32px;
  color: #fff;
  background: linear-gradient(135deg, #b66f43, #835038);
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 25px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, .27);
  transform: rotate(4deg);
}

.campaign-overview .membership-card::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -170px;
  bottom: -230px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255, 255, 255, .035), 0 0 0 84px rgba(255, 255, 255, .025);
}

.campaign-overview .membership-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.campaign-overview .membership-card-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .18em;
}

.campaign-overview .membership-balance {
  position: absolute;
  left: 32px;
  bottom: 30px;
}

.campaign-overview .membership-balance small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .65);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.campaign-overview .membership-balance strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
}

.campaign-overview .steps {
  padding: 112px 0;
  background: #fff;
}

.campaign-overview .steps .section-heading {
  margin-bottom: 58px;
}

.campaign-overview .step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.campaign-overview .step {
  position: relative;
  padding: 0 54px;
  border-right: 1px solid var(--line);
}

.campaign-overview .step:first-child {
  padding-left: 0;
}

.campaign-overview .step:last-child {
  padding-right: 0;
  border-right: 0;
}

.campaign-overview .step-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 27px;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.campaign-overview .step h3 {
  margin: 0 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
}

.campaign-overview .step p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.campaign-overview .conditions {
  padding: 112px 0 124px;
}

.campaign-overview .conditions-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 100px;
  align-items: start;
}

.campaign-overview .conditions-intro {
  position: sticky;
  top: 32px;
}

.campaign-overview .conditions-intro h2 {
  margin: 16px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.campaign-overview .conditions-intro p {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.campaign-overview .accordion {
  border-top: 1px solid var(--line);
}

.campaign-overview .accordion-item {
  border-bottom: 1px solid var(--line);
}

.campaign-overview .accordion-button {
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 25px;
  align-items: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.campaign-overview .accordion-title {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: center;
}

.campaign-overview .accordion-title small {
  color: var(--copper);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.campaign-overview .accordion-title strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
}

.campaign-overview .accordion-plus {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.campaign-overview .accordion-plus::before,
.campaign-overview .accordion-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.campaign-overview .accordion-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.campaign-overview .accordion-item.is-open .accordion-plus::after {
  transform: translate(-50%, -50%) rotate(0);
}

.campaign-overview .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.campaign-overview .accordion-content-inner {
  padding: 0 70px 30px 118px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

@media (max-width: 1120px) {
  .campaign-overview .hero-layout {
    grid-template-columns: 1fr 1fr;
  }

  .campaign-overview .hero-copy {
    padding-right: 45px;
  }

  .campaign-overview .hero h1 {
    font-size: 58px;
  }

  .campaign-overview .campaign-card.is-large {
    grid-column: span 7;
  }

  .campaign-overview .campaign-card.is-tall {
    grid-column: span 5;
  }

  .campaign-overview .campaign-card.is-third {
    min-height: 430px;
  }
}

@media (max-width: 860px) {
  .campaign-overview .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .campaign-overview .hero-copy {
    min-height: 520px;
    padding: 75px 0 70px;
  }

  .campaign-overview .hero h1 {
    max-width: 680px;
    font-size: clamp(49px, 11vw, 68px);
  }

  .campaign-overview .hero-image {
    min-height: 560px;
  }

  .campaign-overview .section-heading {
    display: block;
  }

  .campaign-overview .section-heading p {
    margin-top: 22px;
  }

  .campaign-overview .campaigns,
  .campaign-overview .steps,
  .campaign-overview .conditions {
    padding-block: 82px;
  }

  .campaign-overview .campaign-card.is-large,
  .campaign-overview .campaign-card.is-tall,
  .campaign-overview .campaign-card.is-third {
    grid-column: span 6;
    min-height: 500px;
  }

  .campaign-overview .campaign-card.is-large {
    grid-column: span 12;
    min-height: 610px;
  }

  .campaign-overview .loyalty {
    padding-bottom: 82px;
  }

  .campaign-overview .loyalty-panel {
    grid-template-columns: 1fr;
  }

  .campaign-overview .loyalty-copy {
    padding: 58px 48px 20px;
  }

  .campaign-overview .loyalty-visual {
    padding: 40px 48px 62px;
  }

  .campaign-overview .step {
    padding-inline: 30px;
  }

  .campaign-overview .conditions-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .campaign-overview .conditions-intro {
    position: static;
  }
}

@media (max-width: 580px) {
  .campaign-overview .hero-copy {
    min-height: 480px;
    padding: 64px 0;
  }

  .campaign-overview .hero h1 {
    margin-block: 20px 22px;
    font-size: clamp(44px, 14vw, 58px);
  }

  .campaign-overview .hero-description {
    font-size: 15px;
    line-height: 1.65;
  }

  .campaign-overview .hero-actions {
    align-items: stretch;
  }

  .campaign-overview .hero-actions .button {
    width: 100%;
  }

  .campaign-overview .hero-image {
    min-height: 450px;
  }

  .campaign-overview .hero-offer {
    right: 16px;
    bottom: 16px;
    width: 205px;
    padding: 20px;
  }

  .campaign-overview .campaigns,
  .campaign-overview .steps,
  .campaign-overview .conditions {
    padding-block: 68px;
  }

  .campaign-overview .section-heading {
    margin-bottom: 32px;
  }

  .campaign-overview .section-heading h2 {
    font-size: 41px;
  }

  .campaign-overview .campaign-grid {
    gap: 16px;
  }

  .campaign-overview .campaign-card.is-large,
  .campaign-overview .campaign-card.is-tall,
  .campaign-overview .campaign-card.is-third {
    grid-column: span 12;
    min-height: 480px;
  }

  .campaign-overview .campaign-card.is-large {
    min-height: 540px;
  }

  .campaign-overview .campaign-card-content,
  .campaign-overview .campaign-card.is-large .campaign-card-content {
    padding: 25px;
  }

  .campaign-overview .campaign-card h3,
  .campaign-overview .campaign-card.is-large h3 {
    font-size: 36px;
  }

  .campaign-overview .card-top {
    top: 17px;
    left: 17px;
    right: 17px;
  }

  .campaign-overview .card-date {
    display: none;
  }

  .campaign-overview .loyalty {
    padding-bottom: 68px;
  }

  .campaign-overview .loyalty-copy {
    padding: 43px 25px 10px;
  }

  .campaign-overview .loyalty-copy h2 {
    font-size: 41px;
  }

  .campaign-overview .loyalty-visual {
    padding: 35px 25px 47px;
  }

  .campaign-overview .membership-card {
    padding: 24px;
    transform: rotate(2deg);
  }

  .campaign-overview .membership-balance {
    left: 24px;
    bottom: 23px;
  }

  .campaign-overview .membership-balance strong {
    font-size: 28px;
  }

  .campaign-overview .step-grid {
    grid-template-columns: 1fr;
  }

  .campaign-overview .step,
  .campaign-overview .step:first-child,
  .campaign-overview .step:last-child {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .campaign-overview .step:first-child {
    padding-top: 0;
  }

  .campaign-overview .step:last-child {
    border-bottom: 0;
  }

  .campaign-overview .accordion-title {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .campaign-overview .accordion-button {
    min-height: 104px;
  }

  .campaign-overview .accordion-title strong {
    font-size: 21px;
  }

  .campaign-overview .accordion-content-inner {
    padding: 0 42px 26px 0;
  }
}

/* Redesign content pages */
.content-page {
  padding: 0 0 96px;
  background: var(--paper);
}

.content-page > .container {
  width: var(--container);
  max-width: none;
}

.content-page .alert {
  margin-bottom: 22px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(26, 38, 34, .07);
}

.content-page .alert-success {
  color: var(--forest);
  background: rgba(220, 231, 223, .62);
}

.content-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin: 4px 0 28px;
  padding: clamp(34px, 5vw, 62px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 14%, rgba(182, 111, 67, .18), transparent 28%),
    linear-gradient(135deg, #f0e6d7, #fffaf1 58%, #dce7df);
  border: 1px solid rgba(23, 32, 29, .08);
  border-radius: 30px;
  box-shadow: 0 22px 54px rgba(26, 38, 34, .08);
}

.content-hero h1 {
  max-width: 900px;
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: .97;
  letter-spacing: -.045em;
}

.content-hero p {
  max-width: 670px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.content-hero-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #fff;
  background: var(--forest);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.content-hero-action:hover {
  color: #fff;
  background: var(--forest-2);
  transform: translateY(-2px);
}

.content-card,
.result-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 18px 48px rgba(26, 38, 34, .08);
}

.content-card {
  padding: clamp(24px, 3vw, 38px);
}

.content-card h2,
.content-section-head h2,
.contact-info-card h2,
.location-card h3,
.result-card h1,
.compare-product-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.content-card h2,
.content-section-head h2 {
  margin-top: 10px;
  font-size: clamp(30px, 3vw, 44px);
}

.content-card legend {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.content-card fieldset {
  min-width: 0;
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

.content-card fieldset:last-of-type {
  margin-bottom: 0;
}

.content-card p,
.rich-text,
.location-card address,
.contact-info-card address {
  color: var(--muted);
  line-height: 1.78;
}

.rich-text {
  font-size: 14px;
}

.rich-text > :first-child {
  margin-top: 0;
}

.rich-text > :last-child {
  margin-bottom: 0;
}

.rich-text h1,
.rich-text h2,
.rich-text h3,
.rich-text h4 {
  margin: 30px 0 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.12;
}

.rich-text a {
  color: var(--forest);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.rich-text ul,
.rich-text ol {
  padding-left: 22px;
}

.rich-text img {
  height: auto;
  border-radius: 18px;
}

.content-modal .modal-content {
  border: 0;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
}

.content-modal .modal-header {
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}

.content-modal .modal-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.content-modal .modal-body {
  padding: 26px;
}

.content-section {
  margin-top: 38px;
}

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

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

.contact-info-card {
  position: sticky;
  top: 112px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 18px 48px rgba(26, 38, 34, .08);
}

.contact-info-card img {
  width: 100%;
  aspect-ratio: 1.25;
  margin-bottom: 22px;
  object-fit: cover;
  background: #eeeae2;
  border-radius: 20px;
}

.contact-info-card .contact-store-image {
  object-fit: contain;
  padding: clamp(26px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .74), rgba(242, 235, 224, .86)),
    #eeeae2;
  border: 1px solid rgba(23, 32, 29, .08);
}

.contact-info-card h2 {
  margin-top: 12px;
  font-size: 30px;
}

.contact-info-card address {
  margin: 16px 0 0;
  font-style: normal;
}

.contact-info-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.contact-info-list a {
  min-height: 48px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 800;
}

.contact-info-list i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border-radius: 50%;
}

.contact-info-list a:hover {
  border-color: rgba(18, 61, 52, .22);
  transform: translateY(-1px);
}

.contact-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-note strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-note p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.contact-form-card h2 {
  margin-bottom: 24px;
}

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

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field label {
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.form-field.required label::after {
  content: "*";
  margin-left: 4px;
  color: var(--copper);
}

.content-page .form-control,
.content-page .form-select {
  width: 100%;
  min-height: 48px;
  padding: 12px 15px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: none;
  outline: 0;
}

.content-page textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

.content-page .form-control:focus,
.content-page .form-select:focus {
  background: #fff;
  border-color: rgba(18, 61, 52, .42);
  box-shadow: 0 0 0 4px rgba(18, 61, 52, .08);
}

.content-page .invalid-feedback {
  min-height: 14px;
  color: var(--danger);
  font-size: 10px;
}

.content-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}

.content-form-actions small {
  max-width: 620px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.content-form-actions small a {
  color: var(--forest);
  font-weight: 850;
}

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

.location-card {
  display: grid;
  gap: 13px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.location-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 16px;
}

.location-card h3 {
  font-size: 25px;
}

.location-card address {
  margin: 0;
  font-style: normal;
}

.location-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.location-card > a:not(.button) {
  color: var(--forest);
  font-size: 12px;
  font-weight: 850;
}

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

.choice-card {
  min-height: 72px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 18px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 18px;
  cursor: pointer;
}

.choice-card:has(input:checked) {
  background: rgba(220, 231, 223, .58);
  border-color: rgba(18, 61, 52, .34);
}

.choice-card.is-danger:has(input:checked) {
  background: rgba(157, 61, 49, .08);
  border-color: rgba(157, 61, 49, .28);
}

.choice-card strong {
  font-size: 12px;
}

.content-warning {
  margin-top: 14px;
  padding: 18px;
  color: #6a372d;
  background: #fff7ed;
  border: 1px solid rgba(182, 111, 67, .28);
  border-radius: 18px;
}

.content-warning:not(.show) {
  display: none;
}

.content-warning p {
  margin: 0 0 10px;
  color: #6a372d;
  font-weight: 800;
}

.content-warning ul {
  margin: 0;
  padding-left: 18px;
  color: #7e5548;
  line-height: 1.7;
}

.sitemap-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
}

.sitemap-card h2 {
  margin-bottom: 22px;
}

.sitemap-tree,
.sitemap-tree ul,
.link-group-list,
.link-group-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-tree,
.link-group-list {
  display: grid;
  gap: 11px;
}

.sitemap-tree ul {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.sitemap-tree a,
.link-group-list a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  width: 100%;
  padding: 10px 14px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 800;
}

.sitemap-tree a:hover,
.link-group-list a:hover {
  color: var(--forest);
  background: #fff;
  border-color: rgba(18, 61, 52, .2);
}

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

.link-group-list h2,
.link-group-list h3 {
  margin: 0 0 10px;
  color: var(--forest);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.link-group-list li + li {
  margin-top: 8px;
}

.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.faq-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faq-nav a:hover {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}

.faq-group-list {
  display: grid;
  gap: 18px;
}

.faq-group .content-section-head {
  align-items: start;
  margin-bottom: 16px;
}

.faq-group .content-section-head h2 {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.faq-group .content-section-head h2 i {
  color: var(--copper);
  font-size: .55em;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 26px;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 860px;
  margin: -4px 0 20px;
  color: var(--muted);
  line-height: 1.75;
}

.result-page {
  min-height: calc(100vh - 260px);
  display: grid;
  align-items: center;
}

.result-card {
  max-width: 820px;
  margin: 20px auto 0;
  padding: clamp(34px, 5vw, 58px);
  text-align: center;
}

.result-icon,
.result-code {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: #fff;
  background: var(--forest);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.result-code {
  width: auto;
  min-width: 86px;
  padding: 0 18px;
  border-radius: 999px;
}

.result-card h1 {
  margin-top: 10px;
  font-size: clamp(36px, 5vw, 62px);
}

.result-card p {
  max-width: 620px;
  margin: 18px auto 26px;
  color: var(--muted);
  line-height: 1.75;
}

.maintenance-page .result-icon {
  background: var(--copper);
}

.not-found-page .result-code {
  background: #1f2e2a;
}

.compare-shell {
  display: grid;
  gap: 24px;
}

.compare-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.compare-product-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(26, 38, 34, .06);
}

.compare-product-image {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #eeeae2;
  border-radius: 18px;
}

.compare-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.compare-product-image span {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
}

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

.compare-product-card h2 {
  font-size: 22px;
}

.compare-product-card form {
  display: grid;
  gap: 9px;
}

.compare-product-card .button {
  width: 100%;
}

.compare-price {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}

.compare-price strong {
  color: var(--forest);
  font-size: 16px;
  font-weight: 850;
}

.compare-price del {
  color: var(--muted);
  font-size: 12px;
}

.compare-table-wrap {
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(26, 38, 34, .06);
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 12px;
}

.compare-table th,
.compare-table td {
  min-width: 190px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-table th {
  width: 210px;
  color: var(--ink);
  background: #fbfaf7;
  font-weight: 850;
  text-align: left;
}

.compare-table td {
  color: var(--muted);
  line-height: 1.65;
}

.compare-table .rating {
  color: var(--copper);
}

.compare-table .rating small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.compare-group-row th {
  color: #fff;
  background: var(--forest);
  border-bottom-color: rgba(255, 255, 255, .12);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .content-hero,
  .contact-layout,
  .sitemap-layout {
    grid-template-columns: 1fr;
  }

  .content-hero {
    align-items: start;
  }

  .content-hero-action {
    justify-self: start;
  }

  .contact-info-card {
    position: static;
  }

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

@media (max-width: 640px) {
  .content-page {
    padding-bottom: 72px;
  }

  .blog-comments {
    padding: 20px;
  }

  .blog-comment-toolbar {
    justify-content: flex-start;
  }

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

  .blog-comment-card-actions,
  .blog-comment-pagination {
    display: grid;
    justify-content: stretch;
  }

  .blog-comment-card-actions .button,
  .blog-comment-actions .button {
    width: 100%;
  }

  .blog-comment-reply {
    margin-left: 12px;
  }

  .content-hero {
    gap: 18px;
    margin-bottom: 20px;
    padding: 30px 22px;
    border-radius: 24px;
  }

  .content-hero h1 {
    font-size: 38px;
  }

  .content-card,
  .contact-info-card,
  .location-card,
  .result-card {
    border-radius: 22px;
  }

  .content-section-head,
  .content-form-actions {
    display: grid;
    justify-content: stretch;
  }

  .content-form-actions .button,
  .content-form-actions a.button {
    width: 100%;
  }

  .form-grid,
  .choice-grid,
  .location-grid,
  .link-group-list {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    font-size: 13px;
  }

  .compare-products {
    grid-template-columns: 1fr;
  }
}

/* Keep OpenCart fallback pages usable while they are redesigned route by route. */
#product-category,
#product-info,
#checkout-cart,
#account-account,
#account-login {
  width: var(--container);
  max-width: none;
  padding: 36px 0 90px;
}

.breadcrumb {
  margin-bottom: 24px;
  background: transparent;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #a5aaa7;
}

#content > h1,
#product-info h1 {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
}

@media (max-width: 760px) {
  .brand-logo {
    width: 118px;
    height: 44px;
  }

  .header-search-form .header-search-field button {
    right: 8px;
  }

  .varol-cart-shell,
  .varol-cart-menu {
    position: static;
  }

  .account-menu::after,
  .varol-cart-menu::after {
    display: none;
  }

  .varol-mini-cart,
  .varol-cart-notification {
    position: fixed;
    top: 94px;
    right: 12px;
    left: 12px;
    width: auto;
    max-height: calc(100vh - 118px);
    overflow: auto;
  }

  .varol-mini-cart::before,
  .varol-cart-notification::before {
    right: 24px;
  }

  .varol-mini-cart-list {
    max-height: min(320px, calc(100vh - 330px));
  }

  .varol-cart-notification {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .varol-cart-notification-thumb {
    width: 50px;
  }

  .varol-alerts {
    top: 112px;
  }

  .varol-whatsapp {
    right: 16px;
    bottom: 16px;
  }

  .blog-hero,
  .blog-detail-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
    padding: 36px 24px;
    border-radius: 22px;
  }

  .blog-hero h1,
  .blog-detail-hero h1 {
    font-size: 38px;
  }

  .blog-hero-image,
  .blog-detail-image {
    min-height: 220px;
    border-radius: 18px;
  }

  .blog-toolbar,
  .blog-search {
    display: grid;
    grid-template-columns: 1fr;
  }

  .blog-sort {
    width: 100%;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog-card-copy,
  .blog-detail-content,
  .blog-comments {
    padding: 22px;
  }

  .blog-detail-image {
    min-height: 240px;
    margin-bottom: 22px;
  }
}
