:root {
  --ink: #18212a;
  --muted: #5f6c75;
  --line: #d8ded8;
  --paper: #f7f4ed;
  --surface: #ffffff;
  --saffron: #d97706;
  --green: #146c43;
  --teal: #087f8c;
  --rose: #b42318;
  --shadow: 0 18px 50px rgba(24, 33, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

.topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(247, 244, 237, 0.9);
  border-bottom: 1px solid rgba(216, 222, 216, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.cart-button,
.icon-button,
.add-button,
.details-button,
.primary-action,
.secondary-action,
.checkout-button,
.filter-head button {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 76px;
  height: 48px;
  padding: 0 14px 0 12px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)),
    var(--ink);
  box-shadow: 0 12px 28px rgba(24, 33, 42, 0.18);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.cart-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(24, 33, 42, 0.24);
}

.cart-button:focus-visible {
  outline: 3px solid rgba(251, 191, 36, 0.55);
  outline-offset: 3px;
}

.cart-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.cart-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

#cartCount {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  padding: 0 7px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: #fbbf24;
  font-size: 12px;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 74px));
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(28px, 6vw, 72px);
  color: #fff;
}

.hero-media,
.hero-media::after,
.hero-media img {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 23, 18, 0.86), rgba(11, 23, 18, 0.54), rgba(11, 23, 18, 0.18)),
    linear-gradient(0deg, rgba(11, 23, 18, 0.68), rgba(11, 23, 18, 0.05) 55%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  padding-bottom: 104px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--saffron);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fbbf24;
}

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

h1 {
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  text-decoration: none;
}

.primary-action {
  color: var(--ink);
  background: #fbbf24;
}

.secondary-action {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.hero-strip {
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  bottom: 24px;
  left: clamp(16px, 4vw, 48px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.hero-strip span {
  display: grid;
  min-height: 84px;
  align-content: center;
  padding: 18px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(12, 26, 20, 0.22);
}

.hero-strip strong {
  display: block;
  color: #fff;
  font-size: 28px;
}

.stats-band,
.states-band,
.trust-band,
.workspace {
  padding: clamp(28px, 5vw, 64px) clamp(16px, 4vw, 48px);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink);
  color: #fff;
}

.stats-band div {
  min-height: 112px;
  padding: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-band span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
}

.filters {
  position: sticky;
  top: 88px;
  height: fit-content;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(24, 33, 42, 0.06);
}

.filter-head,
.section-heading,
.product-meta,
.product-footer,
.drawer-head,
.checkout-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.filter-head span {
  font-size: 18px;
  font-weight: 900;
}

.filter-head button {
  padding: 8px 10px;
  color: var(--teal);
  background: #e6f7f8;
}

.search-box,
.range-field,
.payment-box label {
  display: grid;
  gap: 8px;
}

.search-box,
.range-field,
fieldset {
  margin-top: 22px;
}

.search-box span,
.range-field span,
legend,
.payment-box span,
.sort-control label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 127, 140, 0.14);
}

textarea {
  min-height: 92px;
  padding-top: 10px;
  resize: vertical;
  line-height: 1.45;
}

