/* ============================================================
   GILDED HARMONY — Design System
   Luxurious gold minimalism · warm palette · serif display
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap");

:root {
  --cream: #f6f3ec;
  --cream-deep: #efeae0;
  --cream-card: #fbf9f4;
  --paper: #fdfcf9;
  --ink: #2b2a25;
  --ink-soft: #6c685e;
  --ink-faint: #9a958a;
  --gold: #b08d57;
  --gold-deep: #98763f;
  --gold-light: #c9a86a;
  --gold-wash: #ece1cd;
  --sage: #7a8b6f;
  --sage-deep: #5f6f56;
  --sage-wash: #e4e8de;
  --line: rgba(43, 42, 37, 0.13);
  --line-soft: rgba(43, 42, 37, 0.07);
  --line-gold: rgba(176, 141, 87, 0.45);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --maxw: 1280px;
  --radius: 2px;
  --shadow-sm: 0 1px 3px rgba(43, 42, 37, 0.05);
  --shadow: 0 12px 40px -18px rgba(43, 42, 37, 0.28);
  --shadow-lg: 0 30px 70px -30px rgba(43, 42, 37, 0.4);
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}

/* Typography */
.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.serif {
  font-family: var(--serif);
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.label-xs {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* Layout */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 720px) {
  .wrap {
    padding: 0 22px;
  }
}
.hr-gold {
  width: 46px;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  transition: all 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
  white-space: nowrap;
}
.btn:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: transparent;
}
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}
.btn-sm {
  padding: 12px 22px;
  font-size: 10.5px;
}
.btn-block {
  width: 100%;
}

/* Link with underline */
.link-u {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--gold);
  transition: color 0.3s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
}
.link-u:hover {
  color: var(--gold-deep);
}

/* Placeholder imagery */
.ph {
  position: relative;
  background-color: var(--cream-deep);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(176, 141, 87, 0.07) 0px,
    rgba(176, 141, 87, 0.07) 1px,
    transparent 1px,
    transparent 11px
  );
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph::after {
  content: attr(data-label);
  font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  text-transform: lowercase;
  text-align: center;
  padding: 0 14px;
}
.ph-dark {
  background-color: #34322c;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(201, 168, 106, 0.1) 0px,
    rgba(201, 168, 106, 0.1) 1px,
    transparent 1px,
    transparent 11px
  );
}
.ph-dark::after {
  color: rgba(201, 168, 106, 0.6);
}

/* Badges */
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--paper);
  color: var(--gold-deep);
  border: 1px solid var(--line-gold);
  border-radius: 999px;
}
.badge-sage {
  color: var(--sage-deep);
  border-color: rgba(122, 139, 111, 0.5);
}

/* Forms */
.field {
  width: 100%;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color 0.25s;
}
.field:focus {
  outline: none;
  border-color: var(--gold);
}
.field::placeholder {
  color: var(--ink-faint);
}

