/* MiniMart Zone — luxury dark + glass */

:root {
  /* Surfaces — cool near-black (reads “premium”, not flat gray) */
  --bg-0: #06070a;
  --bg-1: #0e1018;
  --glass: rgba(255, 255, 255, 0.055);
  --glass-hover: rgba(255, 255, 255, 0.09);
  --stroke: rgba(255, 255, 255, 0.1);
  --stroke-strong: rgba(255, 255, 255, 0.16);
  --text: #f3f4f8;
  --muted: rgba(243, 244, 248, 0.62);
  --muted-2: rgba(243, 244, 248, 0.42);
  /* Brand accent — warm gold (luxury retail; use for prices, hero, chips) */
  --champagne: #d4bc7a;
  --champagne-dim: #9a8352;
  /* Action — WhatsApp green: reserve for “order / confirm” paths only */
  --whatsapp: #25d366;
  --whatsapp-deep: #1ebe57;
  --danger: #ff6b6b;
  /* Ambient page glow (keep in same family as bg to avoid “random purple”) */
  --glow-hero: rgba(72, 88, 140, 0.14);
  --glow-corner: rgba(212, 188, 122, 0.07);
  --glow-wa-ambient: rgba(37, 211, 102, 0.045);
  --radius: 14px;
  --radius-lg: 20px;
  --font: "Poppins", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.45);
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#shop,
#how-ordering {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-0);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 100% 80% at 50% -30%, var(--glow-hero), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 20%, var(--glow-wa-ambient), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 100%, var(--glow-corner), transparent 45%),
    linear-gradient(165deg, var(--bg-0) 0%, var(--bg-1) 40%, var(--bg-0) 100%);
  pointer-events: none;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(1140px, 100% - 2rem);
  margin-inline: auto;
}

.glass-panel {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.25);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  height: auto;
  padding-block: 0.45rem;
  display: flex;
  align-items: center;
  background: rgba(6, 7, 10, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--stroke);
  transition: box-shadow 0.35s var(--ease-out), background 0.3s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 188, 122, 0.45) 25%,
    rgba(37, 211, 102, 0.35) 50%,
    rgba(212, 188, 122, 0.45) 75%,
    transparent 100%
  );
  pointer-events: none;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  background: rgba(6, 7, 10, 0.94);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 0.75rem;
  row-gap: 0.5rem;
  width: min(1140px, 100% - 2rem);
  margin-inline: auto;
}

.site-header__aside {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  min-width: 0;
}

.site-header__cod-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  grid-column: 2;
  padding: 0.26rem 0.65rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--bg-0);
  background: linear-gradient(135deg, #e8dcc4 0%, var(--champagne) 40%, var(--champagne-dim) 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: start;
  min-width: 0;
  transition: opacity 0.25s ease;
}

.logo:hover {
  opacity: 0.92;
}

.logo__mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--bg-0);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.logo__mark-img {
  width: 100%;
  height: 100%;
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
  display: block;
}

.logo__text {
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.header-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.42rem 0.75rem 0.42rem 0.55rem;
  max-width: min(100%, 22rem);
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.25;
}

.header-meta__icon {
  flex-shrink: 0;
  opacity: 0.55;
  color: var(--champagne);
}

.header-meta__text {
  text-align: left;
  min-width: 0;
  line-height: 1.25;
}

.header-meta__strong {
  color: var(--text);
  font-weight: 600;
}

.header-meta__suffix {
  font-weight: 500;
  color: var(--muted);
}

.header-meta__suffix::before {
  content: "\00A0·\00A0";
  color: var(--muted-2);
  font-weight: 400;
}