fieldset {
  min-width: 0;
  padding: 0;
  border: 0;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.chip {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.chip.active {
  border-color: var(--green);
  color: #fff;
  background: var(--green);
}

.catalog {
  min-width: 0;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.6;
}

.sort-control {
  display: grid;
  min-width: 190px;
  gap: 6px;
}

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

.product-card,
.trust-steps article,
.state-tile {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(24, 33, 42, 0.07);
}

.product-card {
  display: grid;
  min-height: 100%;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #ece8df;
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 9px;
  border-radius: 8px;
  color: #fff;
  background: rgba(24, 33, 42, 0.86);
  font-size: 12px;
  font-weight: 900;
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.product-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.product-city {
  margin: -4px 0 0;
  font-size: 11px;
  color: var(--teal);
  font-weight: 600;
}

.product-village {
  margin: -4px 0 0;
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
}

.product-body h3 {
  margin-bottom: 0;
  font-size: 18px;
}

.product-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-details {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(8, 127, 140, 0.22);
  border-radius: 8px;
  background: #eefafa;
}

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

.product-details p {
  color: #315057;
}

.details-button {
  width: fit-content;
  min-height: 34px;
  padding: 0;
  color: var(--teal);
  background: transparent;
  text-align: left;
  font-size: 13px;
}

.details-button:hover {
  color: var(--green);
}

.product-price {
  font-size: 18px;
}

.add-button {
  min-width: 104px;
  min-height: 38px;
  color: #fff;
  background: var(--teal);
}

.states-band {
  background: #fff;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.state-tile {
  display: grid;
  min-height: 120px;
  align-content: end;
  padding: 12px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(24, 33, 42, 0.16), rgba(24, 33, 42, 0.88)),
    var(--tile-image);
  background-position: center;
  background-size: cover;
}

.state-tile span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.state-tile h3 {
  margin: 4px 0 0;
  font-size: 17px;
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background: #eaf3ee;
}

.trust-band h2 {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
}

.trust-band p {
  color: var(--muted);
  line-height: 1.65;
}

.trust-steps {
  display: grid;
  gap: 14px;
}

.trust-steps article {
  padding: 22px;
}

.trust-steps span {
  color: var(--saffron);
  font-weight: 900;
}

.trust-steps h3 {
  margin: 8px 0;
}

.cart-drawer {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  justify-content: end;
  pointer-events: none;
  background: rgba(24, 33, 42, 0);
  transition: background 0.2s ease;
}

.cart-drawer.open {
  pointer-events: auto;
  background: rgba(24, 33, 42, 0.46);
}

.drawer-panel {
  width: min(440px, 100vw);
  min-height: 100vh;
  padding: 22px;
  overflow: auto;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 0.22s ease;
}

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

.icon-button {
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.cart-line img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-line h3 {
  margin-bottom: 4px;
  font-size: 14px;
}

.cart-line span {
  color: var(--muted);
  font-size: 12px;
}

.qty-control {
  display: grid;
  grid-template-columns: 30px 30px 30px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.qty-control button {
  height: 30px;
  border: 0;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.qty-control strong {
  text-align: center;
  font-size: 13px;
}

.checkout-summary {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.checkout-summary span {
  color: var(--muted);
}

.grand-total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 20px;
}

.payment-box {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.payment-box small {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.checkout-button {
  min-height: 46px;
  color: var(--ink);
  background: #fbbf24;
}

.clear-cart-button {
  min-height: 46px;
  color: var(--ink);
  background: #e5e7eb;
  margin-bottom: 8px;
}

.checkout-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.empty-state {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

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

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

  .filters {
    position: static;
  }
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow);
    z-index: 30;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-bottom: 222px;
  }

  .hero-strip,
  .stats-band,
  .trust-band,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    right: 16px;
    left: 16px;
  }

  .stats-band,
  .workspace,
  .states-band,
  .trust-band {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .sort-control {
    width: 100%;
  }
}

/* Account area + auth modal */
.account-area {
  display: flex;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger {
  position: relative;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: background 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s, top 0.3s;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

.account-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.account-button:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.account-chip {
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-name {
  font-weight: 700;
  font-size: 14px;
}

.link-button {
  border: none;
  background: none;
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
}

.link-button:hover {
  text-decoration: underline;
}

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(18, 27, 36, 0.55);
  backdrop-filter: blur(2px);
}

.auth-overlay[hidden] {
  display: none;
}

.auth-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.auth-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.auth-panel h2 {
  margin: 4px 0 6px;
  font-size: 26px;
}

.auth-subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

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

.auth-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.auth-form label em {
  color: var(--muted);
  font-weight: 500;
  font-style: normal;
}

.auth-form input {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 14px;
  font-family: inherit;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--teal);
}

.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.auth-grid .auth-span-2 {
  grid-column: 1 / -1;
}

.auth-switch {
  margin-top: 16px;
}

#authMessage {
  display: block;
  margin-top: 12px;
  color: var(--rose);
  font-size: 13px;
  min-height: 16px;
}

@media (max-width: 560px) {
  .auth-grid {
    grid-template-columns: 1fr;
  }

  .auth-span-2 {
    grid-column: span 1;
  }

  .cart-drawer {
    width: 100%;
    max-width: none;
    border-radius: 0;
  }

  .drawer-panel {
    max-height: 100vh;
  }

  .checkout-summary {
    font-size: 14px;
  }

  .checkout-button,
  .clear-cart-button {
    font-size: 16px;
  }

  .product-body {
    padding: 12px;
  }

  .product-body h3 {
    font-size: 16px;
  }

  .product-body p {
    font-size: 13px;
  }

  .product-city,
  .product-village {
    font-size: 10px;
  }

  .details-button {
    font-size: 14px;
    padding: 8px 12px;
  }

  .add-button {
    font-size: 14px;
    padding: 10px 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
    text-align: center;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .filter-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .search-box input {
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  .chip-grid {
    gap: 8px;
  }

  .chip {
    font-size: 13px;
    padding: 6px 12px;
  }

  .sort-control {
    flex-direction: column;
    gap: 8px;
  }

  .sort-control select {
    width: 100%;
  }

  .price-control {
    flex-direction: column;
    gap: 8px;
  }

  .price-control input {
    width: 100%;
  }

  .cart-line {
    padding: 12px;
  }

  .cart-line img {
    width: 60px;
    height: 60px;
  }

  .cart-line h3 {
    font-size: 14px;
  }

  .qty-control {
    gap: 8px;
  }

  .qty-control button {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .payment-box label input,
  .payment-box label select,
  .payment-box label textarea {
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  .account-area {
    gap: 8px;
  }

  .account-button {
    font-size: 13px;
    padding: 8px 12px;
  }

  .cart-button {
    width: 44px;
    height: 44px;
  }

  .cart-count {
    font-size: 12px;
    min-width: 18px;
    height: 18px;
  }
}

/* Small phones (320px - 375px) */
@media (max-width: 375px) {
  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  .product-body h3 {
    font-size: 15px;
  }

  .product-body p {
    font-size: 12px;
  }

  .section-heading h2 {
    font-size: 20px;
  }

  .chip {
    font-size: 12px;
    padding: 5px 10px;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  button,
  .chip,
  .link-button {
    min-height: 44px;
    min-width: 44px;
  }

  .add-button {
    min-height: 48px;
  }

  .checkout-button,
  .clear-cart-button {
    min-height: 48px;
  }

  .cart-line img {
    min-width: 60px;
    min-height: 60px;
  }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 400px;
  }

  .hero-content {
    padding-bottom: 100px;
  }

  .cart-drawer {
    max-height: 90vh;
  }

  .auth-panel {
    max-height: 90vh;
    overflow-y: auto;
  }
}