/* Utility */
.center {
  text-align: center;
}
.muted {
  color: var(--ink-soft);
}
.nowrap {
  white-space: nowrap;
}
::selection {
  background: var(--gold-wash);
  color: var(--ink);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: #d8d1c2;
  border-radius: 999px;
  border: 3px solid var(--cream);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* ---- HEADER ---- */
.gh-topbar {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 12px;
}
.gh-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transition: all 0.4s ease;
}
.gh-header.scrolled {
  background: rgba(246, 243, 236, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
}
.gh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.gh-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
}
.gh-logo-mark {
  width: 22px;
  height: 22px;
}
.gh-logo-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.gh-logo-sub {
  font-size: 8.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 3px;
}
.gh-nav {
  display: flex;
  gap: 30px;
}
.gh-navlink {
  background: none;
  border: none;
  padding: 6px 0;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink);
  position: relative;
  cursor: pointer;
  transition: color 0.25s;
}
.gh-navlink::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s ease;
}
.gh-navlink:hover::after {
  right: 0;
}
.gh-navlink:hover {
  color: var(--gold-deep);
}
.gh-navlink-gold {
  color: var(--gold-deep);
  font-weight: 500;
}
.gh-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
}
.gh-iconbtn {
  background: none;
  border: none;
  padding: 6px;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition:
    color 0.25s,
    background 0.25s;
  position: relative;
}
.gh-iconbtn:hover {
  color: var(--gold-deep);
  background: var(--cream-deep);
}
.gh-cart-badge {
  position: absolute;
  top: -7px;
  right: -8px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  background: var(--gold);
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- FOOTER ---- */
.gh-footer {
  background: var(--ink);
  color: #cfc9bb;
}
.gh-footer-inner {
  padding: 72px 40px 40px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.gh-foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.gh-footlink {
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  font-size: 13.5px;
  color: #c4bdac;
  cursor: pointer;
  transition: color 0.25s;
}
.gh-footlink:hover {
  color: var(--gold-light);
}
.gh-footer-bottom {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 11.5px;
  color: #8c8678;
}
.gh-footer-bottom a {
  color: #8c8678;
}
.gh-footer-bottom a:hover {
  color: var(--gold-light);
}

/* ---- HERO ---- */
.gh-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: min(78vh, 720px);
  padding: 54px 0;
}
.gh-hero-copy {
  max-width: 520px;
}
.gh-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.gh-hero-title {
  font-size: clamp(48px, 6vw, 86px);
  margin: 0;
  color: var(--ink);
}
.gh-hero-img {
  position: relative;
}
.gh-hero-badge {
  position: absolute;
  top: 22px;
  right: -22px;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}
.gh-hero-label {
  position: absolute;
  bottom: -26px;
  left: -26px;
  width: 150px;
  background: var(--paper);
  border: 1px solid var(--line-gold);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.gh-hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}
.gh-hero-stat-num {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--ink);
  line-height: 1;
}
.gh-hero-stat-label {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 7px;
  max-width: 110px;
}
.gh-hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
}