@media (max-width: 640px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .logo {
    grid-column: 1;
    grid-row: 1;
  }

  .site-header__aside {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-header__cod-pill {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .header-meta {
    max-width: none;
    flex: 1;
    min-width: 0;
    padding-inline: 0.5rem;
  }

  .header-meta__text {
    font-size: 0.72rem;
  }

  .logo__text {
    font-size: 0.95rem;
  }

  .site-header__cod-pill {
    font-size: 0.6rem;
    padding-inline: 0.55rem;
  }
}

/* Hero — compact vertical rhythm */
.hero {
  position: relative;
  padding: clamp(1.35rem, 4vw, 2.5rem) 0 clamp(1.15rem, 3vw, 1.85rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  max-width: min(720px, 100% - 2rem);
  margin-inline: auto;
}

.hero__line {
  position: absolute;
  width: min(22%, 160px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 188, 122, 0.3), transparent);
  opacity: 0.5;
}

.hero__line--tl {
  top: 12%;
  left: 0;
}

.hero__line--br {
  bottom: 14%;
  right: 0;
}

.hero__orb {
  position: absolute;
  inset: 4% 18% auto;
  height: min(38vw, 240px);
  background: radial-gradient(circle, rgba(212, 188, 122, 0.08) 0%, transparent 68%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
}

.hero__title {
  font-size: clamp(2.05rem, 5.2vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.72) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne-dim);
}

.hero__lede {
  font-size: clamp(0.88rem, 1.85vw, 1rem);
  color: var(--muted);
  font-weight: 400;
  line-height: 1.45;
  margin: 0 0 1rem;
  max-width: 32rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  margin-top: 0.15rem;
}

.btn--hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.55rem;
  padding: 0.55rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--hero__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.btn--hero:active {
  transform: scale(0.98);
}

.btn--hero-primary {
  color: var(--bg-0);
  background: linear-gradient(135deg, #f0e6d2 0%, var(--champagne) 45%, var(--champagne-dim) 100%);
  box-shadow: 0 6px 28px rgba(212, 188, 122, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn--hero-primary:hover {
  box-shadow: 0 10px 36px rgba(212, 188, 122, 0.28);
  filter: brightness(1.03);
}

.btn--hero-primary:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
}

.btn--hero-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke-strong);
}

.btn--hero-secondary:hover {
  border-color: rgba(212, 188, 122, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.btn--hero-secondary:focus-visible {
  outline: 2px solid rgba(212, 188, 122, 0.55);
  outline-offset: 3px;
}

/* Shop toolbar */
.shop-toolbar {
  margin-bottom: 1.75rem;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shop-toolbar__search-wrap {
  position: relative;
}

.shop-toolbar__search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;
  opacity: 0.45;
  pointer-events: none;
}

.shop-toolbar__search {
  width: 100%;
  padding: 0.95rem 1rem 0.95rem 2.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.shop-toolbar__search::placeholder {
  color: var(--muted-2);
}

.shop-toolbar__search:hover,
.shop-toolbar__search:focus {
  outline: none;
  border-color: rgba(212, 188, 122, 0.45);
  box-shadow: 0 0 0 3px rgba(212, 188, 122, 0.1);
}

.shop-toolbar__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.filter-chip {
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.filter-chip:hover {
  color: var(--text);
  border-color: var(--stroke-strong);
}

.filter-chip.is-active {
  color: var(--bg-0);
  background: linear-gradient(135deg, var(--champagne), var(--champagne-dim));
  border-color: transparent;
}

.filter-chip:active {
  transform: scale(0.98);
}

/* Section */
.section {
  padding-block: clamp(1.65rem, 3.5vw, 2.75rem);
}

.section-head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  padding-bottom: 0.25rem;
}

.section-head__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.section-head__title {
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
  color: var(--text);
}

.section-head__desc {
  margin: 0 auto;
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

.section-head__desc strong {
  color: rgba(243, 244, 248, 0.88);
  font-weight: 600;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 920px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.65rem;
  }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease;
}

.product-card.is-hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card);
  border-color: var(--stroke-strong);
  background: var(--glass-hover);
}

.product-card__badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.product-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

.product-badge--new {
  background: rgba(37, 211, 102, 0.85);
  color: #041208;
}

.product-badge--popular {
  background: rgba(212, 188, 122, 0.92);
  color: var(--bg-0);
}

.product-card__image-wrap {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

.product-card:hover .product-card__image-wrap img {
  transform: scale(1.07);
}

.product-card__body {
  padding: 1.2rem 1.3rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.25rem;
}

.product-card__name {
  font-size: 1.02rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.product-card__price {
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--champagne);
  margin: 0.2rem 0 0.9rem;
}

.product-card__price .currency {
  font-size: 0.85em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: transform 0.2s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.btn:active:not(:disabled) {
  transform: scale(0.98);
}

.btn--primary {
  margin-top: auto;
  width: 100%;
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.btn--primary:hover:not(:disabled) {
  filter: brightness(1.06);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.4);
}

.btn--primary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.btn--primary:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.btn--ghost {
  color: var(--muted);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
}

.btn--ghost:hover {
  color: var(--text);
  border-color: var(--stroke-strong);
}

.btn.is-loading {
  position: relative;
  color: transparent;
}

.btn.is-loading::after {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Empty state */
.shop-empty {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.shop-empty.is-visible {
  display: block;
}

.shop-loading,
.shop-load-error {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.shop-load-error {
  color: var(--danger);
  max-width: 28rem;
  margin-inline: auto;
}

.shop-loading.is-hidden,
.shop-load-error.is-hidden {
  display: none;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(4, 5, 8, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__dialog {
  width: min(440px, 100%);
  max-height: min(92vh, 720px);
  overflow-y: auto;
  padding: 1.5rem 1.5rem 1.35rem;
  transform: scale(0.92) translateY(12px);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.35s var(--ease-out);
}

.modal.is-open .modal__dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.modal__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.modal__close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.25);
  transition: color 0.2s ease, background 0.2s ease;
}

.modal__close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.modal__close svg {
  width: 18px;
  height: 18px;
}

.modal__hint {
  margin: 0 0 1rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--stroke);
  border-radius: 10px;
}

.order-summary {
  margin: 0 0 1rem;
  padding: 0.75rem 0.85rem;
  font-size: 0.8125rem;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.22);
  color: var(--muted);
}

.order-summary[hidden] {
  display: none !important;
}

.order-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.25rem 0;
}

.order-summary__row--strong {
  color: var(--text);
  font-weight: 600;
  margin-top: 0.25rem;
  padding-top: 0.45rem;
  border-top: 1px solid var(--stroke);
}

.order-summary__row--total {
  color: var(--champagne);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

.order-summary__foot {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: var(--muted-2);
  line-height: 1.4;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input[readonly] {
  color: var(--muted);
  cursor: default;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(212, 188, 122, 0.5);
  box-shadow: 0 0 0 3px rgba(212, 188, 122, 0.12);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: rgba(255, 107, 107, 0.65);
}

.form-field__error {
  display: none;
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--danger);
}

.form-field.has-error .form-field__error {
  display: block;
}

.modal__actions {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.modal__actions .btn {
  flex: 1;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--stroke);
  padding: 2rem 0 2.5rem;
  margin-top: 0.5rem;
}

.site-footer__inner {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.site-footer__lead {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.site-footer__steps {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  text-align: left;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer__steps li {
  margin-bottom: 0.35rem;
}

.site-footer__note {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: var(--muted-2);
  line-height: 1.55;
}

.site-footer__areas {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.logo:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 4px;
  border-radius: 10px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .product-card,
  .product-card__image-wrap img,
  .modal,
  .modal__dialog {
    transition: none;
  }

  .product-card:hover {
    transform: none;
  }

  .product-card:hover .product-card__image-wrap img {
    transform: none;
  }

  .btn.is-loading::after {
    animation: none;
    border-top-color: transparent;
  }
}
