:root {
  --ink: #20262d;
  --muted: #65717d;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #dce6e1;
  --teal: #064f56;
  --teal-2: #0f766e;
  --sage: #dcece4;
  --coral: #df6b55;
  --gold: #f0bd54;
  --lilac: #d8d6f1;
  --shadow: 0 24px 60px rgba(32, 38, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 16%, rgba(240, 189, 84, 0.18), transparent 30%),
    linear-gradient(180deg, #f7fbf8 0%, var(--paper) 42%, #fffdf9 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body.cart-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 42px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(220, 230, 225, 0.84);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(6, 79, 86, 0.16);
}

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

.brand strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.site-nav a,
.sections-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 12px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.sections-toggle:hover,
.sections-toggle:focus-visible,
.sections-menu.open .sections-toggle {
  color: var(--teal);
  background: var(--sage);
  outline: 0;
}

.sections-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.sections-toggle::after {
  display: inline-block;
  margin-left: 7px;
  border-top: 5px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
  transform: translateY(-1px);
}

.sections-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 80;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(560px, calc(100vw - 32px));
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.sections-panel[hidden] {
  display: none;
}

.sections-panel button {
  display: grid;
  gap: 4px;
  min-height: 74px;
  padding: 12px;
  color: var(--ink);
  background: #f8fbf9;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.sections-panel button:hover,
.sections-panel button:focus-visible {
  background: #edf7f3;
  border-color: #b8d7ce;
  outline: 0;
  transform: translateY(-1px);
}

.sections-panel strong {
  color: var(--teal);
  font-size: 0.98rem;
}

.sections-panel span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.header-actions {
  justify-self: end;
  display: grid;
  grid-template-columns: minmax(160px, 260px) auto auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  min-height: 44px;
  padding: 0 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.header-search:focus-within {
  border-color: var(--teal-2);
  box-shadow: 0 12px 24px rgba(6, 79, 86, 0.1);
}

.search-combo {
  position: relative;
}

.header-search input {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.header-search input[type="search"]::-webkit-search-cancel-button,
.search-box input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.cart-trigger {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.cart-trigger.text-link {
  width: fit-content;
  padding: 10px 14px;
}

.cart-trigger:hover,
.cart-trigger:focus-visible {
  border-color: var(--teal-2);
  box-shadow: 0 16px 34px rgba(6, 79, 86, 0.12);
  outline: 0;
  transform: translateY(-1px);
}

.cart-trigger strong {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  color: #ffffff;
  background: var(--coral);
  border-radius: 999px;
  font-size: 0.78rem;
}

.account-trigger {
  position: relative;
  width: 44px;
  min-width: 44px;
  padding: 0;
  color: var(--teal);
}

.account-trigger::before,
.account-trigger::after {
  position: absolute;
  left: 50%;
  content: "";
  transform: translateX(-50%);
}

.account-trigger::before {
  top: 10px;
  width: 11px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.account-trigger::after {
  bottom: 9px;
  width: 21px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 999px 999px 6px 6px;
  border-bottom-width: 2px;
}

.cart-glyph,
.search-glyph {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.cart-glyph::before {
  position: absolute;
  inset: 4px 2px 4px;
  border: 2px solid currentColor;
  border-radius: 4px;
  content: "";
}

.cart-glyph::after {
  position: absolute;
  top: 1px;
  left: 5px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  content: "";
}

main {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 34px 0 30px;
}

.hero-copy {
  padding: 18px 0;
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--teal-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 0.98;
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

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

.primary-link,
.secondary-link,
.checkout-button,
.add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 900;
}

.primary-link,
.checkout-button,
.add-button {
  color: #ffffff;
  background: var(--teal);
  border: 0;
  box-shadow: 0 16px 32px rgba(6, 79, 86, 0.16);
}

.primary-link {
  padding: 12px 18px;
}

.primary-link.light {
  color: var(--teal);
  background: #ffffff;
}

.secondary-link {
  padding: 11px 17px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.hero-showcase {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
}

.hero-showcase::before {
  position: absolute;
  width: min(94%, 430px);
  aspect-ratio: 1;
  background:
    linear-gradient(145deg, rgba(216, 236, 228, 0.9), rgba(255, 255, 255, 0.64)),
    #f6faf7;
  border: 1px solid rgba(220, 230, 225, 0.9);
  border-radius: 34px;
  box-shadow: var(--shadow);
  content: "";
  transform: rotate(-2deg);
}

.hero-logo {
  position: relative;
  width: min(82%, 374px);
  height: auto;
  border-radius: 26px;
  box-shadow: 0 28px 58px rgba(32, 38, 45, 0.14);
}

.bundle-panel {
  position: absolute;
  right: 0;
  bottom: 34px;
  display: grid;
  gap: 5px;
  width: min(300px, 80%);
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(32, 38, 45, 0.12);
}

.bundle-panel span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bundle-panel strong {
  line-height: 1.24;
}

.bundle-panel small {
  color: var(--muted);
  font-size: 0.86rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 48px;
}

.trust-row div {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 249, 0.92));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(32, 38, 45, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.trust-row div:hover {
  border-color: #b8d7ce;
  box-shadow: 0 20px 42px rgba(6, 79, 86, 0.11);
  transform: translateY(-2px);
}

.trust-seal-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 2px;
  background: var(--sage);
  border-radius: 8px;
}

.trust-seal-icon svg {
  width: 42px;
  height: 42px;
  overflow: visible;
}

.trust-row strong {
  color: var(--teal);
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust-row span {
  color: var(--muted);
  line-height: 1.45;
}

.catalog-section,
.apartment-fit {
  padding: 28px 0 54px;
}

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

.section-heading.compact {
  display: block;
  max-width: 680px;
}

.section-heading h2,
.service-band h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.04;
}

.store-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.filter-title {
  display: block;
  margin-bottom: 12px;
  font-size: 0.92rem;
  font-weight: 900;
}

.category-list {
  display: grid;
  gap: 8px;
}

.category-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 9px 10px;
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.category-button:hover,
.category-button:focus-visible,
.category-button.active {
  color: var(--teal);
  background: #edf7f3;
  border-color: #c9e2d9;
  outline: 0;
}

.category-button span:last-child {
  color: var(--muted);
  font-size: 0.82rem;
}

.check-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.4;
}

.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.catalog-area {
  min-width: 0;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
  margin-bottom: 12px;
}

.search-box,
.sort-box {
  display: flex;
  align-items: center;
  min-height: 48px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.search-box {
  gap: 10px;
  padding: 0 14px;
}

.search-glyph::before {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.search-glyph::after {
  position: absolute;
  right: 1px;
  bottom: 2px;
  width: 8px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
  transform: rotate(45deg);
}

.search-box input {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.search-clear {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  color: #315a61;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.search-clear::before,
.search-clear::after {
  position: absolute;
  width: 16px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.search-clear::before {
  transform: rotate(45deg);
}

.search-clear::after {
  transform: rotate(-45deg);
}

.search-clear:hover,
.search-clear:focus-visible {
  color: var(--teal);
  background: var(--sage);
  outline: 0;
  transform: scale(1.04);
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 120;
  display: grid;
  gap: 6px;
  max-height: min(320px, calc(100vh - 150px));
  overflow: auto;
  padding: 8px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #b9d8cf;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(32, 38, 45, 0.16);
}

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

.suggestion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  padding: 10px 11px;
  color: var(--ink);
  background: #f8fbf9;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.suggestion-item:hover,
.suggestion-item:focus-visible {
  background: #edf7f3;
  border-color: #b8d7ce;
  outline: 0;
  transform: translateY(-1px);
}

.suggestion-item span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.suggestion-item strong {
  overflow: hidden;
  font-size: 0.94rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggestion-item small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggestion-item em {
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 950;
}

.suggestion-empty {
  padding: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.sort-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px 0 14px;
}

.sort-box span,
.catalog-status,
.product-note {
  color: var(--muted);
}

.native-sort-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.custom-select {
  position: relative;
  min-width: 172px;
}

.custom-select-button {
  position: relative;
  width: 100%;
  min-height: 40px;
  padding: 9px 38px 9px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #b8d7ce;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  text-align: left;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.custom-select-button::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform 180ms ease;
}

.custom-select.open .custom-select-button {
  border-color: var(--teal-2);
  box-shadow: 0 14px 28px rgba(6, 79, 86, 0.12);
}

.custom-select.open .custom-select-button::after {
  transform: translateY(-30%) rotate(225deg);
}

.custom-select-button:hover,
.custom-select-button:focus-visible {
  border-color: var(--teal-2);
  box-shadow: 0 14px 28px rgba(6, 79, 86, 0.1);
  outline: 0;
  transform: translateY(-1px);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 130;
  display: grid;
  gap: 6px;
  width: min(220px, calc(100vw - 32px));
  padding: 8px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #b8d7ce;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(32, 38, 45, 0.16);
}

.custom-select-options[hidden] {
  display: none;
}

.custom-select-options button {
  min-height: 40px;
  padding: 9px 11px;
  color: var(--ink);
  background: #f8fbf9;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.custom-select-options button[aria-selected="true"] {
  color: #ffffff;
  background: var(--teal);
}

.custom-select-options button:hover,
.custom-select-options button:focus-visible {
  color: var(--teal);
  background: var(--sage);
  border-color: #b8d7ce;
  outline: 0;
  transform: translateY(-1px);
}

.catalog-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.94rem;
}

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

.product-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-width: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.wishlist-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(184, 215, 206, 0.92);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(32, 38, 45, 0.12);
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.wishlist-button span {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
}

.wishlist-button span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1em;
  content: "\2661";
  font-family: Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  transform: translate(-50%, -52%);
}

.wishlist-button.is-saved span::before {
  content: "\2665";
}

.wishlist-button:hover,
.wishlist-button:focus-visible,
.wishlist-button.is-saved {
  color: #ffffff;
  background: var(--teal);
  border-color: var(--teal);
  outline: 0;
  transform: translateY(-1px) scale(1.03);
}

.product-card:hover {
  border-color: #b9d8cf;
  box-shadow: 0 20px 48px rgba(32, 38, 45, 0.1);
  transform: translateY(-2px);
}

.product-media {
  display: grid;
  overflow: hidden;
  aspect-ratio: 1.05;
  place-items: center;
  background: var(--media-bg);
  border-bottom: 1px solid var(--line);
}

.product-media svg {
  width: 82%;
  height: auto;
}

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

.product-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.product-top h3 {
  margin: 0 0 5px;
  font-size: 1.02rem;
  line-height: 1.25;
}

.product-top p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.product-detail-link {
  color: inherit;
}

.product-title-link {
  color: inherit;
  transition: color 180ms ease;
}

.product-title-link:hover,
.product-title-link:focus-visible {
  color: var(--teal);
  outline: 0;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  color: #6a500c;
  font-size: 0.84rem;
  font-weight: 900;
}

.rating::before {
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

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

.price {
  font-size: 1.16rem;
  font-weight: 950;
}

.product-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

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

.details-link {
  width: fit-content;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 900;
}

.details-link:hover,
.details-link:focus-visible {
  color: var(--teal-2);
  outline: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.add-button {
  padding: 9px 12px;
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 9px 12px;
  color: #25d366;
  background: #ffffff;
  border: 2px solid #25d366;
  border-radius: 8px;
  font-weight: 950;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.wishlist-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: min(180px, 100%);
  padding: 9px 14px;
  color: var(--teal);
  background: #ffffff;
  border: 2px solid #b8d7ce;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 950;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.wishlist-action:hover,
.wishlist-action:focus-visible,
.wishlist-action.is-saved {
  color: #ffffff;
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 14px 26px rgba(6, 79, 86, 0.16);
  outline: 0;
  transform: translateY(-1px);
}

.whatsapp-buy-button:hover,
.whatsapp-buy-button:focus-visible {
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 14px 26px rgba(37, 211, 102, 0.22);
  outline: 0;
  transform: translateY(-1px);
}

.add-button:hover,
.add-button:focus-visible,
.checkout-button:hover,
.checkout-button:focus-visible {
  background: var(--teal-2);
  outline: 0;
  transform: translateY(-1px);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 44px 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.8);
  border: 1px dashed #b7c9c2;
  border-radius: 8px;
  text-align: center;
}

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

.fit-grid article {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 11px;
  min-height: 226px;
  padding: 20px;
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
}

.fit-grid article > * {
  position: relative;
  z-index: 1;
}

.animated-card::before,
.animated-card::after {
  position: absolute;
  border-radius: inherit;
  content: "";
}

.animated-card::before {
  inset: -46px;
  z-index: -2;
  background: conic-gradient(
    from 0deg,
    rgba(6, 79, 86, 0),
    rgba(6, 79, 86, 0),
    var(--teal),
    var(--teal-2),
    var(--teal)
  );
  opacity: 0;
  transform: rotate(0deg) scale(1);
  transition:
    opacity 420ms ease,
    transform 520ms ease;
  will-change: opacity, transform;
}

.animated-card::after {
  inset: 2px;
  z-index: -1;
  background: #ffffff;
}

.animated-card:hover,
.animated-card:focus-visible,
.animated-card.is-active {
  border-color: transparent;
}

.animated-card:hover::before,
.animated-card:focus-visible::before,
.animated-card.is-active::before {
  opacity: 1;
  transform: rotate(0deg) scale(1.04);
  animation: card-border-spin 1.8s linear infinite;
}

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

.fit-grid h3 {
  margin: 0;
  font-size: 1.18rem;
}

.fit-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.fit-icon {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
}

.fit-icon svg {
  width: 48px;
  height: 48px;
  overflow: visible;
}

.service-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 10px 0 54px;
  padding: clamp(24px, 4vw, 38px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(223, 107, 85, 0.2), transparent 42%),
    var(--teal);
  border-radius: 8px;
}

.service-band .eyebrow {
  color: var(--gold);
}

.service-band p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.site-footer {
  display: grid;
  gap: 18px;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 36px;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(150px, 0.55fr));
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
}

.footer-about {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(6, 79, 86, 0.14);
}

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

.footer-brand small,
.site-footer p,
.policy-note {
  color: var(--muted);
}

.site-footer p {
  max-width: 580px;
  margin: 0;
  line-height: 1.55;
}

.footer-links {
  display: grid;
  gap: 9px;
  align-content: start;
  min-width: 0;
}

.footer-links strong {
  color: var(--ink);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social a,
.footer-links a,
.policy-note a {
  color: var(--teal);
  font-weight: 850;
}

.footer-social a,
.footer-links a {
  width: fit-content;
  line-height: 1.35;
}

.footer-social a {
  min-height: 36px;
  padding: 8px 11px;
  background: var(--sage);
  border-radius: 8px;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-social a:hover,
.footer-social a:focus-visible {
  color: #ffffff;
  background: var(--teal);
  outline: 0;
}

.footer-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  background: rgba(220, 236, 228, 0.58);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.footer-trust span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.35;
}

.footer-trust span::before {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  background: var(--teal-2);
  border: 3px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 0 0 1px #b8d7ce;
  content: "";
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 2px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.policy-note {
  margin: -2px 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
}

.floating-social {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 95;
  display: grid;
  gap: 10px;
}

.float-button {
  display: grid;
  overflow: hidden;
  width: 52px;
  height: 52px;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(32, 38, 45, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.float-button:hover,
.float-button:focus-visible {
  outline: 0;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(6, 79, 86, 0.24);
}

.float-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-button.whatsapp img {
  transform: scale(1.2);
}

.float-button.instagram {
  overflow: hidden;
  border-radius: 16px;
}

.float-button.instagram img {
  object-fit: cover;
  border-radius: 16px;
  transform: scale(1.16);
}

.product-header-actions {
  grid-template-columns: auto auto auto;
  justify-content: end;
}

.product-page {
  padding: 24px 0 54px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 6px 0 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--teal);
}

.breadcrumb span::before {
  margin-right: 8px;
  color: #9aa8a1;
  content: "/";
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
  margin-bottom: 24px;
}

.product-detail-media {
  display: grid;
  overflow: hidden;
  min-height: 430px;
  aspect-ratio: 1;
  place-items: center;
  background: var(--media-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(32, 38, 45, 0.1);
}

.product-detail-media svg {
  width: min(78%, 390px);
  height: auto;
}

.product-detail-copy {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.product-chip {
  width: fit-content;
  padding: 8px 10px;
  color: var(--teal);
  background: var(--sage);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 950;
}

.product-title-row {
  display: flex;
  gap: 14px;
  align-items: start;
  justify-content: space-between;
}

.product-title-row h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 0.98;
}

.product-detail-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

.product-purchase-panel {
  display: grid;
  gap: 7px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-price {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 1;
}

.product-purchase-panel strong {
  color: var(--teal);
  font-size: 1.04rem;
}

.product-purchase-panel span,
.product-purchase-panel small {
  color: var(--muted);
  line-height: 1.45;
}

.product-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-add-button,
.detail-whatsapp {
  min-width: min(220px, 100%);
}

.detail-wishlist-button {
  position: static;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  min-width: 46px;
  box-shadow: 0 14px 30px rgba(32, 38, 45, 0.1);
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  color: var(--teal);
  background: #ffffff;
  border: 1px solid #b9d8cf;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 950;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.secondary-action:hover,
.secondary-action:focus-visible {
  background: #edf7f3;
  border-color: var(--teal-2);
  outline: 0;
  transform: translateY(-1px);
}

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

.product-trust-strip span {
  min-height: 58px;
  padding: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.product-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.product-info-panel {
  padding: clamp(18px, 3vw, 26px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-reviews-panel {
  grid-column: 1 / -1;
}

.product-info-panel h2 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.15;
}

.product-info-panel p,
.product-info-panel li,
.product-info-panel dd {
  color: var(--muted);
  line-height: 1.62;
}

.product-info-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.spec-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: minmax(110px, 0.44fr) 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf3f0;
}

.spec-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.spec-list dt {
  color: var(--ink);
  font-weight: 900;
}

.spec-list dd {
  margin: 0;
}

.review-summary {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.review-summary strong {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #6a500c;
  background: #fff6df;
  border: 1px solid #efd79b;
  border-radius: 8px;
  font-size: 1.35rem;
  font-weight: 950;
}

.review-summary span {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.35;
}

.review-panel-head {
  display: flex;
  gap: 18px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-panel-head h2 {
  margin-bottom: 8px;
}

.review-panel-head p {
  max-width: 680px;
  margin: 0;
}

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

.review-item {
  display: grid;
  gap: 7px;
  padding: 0 0 13px;
  border-bottom: 1px solid var(--line);
}

.review-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.review-item-head {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.review-item-head strong {
  color: var(--teal);
}

.review-item-head span {
  color: #c89418;
  font-size: 0.94rem;
  letter-spacing: 0.04em;
}

.review-item h3 {
  margin: 0;
  font-size: 1rem;
}

.review-item p {
  margin: 0;
}

.review-item small {
  color: var(--muted);
}

.review-empty,
.review-gate,
.review-pending {
  padding: 13px;
  color: var(--muted);
  background: #f8fbf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  line-height: 1.5;
}

.review-pending {
  margin-top: 12px;
  color: #6b4e08;
  background: #fff7e6;
  border-color: #edd59d;
}

.review-gate {
  margin-top: 14px;
}

.review-gate.split {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.review-form {
  display: grid;
  gap: 13px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-submit {
  width: fit-content;
  min-width: 190px;
}

.related-section {
  padding-bottom: 6px;
}

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

.related-card {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.related-card:hover,
.related-card:focus-visible {
  border-color: #b9d8cf;
  box-shadow: 0 16px 34px rgba(32, 38, 45, 0.1);
  outline: 0;
  transform: translateY(-1px);
}

.related-thumb {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  background: var(--media-bg);
  border-radius: 8px;
}

.related-thumb svg {
  width: 76px;
}

.related-card span:not(.related-thumb) {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.related-card strong,
.related-card small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-card small {
  color: var(--muted);
}

.related-card em {
  color: var(--teal);
  font-style: normal;
  font-weight: 950;
}

.product-not-found {
  grid-column: 1 / -1;
  padding: clamp(26px, 5vw, 48px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-not-found h1 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.product-not-found p {
  color: var(--muted);
  line-height: 1.6;
}

.checkout-header {
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
}

.wishlist-page {
  padding: 26px 0 58px;
}

.wishlist-hero {
  max-width: 820px;
  padding: 16px 0 28px;
}

.wishlist-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.wishlist-hero p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

.wishlist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

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

.wishlist-empty {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.wishlist-empty strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.checkout-page {
  padding: 26px 0 58px;
}

.checkout-hero {
  max-width: 820px;
  padding: 16px 0 24px;
}

.checkout-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.checkout-hero p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.68;
}

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

.checkout-form {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.checkout-panel,
.order-summary,
.checkout-empty {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkout-panel {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 26px);
}

.checkout-panel-head {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
}

.checkout-panel-head > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #ffffff;
  background: var(--teal);
  border-radius: 8px;
  font-weight: 950;
}

.checkout-panel-head h2 {
  margin-bottom: 4px;
  font-size: 1.35rem;
}

.checkout-panel-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.field-grid {
  display: grid;
  gap: 12px;
}

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

.field-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field-control {
  display: grid;
  gap: 7px;
  min-width: 0;
}

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

.field-control.wide-2 {
  grid-column: span 2;
}

.field-control span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.field-control input,
.field-control select,
.field-control textarea {
  min-width: 0;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.field-control textarea {
  resize: vertical;
}

.field-control input:focus,
.field-control select:focus,
.field-control textarea:focus {
  border-color: var(--teal-2);
  box-shadow: 0 10px 22px rgba(6, 79, 86, 0.1);
}

.field-control .date-input-shell {
  position: relative;
  display: grid;
  min-width: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 400;
}

.field-control .date-input-shell input {
  width: 100%;
  padding-right: 50px;
  background:
    linear-gradient(90deg, transparent calc(100% - 46px), var(--sage) calc(100% - 46px)),
    #fbfdfb;
}

.coupon-date-button {
  position: absolute;
  top: 50%;
  right: 9px;
  display: block;
  width: 28px;
  height: 28px;
  background: #ffffff;
  border: 1px solid #b8d7ce;
  border-radius: 8px;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.coupon-date-button:hover,
.coupon-date-button:focus-visible {
  background: var(--sage);
  border-color: var(--teal);
  outline: 0;
  transform: translateY(-50%) scale(1.04);
}

.coupon-date-button::before,
.coupon-date-button::after {
  position: absolute;
  content: "";
}

.coupon-date-button::before {
  inset: 7px 5px 5px;
  border: 2px solid var(--teal);
  border-top-width: 5px;
  border-radius: 4px;
}

.coupon-date-button::after {
  top: 12px;
  left: 8px;
  width: 12px;
  height: 2px;
  background: #ffffff;
  box-shadow: 0 5px 0 #ffffff;
}

.coupon-calendar-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 80;
  width: min(300px, calc(100vw - 32px));
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #b8d7ce;
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(32, 38, 45, 0.16);
}

.coupon-calendar-head {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.coupon-calendar-head strong {
  color: var(--ink);
  font-size: 0.98rem;
  text-align: center;
}

.coupon-calendar-head button {
  position: relative;
  width: 34px;
  height: 34px;
  background: var(--sage);
  border: 1px solid #cde2db;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.coupon-calendar-head button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
  content: "";
}

.coupon-calendar-head button[data-calendar-prev]::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.coupon-calendar-head button[data-calendar-next]::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.coupon-calendar-head button:hover,
.coupon-calendar-head button:focus-visible {
  background: #ffffff;
  border-color: var(--teal);
  outline: 0;
  transform: translateY(-1px);
}

.coupon-calendar-weekdays,
.coupon-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.coupon-calendar-weekdays {
  margin-bottom: 6px;
}

.coupon-calendar-weekdays span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  text-align: center;
}

.coupon-calendar-grid button,
.coupon-calendar-empty {
  display: grid;
  min-height: 34px;
  place-items: center;
  border-radius: 8px;
}

.coupon-calendar-grid button {
  color: var(--ink);
  background: #f8fbf9;
  border: 1px solid var(--line);
  cursor: pointer;
  font-weight: 900;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.coupon-calendar-grid button:hover,
.coupon-calendar-grid button:focus-visible,
.coupon-calendar-grid button.today {
  color: var(--teal);
  background: #edf7f3;
  border-color: #b8d7ce;
  outline: 0;
}

.coupon-calendar-grid button.selected {
  color: #ffffff;
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 10px 20px rgba(6, 79, 86, 0.16);
}

.password-control {
  position: relative;
  display: grid;
  min-width: 0;
}

.field-control .password-control input {
  width: 100%;
  padding-right: 54px;
}

.field-control .password-control input::-ms-reveal,
.field-control .password-control input::-ms-clear {
  display: none;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 7px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--teal);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.password-toggle:hover,
.password-toggle:focus-visible {
  color: var(--teal-2);
  background: var(--sage);
  outline: 0;
  transform: translateY(-50%) scale(1.04);
}

.eye-icon {
  width: 24px;
  height: 24px;
}

.eye-icon svg {
  width: 24px;
  height: 24px;
  overflow: visible;
}

.eye-shape,
.eye-slash {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.eye-pupil {
  fill: currentColor;
}

.eye-slash {
  transition: opacity 160ms ease;
}

.password-toggle[aria-pressed="true"] .eye-slash {
  opacity: 0;
}

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

.payment-option {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  min-height: 96px;
  padding: 13px;
  background: #f8fbf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.payment-option:has(input:checked),
.payment-option:hover,
.payment-option:focus-within {
  background: #edf7f3;
  border-color: #b8d7ce;
}

.payment-option:hover {
  transform: translateY(-1px);
}

.payment-option input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.payment-option span {
  display: grid;
  gap: 5px;
}

.payment-option strong {
  line-height: 1.25;
}

.payment-option small {
  color: var(--muted);
  line-height: 1.35;
}

.payment-detail {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: #fbfdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.payment-detail > strong {
  color: var(--teal);
}

.payment-detail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.summary-coupon-box {
  display: grid;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.coupon-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: end;
}

.coupon-field input {
  text-transform: uppercase;
}

.coupon-message {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.coupon-message[data-state="success"] {
  color: #1f6b3b;
}

.coupon-message[data-state="error"] {
  color: #9c3d2a;
}

.coupon-clear {
  width: fit-content;
}

.installment-list {
  display: grid;
  gap: 7px;
}

.installment-list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.installment-list strong {
  color: var(--ink);
  text-align: right;
}

.terms-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  line-height: 1.5;
}

.terms-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--teal);
}

.terms-check a {
  color: var(--teal);
  font-weight: 900;
}

.turnstile-box {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.turnstile-box[hidden] {
  display: none;
}

.turnstile-slot {
  min-height: 65px;
}

.turnstile-message {
  color: #6b4e08;
  line-height: 1.4;
}

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

.checkout-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 14px;
  color: #1fa855;
  background: #ffffff;
  border: 2px solid #25d366;
  border-radius: 8px;
  font-weight: 950;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.checkout-whatsapp-button:hover,
.checkout-whatsapp-button:focus-visible {
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 14px 26px rgba(37, 211, 102, 0.22);
  outline: 0;
  transform: translateY(-1px);
}

.order-summary {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
  padding: 18px;
}

.order-summary-head h2 {
  margin: 0;
  font-size: 1.48rem;
}

.summary-items {
  display: grid;
  gap: 10px;
}

.summary-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 9px;
  background: #f8faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.summary-thumb {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--teal);
  background: var(--media-bg);
  border-radius: 8px;
  font-size: 1.08rem;
  font-weight: 950;
}

.summary-item span:not(.summary-thumb) {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.summary-item strong,
.summary-item small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.summary-item small {
  color: var(--muted);
}

.summary-item em {
  color: var(--teal);
  font-style: normal;
  font-weight: 950;
}

.summary-totals {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.summary-totals div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
}

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

.summary-totals .summary-total {
  align-items: baseline;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 950;
}

.summary-total strong {
  color: var(--teal);
  font-size: 1.34rem;
}

.checkout-empty {
  grid-column: 1 / -1;
  padding: clamp(26px, 5vw, 48px);
}

.checkout-empty h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.checkout-empty p {
  color: var(--muted);
  line-height: 1.6;
}

.account-header {
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
}

.account-page {
  padding: 28px 0 58px;
}

.account-hero {
  max-width: 860px;
  padding: 16px 0 24px;
}

.account-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 5vw, 4.45rem);
}

.account-hero p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.68;
}

.auth-shell,
.account-gate {
  width: min(720px, 100%);
  padding: clamp(18px, 3vw, 28px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.config-alert {
  margin-bottom: 14px;
  padding: 12px 14px;
  color: #6b4e08;
  background: #fff7e6;
  border: 1px solid #edd59d;
  border-radius: 8px;
  line-height: 1.5;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.auth-tab {
  min-height: 42px;
  padding: 9px 10px;
  color: var(--muted);
  background: #f8fbf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.auth-tab.active,
.auth-tab:hover,
.auth-tab:focus-visible {
  color: var(--teal);
  background: #edf7f3;
  border-color: #b8d7ce;
  outline: 0;
}

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

.auth-form.active {
  display: grid;
}

.terms-check.compact {
  font-size: 0.92rem;
}

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

.account-gate[hidden],
.account-dashboard[hidden],
.admin-dashboard[hidden] {
  display: none;
}

.account-gate h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}

.account-gate p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

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

.overview-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.overview-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.overview-card strong {
  color: var(--teal);
  font-size: 2rem;
  line-height: 1;
}

.overview-card small {
  color: var(--muted);
  line-height: 1.4;
}

.account-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.account-submit {
  width: fit-content;
  min-width: 170px;
}

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

.saved-item,
.saved-empty {
  padding: 13px;
  background: #f8fbf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.saved-item {
  display: grid;
  gap: 4px;
}

.saved-item strong {
  color: var(--teal);
}

.saved-item span,
.saved-item small,
.saved-empty {
  color: var(--muted);
  line-height: 1.45;
}

.terms-check.wide {
  grid-column: 1 / -1;
}

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

.saved-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.secondary-action.small,
.checkout-whatsapp-button.small {
  min-height: 38px;
  padding: 8px 11px;
  font-size: 0.86rem;
}

.order-card {
  display: grid;
  gap: 13px;
  padding: 15px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.order-card-head {
  display: flex;
  gap: 12px;
  align-items: start;
  justify-content: space-between;
}

.order-card-head div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.order-card-head strong {
  color: var(--ink);
}

.order-card-head span {
  color: var(--muted);
  line-height: 1.35;
}

.status-pill {
  width: fit-content;
  padding: 7px 9px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.status-aguardando_pagamento {
  color: #6b4e08;
  background: #fff7e6;
}

.status-pagamento_aprovado,
.status-em_separacao {
  color: var(--teal);
  background: #edf7f3;
}

.status-enviado {
  color: #34416c;
  background: #eef1ff;
}

.status-entregue {
  color: #1f6b3b;
  background: #e9f8ee;
}

.status-cancelado {
  color: #9c3d2a;
  background: #fff0eb;
}

.status-novo {
  color: var(--teal);
  background: #edf7f3;
}

.status-em_analise {
  color: #6b4e08;
  background: #fff7e6;
}

.status-respondido {
  color: #34416c;
  background: #eef1ff;
}

.status-implementado {
  color: #1f6b3b;
  background: #e9f8ee;
}

.status-arquivado {
  color: var(--muted);
  background: #f4f7f5;
}

.order-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.order-timeline span {
  min-height: 36px;
  padding: 8px 6px;
  color: var(--muted);
  background: #f4f7f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.order-timeline span.active {
  color: var(--teal);
  background: #edf7f3;
  border-color: #b8d7ce;
}

.order-items-list {
  display: grid;
  gap: 8px;
}

.order-item-line,
.order-items-empty,
.tracking-box {
  padding: 10px;
  background: #f8fbf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.order-item-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.order-item-line div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.order-items-list small,
.order-items-empty,
.tracking-box {
  color: var(--muted);
}

.tracking-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  line-height: 1.4;
}

.tracking-box a {
  color: var(--teal);
  font-weight: 950;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.order-total-row span {
  color: var(--muted);
}

.order-total-row strong {
  color: var(--teal);
  font-size: 1.12rem;
}

.admin-page {
  width: min(100% - 32px, 1280px);
  padding: 28px 0 64px;
}

.admin-page .account-hero {
  max-width: none;
  margin-bottom: 6px;
  padding: clamp(22px, 4vw, 34px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(32, 38, 45, 0.08);
}

.admin-page .account-hero h1 {
  max-width: 780px;
  font-size: clamp(2.15rem, 4.6vw, 4.1rem);
}

.admin-page .account-hero p:not(.eyebrow) {
  max-width: 780px;
}

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

.admin-dashboard .account-overview {
  grid-template-columns: repeat(5, minmax(160px, 1fr));
}

.admin-metric-card {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  padding: 18px 18px 16px;
  border-color: rgba(184, 215, 206, 0.78);
  box-shadow: 0 16px 34px rgba(32, 38, 45, 0.07);
}

.admin-metric-card::before {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 6px;
  background: var(--sage);
  border: 1px solid #cde2db;
  border-radius: 8px;
  content: "";
}

.admin-metric-card::after {
  position: absolute;
  top: 20px;
  left: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--teal);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
  content: "";
}

.metric-orders::after {
  content: "#";
}

.metric-reviews::after {
  color: #6b500b;
  content: "★";
}

.metric-feedback::after {
  content: "!";
}

.metric-coupons::after {
  content: "%";
}

.metric-revenue::after {
  content: "$";
}

.admin-metric-card span {
  color: #61706b;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.admin-metric-card strong {
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.admin-tabs {
  position: sticky;
  top: 86px;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(32, 38, 45, 0.08);
  backdrop-filter: blur(14px);
}

.admin-tabs .auth-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
}

.admin-tabs .auth-tab::before {
  width: 10px;
  height: 10px;
  background: #cde2db;
  border-radius: 999px;
  content: "";
}

.admin-tabs .auth-tab.active::before,
.admin-tabs .auth-tab:hover::before,
.admin-tabs .auth-tab:focus-visible::before {
  background: var(--teal);
}

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

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

.admin-panel-head {
  display: flex;
  gap: 14px;
  align-items: end;
  justify-content: space-between;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(184, 215, 206, 0.85);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(32, 38, 45, 0.06);
}

.admin-panel-head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
}

.admin-filter {
  min-width: min(260px, 100%);
}

.admin-status-select {
  min-width: min(250px, calc(100vw - 120px));
}

.admin-status-select .custom-select-options {
  width: min(310px, calc(100vw - 32px));
}

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

.admin-card {
  padding: 16px;
  background: #ffffff;
  border: 1px solid rgba(184, 215, 206, 0.82);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(32, 38, 45, 0.055);
}

.order-card,
.customer-card,
.feedback-admin-card,
.coupon-admin-card {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.order-card:hover,
.customer-card:hover,
.feedback-admin-card:hover,
.coupon-admin-card:hover {
  border-color: #b9d8cf;
  box-shadow: 0 18px 38px rgba(32, 38, 45, 0.08);
  transform: translateY(-1px);
}

.feedback-admin-card {
  display: grid;
  gap: 13px;
}

.admin-coupon-form,
.coupon-admin-card,
.admin-coupon-edit-form {
  display: grid;
  gap: 13px;
}

.admin-coupon-form h3 {
  margin: 3px 0 0;
  font-size: 1.25rem;
}

.feedback-admin-card p,
.feedback-history-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.admin-feedback-message,
.admin-feedback-response-preview,
.feedback-response-card {
  display: grid;
  gap: 7px;
  padding: 12px;
  background: #f8fbf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-feedback-message strong,
.admin-feedback-response-preview strong,
.feedback-response-card strong {
  color: var(--teal);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-feedback-response-preview,
.feedback-response-card {
  background: #fffdf7;
  border-color: #edd59d;
}

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

.admin-meta-grid span {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 11px;
  color: #53645f;
  background: #f7fbf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  line-height: 1.35;
}

.admin-meta-grid strong {
  overflow: hidden;
  color: var(--teal);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-order-form {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: #fbfdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.customer-card {
  display: grid;
  gap: 12px;
}

.customer-card > div:first-child {
  display: grid;
  gap: 4px;
}

.customer-card > div:first-child strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.customer-card > div:first-child span {
  color: var(--muted);
  line-height: 1.4;
}

.policy-page {
  padding-bottom: 52px;
}

.policy-hero {
  display: grid;
  align-content: end;
  min-height: 330px;
  padding: 42px 0 34px;
}

.policy-hero h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 6vw, 4.7rem);
  line-height: 0.98;
}

.policy-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.68;
}

.feedback-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 18px;
  align-items: start;
}

.feedback-panel,
.feedback-form {
  display: grid;
  gap: 16px;
}

.feedback-submit {
  width: fit-content;
  min-width: 190px;
}

.feedback-type-select {
  min-width: 100%;
}

.feedback-type-select .custom-select-options {
  right: auto;
  left: 0;
  width: min(260px, calc(100vw - 32px));
}

.feedback-note {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 12px;
  padding: clamp(20px, 3vw, 28px);
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal) 0%, #0b6b62 100%);
  border-radius: 8px;
}

.feedback-note .eyebrow {
  color: var(--gold);
}

.feedback-note h2,
.feedback-note p {
  margin: 0;
}

.feedback-note p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.62;
}

.feedback-steps {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.feedback-steps span {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 850;
}

.feedback-history-section {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feedback-history-list {
  display: grid;
  gap: 12px;
}

.feedback-history-card {
  display: grid;
  gap: 13px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feedback-response-card p {
  margin: 0;
}

.feedback-status-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.feedback-status-flow span {
  min-height: 36px;
  padding: 8px 6px;
  color: var(--muted);
  background: #f4f7f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.feedback-status-flow span.active {
  color: var(--teal);
  background: #edf7f3;
  border-color: #b8d7ce;
}

.policy-alert {
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
  padding: 18px;
  background: #fff7e6;
  border: 1px solid #edd59d;
  border-radius: 8px;
}

.policy-alert strong {
  color: #6b4e08;
}

.policy-alert p {
  margin: 0;
  color: #6b5a30;
  line-height: 1.55;
}

.policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.policy-summary {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-summary a {
  min-height: 38px;
  padding: 9px 10px;
  color: var(--muted);
  border-radius: 8px;
  font-weight: 800;
}

.policy-summary a:hover,
.policy-summary a:focus-visible {
  color: var(--teal);
  background: var(--sage);
  outline: 0;
}

.policy-content {
  display: grid;
  gap: 16px;
}

.policy-content section {
  padding: clamp(20px, 3vw, 30px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.1;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  line-height: 1.68;
}

.policy-content p {
  margin-bottom: 12px;
}

.policy-content p:last-child,
.policy-content ul {
  margin-bottom: 0;
}

.policy-content ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.about-page {
  padding-bottom: 58px;
}

.about-hero {
  min-height: 350px;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  margin-bottom: 28px;
  padding: clamp(22px, 4vw, 34px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-intro h2,
.about-band h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.about-intro p:not(.eyebrow),
.about-band p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.68;
}

.about-logo-card {
  display: grid;
  width: min(100%, 300px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  place-items: center;
  overflow: hidden;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 24px 54px rgba(6, 79, 86, 0.14);
}

.about-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.about-values,
.about-difference,
.about-proof {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

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

.about-card-grid article {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 3vw, 24px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-card-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--teal);
  background: var(--sage);
  border-radius: 8px;
  font-weight: 900;
}

.about-card-grid h3 {
  font-size: 1.2rem;
  line-height: 1.18;
}

.about-card-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.about-difference {
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(220, 236, 228, 0.72), rgba(255, 255, 255, 0.92)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-difference h2 {
  max-width: 930px;
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 4.4vw, 3.25rem);
  line-height: 1;
}

.about-difference p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

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

.difference-grid article {
  display: grid;
  gap: 7px;
  min-height: 120px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(184, 215, 206, 0.82);
  border-radius: 8px;
}

.difference-grid strong {
  color: var(--teal);
  line-height: 1.2;
}

.difference-grid span {
  color: var(--muted);
  line-height: 1.52;
}

.about-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding: clamp(22px, 4vw, 34px);
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal) 0%, #0b6b62 100%);
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(6, 79, 86, 0.18);
}

.about-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.about-band .eyebrow {
  color: #bfe8da;
}

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

.about-proof-list div {
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-proof-list strong {
  color: var(--teal);
  font-size: 1.02rem;
}

.about-proof-list span {
  color: var(--muted);
  line-height: 1.55;
}

.tips-page {
  padding-bottom: 58px;
}

.tips-hero {
  min-height: 330px;
}

.tips-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  gap: clamp(18px, 4vw, 36px);
  align-items: stretch;
  margin-bottom: 28px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(220, 236, 228, 0.72), rgba(255, 255, 255, 0.94)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tips-feature h2 {
  max-width: 850px;
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  line-height: 1;
}

.tips-feature p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.tips-checklist {
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(184, 215, 206, 0.82);
  border-radius: 8px;
}

.tips-checklist strong {
  color: var(--teal);
  font-size: 1.02rem;
}

.tips-checklist span {
  position: relative;
  min-height: 38px;
  padding: 9px 10px 9px 34px;
  color: var(--ink);
  background: #f8fbf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.35;
}

.tips-checklist span::before {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border: 2px solid var(--teal);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.tips-grid .section-heading {
  grid-column: 1 / -1;
}

.tip-card {
  display: grid;
  gap: 11px;
  align-content: start;
  min-height: 270px;
  padding: clamp(18px, 3vw, 24px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.tip-card:hover {
  border-color: #b8d7ce;
  box-shadow: 0 18px 40px rgba(6, 79, 86, 0.09);
  transform: translateY(-2px);
}

.tip-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--teal);
  background: var(--sage);
  border-radius: 8px;
  font-weight: 950;
}

.tip-card h3 {
  font-size: 1.22rem;
  line-height: 1.16;
}

.tip-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.tip-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--teal);
  font-weight: 950;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.tip-card a:hover,
.tip-card a:focus-visible {
  color: var(--teal-2);
  outline: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transform: translateX(2px);
}

.tips-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal) 0%, #0b6b62 100%);
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(6, 79, 86, 0.18);
}

.tips-band h2 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 3.6vw, 2.8rem);
  line-height: 1;
}

.tips-band p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.62;
}

.tips-band .eyebrow {
  color: #bfe8da;
}

.faq-page {
  padding-bottom: 58px;
}

.faq-hero {
  min-height: 300px;
}

.faq-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding: clamp(20px, 3vw, 28px);
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal) 0%, #0b6b62 100%);
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(6, 79, 86, 0.18);
}

.faq-help h2 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.12;
}

.faq-help p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

.faq-help .eyebrow {
  color: #bfe8da;
}

.faq-help .primary-link {
  flex: 0 0 auto;
  color: var(--teal);
  background: #ffffff;
}

.faq-content {
  display: grid;
  gap: 16px;
}

.faq-content section {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-content h2 {
  margin-bottom: 2px;
  font-size: clamp(1.42rem, 2.3vw, 2rem);
  line-height: 1.1;
}

.faq-content details {
  background: #f8fbf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.faq-content details[open] {
  background: #ffffff;
  border-color: #b8d7ce;
  box-shadow: 0 14px 32px rgba(6, 79, 86, 0.08);
}

.faq-content summary {
  position: relative;
  min-height: 52px;
  padding: 15px 48px 15px 16px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  line-height: 1.35;
  list-style: none;
}

.faq-content summary::-webkit-details-marker {
  display: none;
}

.faq-content summary::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  content: "";
  transform: translateY(-64%) rotate(45deg);
  transition: transform 180ms ease;
}

.faq-content details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-content summary:hover,
.faq-content summary:focus-visible {
  color: var(--teal);
  outline: 0;
}

.faq-content details p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-content details a {
  color: var(--teal);
  font-weight: 850;
}

.contact-page {
  padding-bottom: 58px;
}

.contact-hero {
  min-height: 300px;
}

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

.contact-status div {
  display: grid;
  gap: 5px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-status span,
.contact-pill {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-status strong {
  color: var(--teal);
  font-size: 1.08rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(2, minmax(0, 0.95fr));
  gap: 16px;
  margin-bottom: 28px;
}

.contact-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 12px;
  align-content: start;
  min-height: 330px;
  padding: clamp(20px, 3vw, 28px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-card.featured {
  background:
    linear-gradient(135deg, rgba(220, 236, 228, 0.72), rgba(255, 255, 255, 0.96)),
    #ffffff;
}

.contact-card h2 {
  overflow-wrap: anywhere;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.1;
}

.contact-card.email-card h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.82rem);
  line-height: 1.14;
}

.contact-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.contact-card .primary-link,
.contact-card .secondary-action,
.contact-card .contact-pill {
  align-self: end;
  width: 100%;
  justify-content: center;
}

.contact-card .secondary-action {
  min-height: 46px;
  color: #ffffff;
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 14px 28px rgba(6, 79, 86, 0.12);
}

.contact-card .secondary-action:hover,
.contact-card .secondary-action:focus-visible {
  color: #ffffff;
  background: var(--teal-2);
  border-color: var(--teal-2);
}

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--teal);
  background: var(--sage);
  border-radius: 8px;
}

.contact-icon svg {
  width: 34px;
  height: 34px;
  overflow: visible;
}

.contact-pill {
  width: fit-content;
  padding: 8px 10px;
  color: var(--teal);
  background: var(--sage);
  border-radius: 8px;
}

.contact-help {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: start;
  padding: clamp(22px, 4vw, 34px);
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal) 0%, #0b6b62 100%);
  border-radius: 8px;
}

.contact-help .eyebrow {
  color: var(--gold);
}

.contact-help h2 {
  max-width: 620px;
  font-size: clamp(1.65rem, 3.6vw, 2.8rem);
  line-height: 1;
}

.contact-help-list {
  display: grid;
  gap: 10px;
}

.contact-help-list span {
  padding: 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  line-height: 1.42;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(18, 25, 31, 0.45);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(440px, 100%);
  height: 100vh;
  background: #ffffff;
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

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

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

.cart-head h2 {
  margin: 0;
  font-size: 1.55rem;
}

.close-cart {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: #f1f6f3;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.close-cart span,
.close-cart span::after {
  position: absolute;
  width: 17px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  content: "";
  transform: rotate(45deg);
}

.close-cart span::after {
  left: 0;
  transform: rotate(90deg);
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  padding: 18px;
}

.cart-empty {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 240px;
  color: var(--muted);
  text-align: center;
}

.cart-empty strong {
  color: var(--ink);
}

.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  padding: 10px;
  background: #f8faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-thumb {
  display: grid;
  overflow: hidden;
  width: 76px;
  height: 76px;
  place-items: center;
  background: var(--media-bg);
  border-radius: 6px;
}

.cart-thumb svg {
  width: 68px;
}

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

.cart-item-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item-info span {
  color: var(--muted);
  font-size: 0.88rem;
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 32px 36px 32px;
  overflow: hidden;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quantity-control button {
  width: 32px;
  height: 34px;
  background: #ffffff;
  border: 0;
  cursor: pointer;
  font-weight: 950;
}

.quantity-control span {
  display: grid;
  place-items: center;
  background: #ffffff;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  font-weight: 900;
}

.remove-button {
  color: var(--coral);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.cart-summary {
  display: grid;
  gap: 14px;
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
}

.meter-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.meter-track {
  overflow: hidden;
  height: 8px;
  background: #edf3f0;
  border-radius: 999px;
}

.meter-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
  border-radius: inherit;
  transition: width 180ms ease;
}

.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 1.08rem;
}

.checkout-button {
  width: 100%;
  min-height: 48px;
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 5000;
  max-width: min(380px, calc(100% - 44px));
  padding: 13px 15px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 4900;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #b8d7ce;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(32, 38, 45, 0.18);
}

.cookie-consent__text {
  display: grid;
  gap: 6px;
}

.cookie-consent__text strong {
  color: var(--teal);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cookie-consent__text p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cookie-consent__text a {
  width: fit-content;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

.cookie-consent__text a:hover,
.cookie-consent__text a:focus-visible {
  text-decoration: underline;
  outline: 0;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: end;
}

.cookie-consent__button {
  min-height: 44px;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.cookie-consent__button.primary {
  color: #ffffff;
  background: var(--teal);
  border: 1px solid var(--teal);
}

.cookie-consent__button.secondary {
  color: var(--teal);
  background: #ffffff;
  border: 1px solid #b8d7ce;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
  outline: 0;
  transform: translateY(-2px);
}

.cookie-consent__button.primary:hover,
.cookie-consent__button.primary:focus-visible {
  background: var(--teal-2);
  border-color: var(--teal-2);
}

.cookie-consent__button.secondary:hover,
.cookie-consent__button.secondary:focus-visible {
  background: var(--sage);
  border-color: var(--teal);
}

.page-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 42px;
  margin: 0 0 18px;
  padding: 9px 14px 9px 12px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #b8d7ce;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(6, 79, 86, 0.08);
  font-size: 0.94rem;
  font-weight: 900;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.page-back-link span {
  position: relative;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  background: var(--sage);
  border-radius: 999px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.page-back-link span::before,
.page-back-link span::after {
  position: absolute;
  content: "";
}

.page-back-link span::before {
  width: 9px;
  height: 9px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateX(2px) rotate(45deg);
}

.page-back-link span::after {
  width: 11px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translateX(3px);
}

.page-back-link:hover,
.page-back-link:focus-visible {
  color: #ffffff;
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 18px 36px rgba(6, 79, 86, 0.18);
  outline: 0;
  transform: translateY(-2px);
}

.page-back-link:hover span,
.page-back-link:focus-visible span {
  color: var(--teal);
  background: #ffffff;
  transform: translateX(-3px);
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .site-nav {
    justify-content: start;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .header-actions {
    justify-self: stretch;
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .hero,
  .store-layout,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .hero-showcase {
    min-height: 430px;
  }

  .filters {
    position: static;
  }

  .category-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .product-detail-media {
    min-height: 360px;
  }

  .product-trust-strip,
  .checkout-layout,
  .related-grid,
  .contact-grid,
  .contact-help,
  .feedback-layout {
    grid-template-columns: 1fr;
  }

  .feedback-note {
    position: static;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(150px, 0.6fr));
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .order-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  main {
    width: min(100% - 24px, 1200px);
  }

  .site-header {
    align-items: stretch;
    grid-template-columns: 1fr;
    padding: 12px;
    gap: 10px;
  }

  .page-back-link {
    width: 100%;
    justify-content: center;
    margin-bottom: 14px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .site-nav {
    position: static;
  }

  .sections-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
    z-index: 120;
    grid-template-columns: 1fr;
    gap: 7px;
    width: auto;
    max-height: min(420px, calc(100vh - 190px));
    overflow-y: auto;
    padding: 10px;
    transform: none;
  }

  .sections-panel button {
    min-height: 62px;
    padding: 10px;
  }

  .sections-panel strong {
    font-size: 0.92rem;
  }

  .sections-panel span {
    font-size: 0.8rem;
  }

  .header-actions {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .cart-trigger {
    min-width: 58px;
    padding: 9px 10px;
  }

  .cart-trigger:not(.account-trigger) > span:not(.cart-glyph) {
    display: none;
  }

  .hero {
    gap: 18px;
  }

  .hero-showcase {
    min-height: 360px;
  }

  .bundle-panel {
    right: 12px;
    bottom: 16px;
  }

  .trust-row,
  .fit-grid,
  .catalog-toolbar,
  .product-extra-grid,
  .field-grid.two,
  .field-grid.three,
  .payment-options,
  .auth-tabs,
  .admin-tabs,
  .admin-meta-grid,
  .account-overview,
  .account-quick-actions,
  .checkout-actions,
  .site-footer,
  .footer-main,
  .footer-trust,
  .contact-status,
  .contact-grid,
    .contact-help,
    .feedback-layout,
    .policy-layout,
  .about-intro,
  .about-card-grid,
  .difference-grid,
  .about-proof-list {
    grid-template-columns: 1fr;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }

  .about-band {
    align-items: stretch;
    flex-direction: column;
  }

  .about-band .primary-link {
    width: 100%;
    justify-content: center;
  }

  .tips-feature,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .tips-band {
    align-items: stretch;
    flex-direction: column;
  }

  .tips-band .primary-link {
    width: 100%;
    justify-content: center;
  }

  .faq-help {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-help .primary-link {
    width: 100%;
    justify-content: center;
  }

  .category-list {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-area .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .catalog-area .product-card {
    align-content: start;
  }

  .catalog-area .product-media {
    aspect-ratio: 1.04;
  }

  .catalog-area .product-media svg {
    width: 76%;
  }

  .catalog-area .product-body {
    gap: 8px;
    padding: 10px;
  }

  .catalog-area .product-top {
    display: grid;
    gap: 6px;
  }

  .catalog-area .product-top h3 {
    margin-bottom: 3px;
    font-size: 0.88rem;
    line-height: 1.22;
  }

  .catalog-area .product-top p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.76rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .catalog-area .rating {
    gap: 4px;
    font-size: 0.74rem;
  }

  .catalog-area .rating::before {
    width: 7px;
    height: 7px;
  }

  .catalog-area .product-footer {
    gap: 8px;
  }

  .catalog-area .price {
    font-size: 0.98rem;
  }

  .catalog-area .product-buttons {
    gap: 7px;
  }

  .catalog-area .add-button,
  .catalog-area .whatsapp-buy-button {
    min-height: 38px;
    padding: 7px 8px;
    font-size: 0.72rem;
    line-height: 1.15;
  }

  .catalog-area .wishlist-button {
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
  }

  .catalog-area .wishlist-button span {
    width: 18px;
    height: 18px;
  }

  .catalog-area .wishlist-button span::before {
    font-size: 1.3rem;
  }

  .catalog-status,
  .service-band,
  .admin-panel-head {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-page {
    width: min(100% - 24px, 1200px);
  }

  .admin-page .account-hero {
    padding: 18px;
  }

  .admin-tabs {
    position: static;
  }

  .sort-box {
    justify-content: space-between;
  }

  .coupon-input-row {
    grid-template-columns: 1fr;
  }

  .coupon-input-row .secondary-action {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .policy-summary {
    position: static;
  }

  .add-button,
  .wishlist-action,
  .whatsapp-buy-button {
    width: 100%;
  }

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

  .product-header-actions {
    justify-self: stretch;
    grid-template-columns: 1fr auto auto;
  }

  .product-header-actions .cart-trigger:not(.account-trigger) {
    width: 100%;
  }

  .product-page {
    padding-top: 16px;
  }

  .field-control.wide-2 {
    grid-column: auto;
  }

  .checkout-page {
    padding-top: 16px;
  }

  .account-page {
    padding-top: 16px;
  }

  .checkout-hero {
    padding-top: 6px;
  }

  .checkout-panel-head {
    grid-template-columns: 34px 1fr;
  }

  .checkout-panel-head > span {
    width: 34px;
    height: 34px;
  }

  .payment-option {
    min-height: auto;
  }

  .product-detail {
    gap: 18px;
  }

  .product-detail-media {
    min-height: 280px;
  }

  .product-title-row {
    display: grid;
  }

  .product-cta-row .primary-link,
  .product-cta-row .add-button,
  .product-cta-row .wishlist-action,
  .product-cta-row .whatsapp-buy-button,
  .secondary-action {
    width: 100%;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .related-card {
    grid-template-columns: 72px 1fr;
  }

  .related-thumb {
    width: 72px;
    height: 72px;
  }

  .related-thumb svg {
    width: 66px;
  }

  .related-card em {
    grid-column: 2;
  }

  .summary-item {
    grid-template-columns: 48px 1fr;
  }

  .summary-thumb {
    width: 48px;
    height: 48px;
  }

  .summary-item em {
    grid-column: 2;
  }

  .account-submit {
    width: 100%;
  }

  .address-card,
  .order-card-head {
    display: grid;
  }

  .saved-actions {
    display: grid;
  }

  .saved-actions > * {
    width: 100%;
  }

  .order-timeline {
    grid-template-columns: 1fr;
  }

  .order-item-line,
  .tracking-box {
    display: grid;
  }

  .review-panel-head,
  .review-gate.split,
  .review-item-head {
    display: grid;
  }

  .review-submit {
    width: 100%;
  }

  .toast {
    right: 12px;
    bottom: 86px;
    max-width: calc(100% - 24px);
  }

  .cookie-consent {
    right: 12px;
    bottom: 76px;
    left: 12px;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 15px;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent__button {
    width: 100%;
  }

  .floating-social {
    right: 12px;
    bottom: 12px;
    grid-auto-flow: column;
  }

  .float-button {
    width: 48px;
    height: 48px;
  }
}