/* ---- TRUST STRIP ---- */
.gh-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.gh-trust-item {
  padding: 30px 26px;
  border-left: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.gh-trust-item:first-child {
  border-left: none;
}

/* ---- CATEGORIES ---- */
.gh-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gh-cat {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gh-cat img,
.gh-cat .ph {
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.gh-cat:hover img,
.gh-cat:hover .ph {
  transform: scale(1.05);
}
.gh-cat-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(
    to top,
    rgba(43, 42, 37, 0.55),
    rgba(43, 42, 37, 0.05) 55%,
    transparent
  );
}

/* ---- PRODUCT GRID ---- */
.gh-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.gh-prod-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.gh-prod-img {
  position: relative;
  overflow: hidden;
  background: var(--cream-card);
  border: 1px solid var(--line-soft);
}
.gh-prod-img img,
.gh-prod-img .ph {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.gh-prod-card:hover .gh-prod-img img,
.gh-prod-card:hover .gh-prod-img .ph {
  transform: scale(1.04);
}
.gh-prod-add {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s ease;
}
.gh-prod-card:hover .gh-prod-add {
  opacity: 1;
  transform: none;
}
.gh-prod-info {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.gh-prod-price {
  display: flex;
  align-items: baseline;
  gap: 8;
}
.gh-prod-price-current {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.gh-prod-price-old {
  font-size: 12.5px;
  color: var(--ink-faint);
  text-decoration: line-through;
}
.gh-prod-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

/* ---- PHILOSOPHY ---- */
.gh-philo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 90px 40px;
}
.gh-philo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---- WELLNESS BOX TEASER ---- */
.gh-box-teaser {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid var(--line-gold);
  background: var(--cream-card);
}
.gh-box-content {
  padding: 56px 52px;
}

/* ---- REVIEWS ---- */
.gh-rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gh-rev-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 34px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* ---- CATALOG ---- */
.gh-catalog {
  display: grid;
  grid-template-columns: 232px 1fr;
  gap: 44px;
  align-items: start;
}
.gh-filters {
  position: sticky;
  top: 130px;
}
.gh-filter-group {
  margin-bottom: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-soft);
}
.gh-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 3px 0;
  cursor: pointer;
  text-align: left;
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 400;
  width: 100%;
}
.gh-filter-row.active {
  color: var(--gold-deep);
  font-weight: 600;
}
.gh-filter-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s;
  display: inline-block;
  margin-right: 9px;
}
.gh-filter-row.active .gh-filter-dot {
  background: var(--gold);
}
.gh-range {
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background: var(--cream-deep);
  border-radius: 999px;
  outline: none;
  width: 100%;
}
.gh-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid var(--cream);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.gh-select {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 30px 9px 13px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236c685e' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
}
.gh-select:focus {
  outline: none;
  border-color: var(--gold);
}
.gh-check {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}
.gh-check:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.gh-check:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1.5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ---- PRODUCT DETAIL ---- */
.gh-pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.gh-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.gh-gallery-thumb {
  padding: 0;
  border: 1px solid var(--line-soft);
  background: none;
  cursor: pointer;
}
.gh-gallery-thumb.active {
  border: 1px solid var(--gold);
}
.gh-qty {
  width: 40px;
  height: 46px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: color 0.2s;
}
.gh-qty:hover {
  color: var(--gold-deep);
}
.gh-qty-sm {
  width: 30px;
  height: 32px;
}
.gh-tabs {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}
.gh-tab {
  background: none;
  border: none;
  padding: 0 0 14px;
  cursor: pointer;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-faint);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.gh-tab.active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

/* ---- CHECKOUT ---- */
.gh-checkout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.gh-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 46px;
}
.gh-step {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gh-step-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.gh-step-num.done {
  background: var(--gold);
  color: #fff;
  border: none;
}
.gh-step-num.active {
  background: var(--gold);
  color: #fff;
  border: none;
}
.gh-step-num.pending {
  background: transparent;
  color: var(--ink-faint);
  border: 1px solid var(--line);
}
.gh-step-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.gh-step-label.active {
  color: var(--ink);
}
.gh-step-label.pending {
  color: var(--ink-faint);
}
.gh-step-line {
  width: 50px;
  height: 1px;
  background: var(--line);
  margin: 0 18px;
}

/* ---- SUBSCRIPTION ---- */
.gh-sub-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 72px 40px;
}
.gh-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.gh-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gh-plan {
  position: relative;
  padding: 22px 16px;
  cursor: pointer;
  text-align: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.25s;
}
.gh-plan.active {
  background: var(--paper);
  border: 1.5px solid var(--gold);
}
.gh-plan-best {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ---- COOKIE BANNER ---- */
.gh-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 22px 40px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13.5px;
}
.gh-cookie-banner a {
  color: var(--gold-light);
  text-decoration: underline;
}
.gh-cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ---- BREADCRUMB ---- */
.gh-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.gh-breadcrumb a {
  color: var(--ink-soft);
}
.gh-breadcrumb a:hover {
  color: var(--gold-deep);
}
.gh-breadcrumb-sep {
  color: var(--ink-faint);
}

/* ---- CATALOG HERO ---- */
.gh-catalog-hero {
  background: var(--cream-card);
  border-bottom: 1px solid var(--line);
  padding: 46px 40px 40px;
}

/* ---- TOAST ---- */
.gh-toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: var(--shadow-lg);
  font-size: 13.5px;
  z-index: 95;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1080px) {
  .gh-cat-grid,
  .gh-prod-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gh-trust {
    grid-template-columns: repeat(2, 1fr);
  }
  .gh-trust > div:nth-child(3) {
    border-left: none;
  }
}
@media (max-width: 900px) {
  .gh-nav {
    display: none !important;
  }
  .gh-hero,
  .gh-philo,
  .gh-box-teaser,
  .gh-sub-hero,
  .gh-pdp,
  .gh-checkout,
  .gh-rev-grid,
  .gh-steps {
    grid-template-columns: 1fr;
  }
  .gh-box-teaser .ph {
    min-height: 280px;
    border-left: none;
    border-top: 1px solid var(--line-gold);
  }
  .gh-catalog {
    grid-template-columns: 1fr;
  }
  .gh-filters {
    position: static;
  }
  .gh-prod-grid,
  .gh-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gh-foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .gh-prod-grid,
  .gh-cat-grid,
  .gh-trust,
  .gh-plans,
  .gh-steps {
    grid-template-columns: 1fr;
  }
  .gh-foot-grid {
    grid-template-columns: 1fr;
  }
  .gh-hero-title {
    font-size: clamp(38px, 8vw, 60px);
  }
  .gh-cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}
