:root {
  --green-900: #073f23;
  --green-800: #0c542f;
  --green-700: #12653c;
  --red-800: #8a1f17;
  --yellow-500: #e2b449;
  --brown-950: #1d1009;
  --brown-900: #29170d;
  --brown-800: #3c2415;
  --brown-600: #6b4429;
  --paper: #f8f1e7;
  --paper-2: #fffaf2;
  --line: #ddcdbb;
  --text: #24160f;
  --muted: #715f50;
  --white: #ffffff;
  --danger: #a51f16;
  --shadow: 0 14px 34px rgba(33, 19, 11, 0.14);
  --radius: 8px;
  --container: 1180px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper-2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: linear-gradient(180deg, #fffaf2 0, #f7ecdc 52%, #fffaf2 100%);
}

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

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

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

button {
  cursor: pointer;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  background: var(--green-900);
  color: #fff7e8;
  font-size: 0.82rem;
  font-weight: 700;
}

.topbar__inner {
  width: min(var(--container), calc(100% - 32px));
  min-height: 34px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar__inner::-webkit-scrollbar,
.category-nav::-webkit-scrollbar,
.best-track::-webkit-scrollbar {
  display: none;
}

.topbar span,
.footer p,
.story-badges span,
.payment-icons span,
.trust-strip article,
.socials,
.footer__inner p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar svg,
.footer svg,
.trust-strip svg,
.story-badges svg,
.payment-icons svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 242, 0.96);
  border-bottom: 1px solid rgba(60, 36, 21, 0.15);
  box-shadow: 0 10px 22px rgba(30, 16, 9, 0.06);
  backdrop-filter: blur(12px);
}

.header-main {
  width: min(var(--container), calc(100% - 32px));
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 270px minmax(260px, 1fr) 280px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 0.94;
  text-transform: uppercase;
}

.brand span {
  color: var(--brown-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand::after {
  content: "";
  width: 174px;
  max-width: 75%;
  height: 5px;
  margin-top: 5px;
  background: linear-gradient(90deg, var(--green-800) 0 34%, var(--red-800) 34% 66%, var(--yellow-500) 66%);
  border-radius: 999px;
}

.search {
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  min-width: 0;
  height: 48px;
  padding: 4px;
  background: var(--white);
  border: 1px solid #cab9a5;
  border-radius: 999px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.8);
}

.search input {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.search button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff9ed;
  background: var(--brown-900);
  border: 0;
  border-radius: 50%;
}

.search button svg {
  width: 20px;
  height: 20px;
}

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

.icon-action,
.icon-button,
.carousel-button,
.quantity-control button,
.favorite-toggle {
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
}

.icon-action {
  position: relative;
  min-height: 58px;
  grid-template-rows: 24px auto;
  gap: 3px;
  padding: 6px;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 700;
}

.icon-action:hover,
.icon-action:focus-visible {
  border-color: var(--line);
  background: #fff4e4;
}

.icon-action svg {
  width: 24px;
  height: 24px;
}

.counter {
  position: absolute;
  top: 2px;
  right: 14px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--danger);
  color: #fff;
  font-size: 0.68rem;
  line-height: 1;
}

.category-nav {
  background: var(--brown-950);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-nav button {
  align-self: stretch;
  flex: 0 0 auto;
  min-width: 112px;
  padding: 0 18px;
  color: #fff8eb;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.category-nav button:hover,
.category-nav button.is-active {
  background: var(--green-800);
}

.category-nav .nav-offer {
  color: var(--yellow-500);
}

.category-nav .nav-new {
  background: var(--green-800);
}

.hero {
  min-height: clamp(440px, 48vw, 560px);
  display: flex;
  align-items: center;
  color: #fff9ed;
  background:
    linear-gradient(90deg, rgba(18, 9, 5, 0.78) 0%, rgba(18, 9, 5, 0.48) 42%, rgba(18, 9, 5, 0.06) 74%),
    url("assets/hero-clean.jpg") center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 310px;
  height: 310px;
  border: 28px solid var(--green-800);
  border-left-color: var(--red-800);
  border-top-color: var(--yellow-500);
  border-radius: 50%;
  opacity: 0.85;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow-500);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 4.9vw, 4.55rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--yellow-500);
}

.hero p:not(.eyebrow) {
  max-width: 480px;
  margin: 18px 0 0;
  color: rgba(255, 249, 237, 0.92);
  font-size: 1.05rem;
  line-height: 1.5;
}

.hero__actions,
.toolbar,
.drawer-header,
.section-heading,
.cart-line__footer,
.product-card__meta,
.best-card,
.modal-actions {
  display: flex;
  align-items: center;
}

.hero__actions {
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #fff;
  background: var(--green-800);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.button:hover {
  background: var(--green-700);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.18);
}

.button--ghost:hover {
  background: rgba(0, 0, 0, 0.32);
}

.button--small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.75rem;
}

.button--full {
  width: 100%;
}

.button--danger {
  background: var(--red-800);
}

.button--danger:hover {
  background: #a5281e;
}

.text-button {
  padding: 0;
  color: var(--green-800);
  background: transparent;
  border: 0;
  font-weight: 900;
}

.section {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
}

.section-heading {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-heading h2,
.divider-title h2,
.promo-card h2,
.payment-card h2,
.story h2,
.footer h3,
.account-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: 1.45rem;
}

.category-showcase {
  padding-top: 22px;
}

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

.category-card {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  color: #fff9ed;
  background: var(--brown-800);
  box-shadow: 0 10px 24px rgba(33, 19, 11, 0.12);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 9, 5, 0.08), rgba(18, 9, 5, 0.78));
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card__text {
  position: absolute;
  inset: auto 14px 12px;
  z-index: 1;
  text-align: left;
}

.category-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.category-card span {
  display: block;
  margin-top: 3px;
  font-size: 0.8rem;
}

.brand-strip {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 6px 0 26px;
}

.divider-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 22px;
  text-align: center;
}

.divider-title span {
  height: 1px;
  background: var(--brown-600);
  opacity: 0.7;
}

.divider-title h2 {
  font-size: 1.1rem;
  white-space: nowrap;
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(110px, 1fr));
  align-items: center;
  gap: 22px 26px;
  color: #2f2018;
  text-align: center;
}

.brand-list span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.45rem);
}

.products-section {
  padding-top: 8px;
}

.toolbar {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.82);
}

.active-filter {
  font-weight: 900;
}

.toolbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.toolbar select,
.checkout input,
.checkout select,
.panel-form input,
.panel-form select,
.panel-form textarea,
.admin-card input,
.admin-card select,
.stock-row input,
.admin-search input {
  min-height: 40px;
  border: 1px solid #cbb9a4;
  border-radius: 6px;
  background: #fffdf8;
  color: var(--text);
}

.toolbar select {
  padding: 0 34px 0 12px;
}

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

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: 190px 1fr auto;
  gap: 12px;
  padding: 14px;
  min-height: 380px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 8px 20px rgba(33, 19, 11, 0.08);
}

.product-card__image {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: #fff8ed;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
  transition: transform 220ms ease;
}

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

.favorite-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  color: var(--brown-900);
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.favorite-toggle svg {
  width: 19px;
  height: 19px;
}

.favorite-toggle.is-active {
  color: #fff;
  background: var(--red-800);
  border-color: var(--red-800);
}

.product-card h3 {
  margin: 0;
  min-height: 44px;
  font-size: 0.98rem;
  line-height: 1.25;
}

.product-card__brand {
  color: var(--muted);
  font-size: 0.8rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #d88613;
  font-size: 0.82rem;
}

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

.product-card__meta {
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}

.price {
  display: grid;
  gap: 3px;
}

.price strong {
  font-size: 1.25rem;
}

.price small {
  color: var(--muted);
  font-size: 0.72rem;
}

.stock {
  color: var(--green-800);
  font-size: 0.72rem;
  font-weight: 800;
}

.stock.is-low {
  color: var(--danger);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
}

.product-actions .icon-button {
  height: 44px;
  border-color: var(--line);
  border-radius: 6px;
  background: #fff8ed;
}

.empty-state {
  min-height: 260px;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 34px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.88);
  text-align: center;
}

.empty-state svg {
  width: 42px;
  height: 42px;
  color: var(--muted);
}

.empty-state h3 {
  margin: 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 16px;
  padding-top: 8px;
}

.promo-card,
.payment-card {
  min-height: 156px;
  padding: 24px;
  border-radius: var(--radius);
  overflow: hidden;
}

.promo-card {
  position: relative;
  color: #fff8e7;
  background:
    linear-gradient(90deg, rgba(8, 47, 25, 0.86), rgba(8, 47, 25, 0.54)),
    var(--promo-image) center / cover no-repeat;
}

.promo-card:nth-child(2) {
  background:
    linear-gradient(90deg, rgba(122, 24, 16, 0.88), rgba(122, 24, 16, 0.55)),
    var(--promo-image) center / cover no-repeat;
}

.promo-card h2,
.payment-card h2 {
  max-width: 260px;
  font-size: 1.6rem;
  line-height: 1;
}

.promo-card p,
.payment-card p,
.story p,
.footer p,
.account-panel p {
  line-height: 1.5;
}

.promo-card p {
  max-width: 250px;
  margin: 10px 0 18px;
}

.payment-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 250, 242, 0.86), rgba(255, 250, 242, 0.86)),
    url("assets/banner-stone.jpg") center / cover no-repeat;
}

.payment-card p {
  color: var(--muted);
  margin: 10px 0 0;
}

.payment-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-self: end;
}

.payment-icons span {
  min-height: 40px;
  padding: 8px;
  border: 1px solid rgba(12, 84, 47, 0.22);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 900;
}

.carousel-shell {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
}

.carousel-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fffdf8;
  box-shadow: 0 8px 16px rgba(33, 19, 11, 0.08);
}

.best-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 12px;
}

.best-card {
  min-height: 114px;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  scroll-snap-align: start;
}

.best-card img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 6px;
  background: #fff6e9;
}

.best-card h3 {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.2;
}

.best-card strong {
  display: block;
  margin-top: 6px;
}

.best-card button {
  margin-top: 7px;
  padding: 0;
  color: var(--green-800);
  background: transparent;
  border: 0;
  font-weight: 900;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip article {
  min-height: 106px;
  padding: 18px;
  border-right: 1px solid var(--line);
  flex-direction: column;
  align-items: flex-start;
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip svg {
  width: 34px;
  height: 34px;
  color: var(--green-800);
}

.trust-strip strong {
  text-transform: uppercase;
  font-size: 0.82rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.story {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: center;
}

.story img {
  width: 100%;
  min-height: 210px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story h2 {
  font-size: 1.6rem;
}

.story p {
  color: var(--muted);
}

.story-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
}

.story-badges span {
  font-weight: 800;
}

.testimonials {
  color: #fff8e7;
  background: var(--brown-950);
}

.divider-title--light span {
  background: rgba(255, 248, 231, 0.55);
}

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

.testimonial-grid article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px 14px;
  min-height: 132px;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff8ed;
  color: var(--text);
}

.testimonial-grid img {
  grid-row: span 3;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-grid p {
  margin: 0;
  line-height: 1.4;
}

.testimonial-grid strong {
  font-size: 0.84rem;
}

.testimonial-grid span {
  color: #d88613;
}

.instagram {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.instagram h2 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.instagram p {
  margin: 0;
  color: var(--muted);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(76px, 1fr));
  gap: 8px;
}

.instagram-grid img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.footer {
  color: #fff5e6;
  background:
    radial-gradient(circle at top left, rgba(107, 68, 41, 0.55), transparent 40%),
    var(--brown-950);
}

.footer__inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 22px;
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 34px;
}

.brand--footer strong {
  font-size: 1.75rem;
}

.brand--footer span {
  color: #e9cfab;
}

.footer p {
  color: #e9cfab;
  margin: 12px 0 0;
}

.footer h3 {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer a,
.footer button {
  display: block;
  width: fit-content;
  margin: 7px 0;
  color: #f7e8d3;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
}

.socials {
  margin-top: 16px;
}

.socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.payment-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.payment-flags span {
  padding: 4px 7px;
  border-radius: 4px;
  background: #fff8ed;
  color: var(--brown-900);
  font-size: 0.72rem;
  font-weight: 900;
}

.footer small {
  display: block;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  color: #d8c5ad;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(18, 9, 5, 0.58);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  width: min(480px, 100%);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px;
  background: #fffaf2;
  box-shadow: -22px 0 42px rgba(18, 9, 5, 0.28);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

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

.drawer-header {
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
}

.icon-button {
  width: 40px;
  height: 40px;
  border-color: var(--line);
  border-radius: 50%;
  background: #fffdf8;
}

.icon-button svg {
  width: 19px;
  height: 19px;
}

.cart-items {
  overflow-y: auto;
  padding-right: 4px;
}

.cart-line {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff6e9;
}

.cart-line h3 {
  margin: 0 0 5px;
  font-size: 0.94rem;
  line-height: 1.25;
}

.cart-line small {
  color: var(--muted);
}

.cart-line__footer {
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 34px 34px 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.quantity-control button {
  height: 34px;
}

.quantity-control span {
  text-align: center;
  font-weight: 900;
}

.remove-line {
  color: var(--danger);
  background: transparent;
  border: 0;
  font-weight: 800;
}

.cart-empty {
  display: none;
  place-items: center;
  gap: 10px;
  min-height: 180px;
  color: var(--muted);
  text-align: center;
}

.cart-empty.is-visible {
  display: grid;
}

.cart-empty svg {
  width: 44px;
  height: 44px;
}

.checkout {
  display: grid;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  overflow-y: auto;
}

.summary {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius);
  background: #f5eadc;
}

.summary div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.summary-total {
  padding-top: 8px;
  border-top: 1px solid #d3bda5;
  font-size: 1.15rem;
}

.checkout fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.checkout legend {
  margin-bottom: 4px;
  font-weight: 900;
}

.checkout label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.checkout .consent-check {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--text);
  line-height: 1.45;
}

.checkout .consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green-800);
}

.checkout .consent-check button {
  padding: 0;
  border: 0;
  color: var(--green-800);
  background: transparent;
  font-weight: 900;
  text-decoration: underline;
}

.checkout input,
.checkout select {
  width: 100%;
  padding: 0 10px;
}

.shipping-calculator,
.product-shipping {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
}

.shipping-calculator__head,
.product-shipping__form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.shipping-calculator__head strong,
.product-shipping strong {
  display: block;
  color: var(--green-800);
}

.shipping-calculator__head span,
.product-shipping span,
.shipping-placeholder,
.product-shipping__result {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.shipping-options {
  display: grid;
  gap: 8px;
}

.shipping-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
  color: var(--text);
}

.shipping-option.is-selected {
  border-color: rgba(12, 84, 47, 0.4);
  background: #eef5ed;
}

.shipping-option input {
  width: 18px;
  min-height: 18px;
}

.shipping-option span,
.shipping-option small {
  display: block;
}

.shipping-option b {
  color: var(--green-800);
}

.shipping-free {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  background: #eef5ed;
  color: var(--green-800);
  font-weight: 800;
}

.shipping-free svg,
.shipping-badge svg {
  width: 16px;
  height: 16px;
}

.shipping-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 10px;
  padding: 6px 8px;
  border-radius: 999px;
  background: #eef5ed;
  color: var(--green-800);
  font-size: 0.74rem;
  font-weight: 900;
}

.product-shipping {
  margin: 16px 0;
}

.product-shipping__form input {
  min-width: 0;
}

.product-shipping__result strong {
  display: inline;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 86px;
  gap: 10px;
}

.form-grid--password {
  grid-template-columns: 1fr 1fr;
}

.modal {
  width: min(860px, calc(100% - 28px));
  max-height: calc(100dvh - 36px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #fffaf2;
  color: var(--text);
  box-shadow: var(--shadow);
}

.modal::backdrop {
  background: rgba(18, 9, 5, 0.58);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: 28px;
  padding: 28px;
}

.product-detail__image {
  display: grid;
  place-items: center;
  min-height: 360px;
  border-radius: var(--radius);
  background: #fff4e4;
}

.product-detail__image img {
  width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: contain;
}

.product-detail h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.05;
}

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

.product-detail ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.variant-picker {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}

.variant-picker__group {
  display: grid;
  gap: 8px;
}

.variant-picker__group > strong {
  font-size: 0.86rem;
  text-transform: uppercase;
  color: var(--text);
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-option {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--text);
  font-weight: 900;
}

.variant-option img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff4e4;
}

.variant-option.is-active {
  border-color: var(--green-800);
  box-shadow: 0 0 0 2px rgba(5, 80, 42, 0.14);
  color: var(--green-800);
}

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

.modal--account {
  width: min(940px, calc(100% - 28px));
}

.modal--legal {
  width: min(900px, calc(100% - 28px));
}

.legal-panel {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.legal-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  text-transform: uppercase;
}

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

.legal-article-list article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
}

.legal-article-list h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.legal-article-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.legal-panel footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.account-panel {
  padding: 30px;
}

.account-panel h2 {
  font-size: 1.8rem;
}

.account-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding-right: 46px;
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(96px, 1fr));
  gap: 10px;
}

.account-stats span,
.metric-grid article,
.mini-card,
.empty-mini {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
}

.account-stats strong,
.metric-grid strong {
  display: block;
  color: var(--green-800);
  font-size: 1.45rem;
}

.account-session-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--muted);
  font-weight: 800;
}

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

.account-login-panel > div:first-child {
  padding-right: 46px;
}

.account-login-form {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
}

.account-help {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid rgba(12, 84, 47, 0.2);
  border-radius: 8px;
  background: #eef5ed;
  color: var(--green-800);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.4;
}

.account-help svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.panel-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.panel-tabs button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf8;
  color: var(--text);
  font-weight: 900;
}

.panel-tabs button.is-active {
  color: #fff;
  background: var(--green-800);
  border-color: var(--green-800);
}

.panel-tabs svg {
  width: 17px;
  height: 17px;
}

.orders-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  max-height: 55dvh;
  overflow-y: auto;
}

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

.order-card header,
.order-card footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.order-card header span {
  display: block;
  color: var(--muted);
  margin-top: 3px;
  font-size: 0.82rem;
}

.order-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.payment-status-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid #eadbc8;
  border-radius: 6px;
  background: #fff8ed;
  font-size: 0.86rem;
}

.payment-status-line span {
  color: var(--muted);
}

.payment-status-line strong {
  color: var(--green-800);
}

.customer-payment-box {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid #eadbc8;
  border-radius: 6px;
  background: #fff8ed;
}

.customer-payment-box strong {
  color: var(--green-800);
}

.customer-payment-box code {
  display: block;
  overflow-wrap: anywhere;
  padding: 8px;
  border-radius: 5px;
  background: #f5eadc;
  color: var(--brown-900);
  font-size: 0.78rem;
}

.customer-payment-box a {
  color: var(--green-800);
  font-weight: 900;
}

.customer-payment-box span {
  color: var(--muted);
  font-size: 0.82rem;
}

.customer-payment-box.is-paid {
  border-color: rgba(12, 84, 47, 0.32);
  background: rgba(12, 84, 47, 0.08);
}

.customer-payment-box.is-alert {
  border-color: rgba(165, 31, 22, 0.32);
  background: rgba(165, 31, 22, 0.08);
}

.status-pill {
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--green-800);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #eadbc8;
}

.order-progress::before {
  content: "";
  display: block;
  width: var(--progress);
  height: 100%;
  background: linear-gradient(90deg, var(--green-800), var(--yellow-500));
}

.tracking-code {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-radius: 6px;
  background: #f5eadc;
}

.tracking-code span {
  color: var(--muted);
  font-size: 0.82rem;
}

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

.timeline span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.timeline .is-done {
  color: var(--green-800);
}

.timeline svg {
  width: 16px;
  height: 16px;
}

.modal--admin {
  width: min(1220px, calc(100% - 24px));
  max-height: calc(100dvh - 24px);
}

.admin-panel {
  min-height: min(760px, calc(100dvh - 24px));
}

.admin-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  min-height: inherit;
}

.admin-sidebar {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 26px;
  padding: 28px 18px;
  color: #fff8e7;
  background: var(--brown-950);
}

.admin-sidebar h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.admin-sidebar .panel-tabs {
  align-content: start;
  flex-direction: column;
  margin: 0;
}

.admin-sidebar .panel-tabs button {
  justify-content: flex-start;
  width: 100%;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff8e7;
}

.admin-sidebar .panel-tabs button.is-active {
  background: var(--green-800);
  border-color: var(--green-800);
}

.admin-content {
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
  padding: 28px;
}

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

.panel-heading--sub {
  margin-top: 28px;
}

.panel-heading h3,
.admin-split h4,
.admin-card h4 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
}

.panel-heading p,
.admin-card p {
  margin: 4px 0 0;
  color: var(--muted);
}

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

.metric-grid span,
.mini-card span,
.admin-row span,
.stock-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

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

.admin-list--orders {
  gap: 14px;
}

.admin-card {
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
}

.admin-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.admin-card header select {
  min-width: 190px;
  padding: 0 10px;
}

.admin-order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 18px;
}

.admin-order-grid ul {
  margin: 6px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.admin-card label,
.panel-form label,
.stock-row label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-card input,
.admin-card select,
.panel-form input,
.panel-form select,
.panel-form textarea,
.stock-row input,
.admin-search input {
  width: 100%;
  padding: 0 10px;
}

.panel-form textarea {
  min-height: 86px;
  padding: 10px;
  resize: vertical;
}

.panel-form {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
}

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

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

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

.flag-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff8ed;
  color: var(--text);
}

.image-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 800;
}

.image-preview img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff8ed;
}

.admin-search {
  min-width: 260px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf8;
}

.admin-search svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.admin-search input {
  border: 0;
  background: transparent;
  outline: 0;
}

.admin-table,
.stock-table {
  display: grid;
  gap: 10px;
}

.admin-row,
.stock-row {
  display: grid;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
}

.admin-row {
  grid-template-columns: 64px minmax(0, 1fr) 100px 86px 92px;
}

.admin-row--customer {
  grid-template-columns: 48px minmax(0, 1fr) 150px 92px 110px;
}

.stock-row {
  grid-template-columns: 64px minmax(0, 1fr) 120px 120px;
}

.admin-row img,
.stock-row img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff8ed;
}

.row-actions {
  display: flex;
  gap: 6px;
}

.row-actions .icon-button {
  width: 38px;
  height: 38px;
}

.avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green-800);
  font-weight: 900;
}

.mini-metrics {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--green-800);
  font-weight: 900;
}

.mini-metrics span,
.mini-metrics:not(span) {
  padding: 8px 11px;
  border-radius: 999px;
  background: #eef5ed;
}

.toast-region {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100% - 36px));
}

.toast {
  padding: 12px 14px;
  border-left: 5px solid var(--green-800);
  border-radius: 6px;
  background: #fffdf8;
  box-shadow: var(--shadow);
  font-weight: 800;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #fff8e7;
  background: rgba(29, 16, 9, 0.96);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-banner p {
  margin: 0;
  color: #ead7bd;
  line-height: 1.45;
}

.cookie-preferences {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-preferences[hidden] {
  display: none;
}

.cookie-preferences label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.cookie-preferences input {
  accent-color: var(--yellow-500);
}

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

@media (max-width: 1080px) {
  .header-main {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0;
  }

  .header-actions {
    grid-template-columns: repeat(3, 1fr);
  }

  .topbar__inner {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

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

  .brand-list {
    grid-template-columns: repeat(4, minmax(110px, 1fr));
  }

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

  .promo-grid,
  .payment-card,
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .payment-card {
    grid-column: 1 / -1;
  }

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

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

  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    grid-template-rows: auto auto;
  }

  .admin-sidebar .panel-tabs {
    flex-direction: row;
  }

  .admin-sidebar .panel-tabs button {
    width: auto;
  }

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

  .admin-order-grid,
  .admin-split,
  .form-grid--three {
    grid-template-columns: 1fr;
  }

  .admin-row {
    grid-template-columns: 64px minmax(0, 1fr) 88px;
  }

  .admin-row > span:nth-of-type(2) {
    display: none;
  }

  .admin-row--customer,
  .stock-row {
    grid-template-columns: 54px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .topbar__inner,
  .header-main,
  .section,
  .brand-strip,
  .hero__content,
  .footer__inner,
  .footer small {
    width: min(100% - 24px, var(--container));
  }

  .brand strong {
    font-size: 2rem;
  }

  .header-actions {
    gap: 4px;
  }

  .icon-action {
    min-height: 50px;
    font-size: 0.68rem;
  }

  .category-nav {
    justify-content: flex-start;
  }

  .category-nav button {
    min-width: 104px;
    padding: 0 12px;
  }

  .hero {
    min-height: 500px;
    background-position: 58% center;
  }

  .hero::after {
    width: 210px;
    height: 210px;
    right: -80px;
    bottom: -70px;
    border-width: 20px;
  }

  .hero h1 {
    max-width: 480px;
    font-size: clamp(2.1rem, 10vw, 3.4rem);
  }

  .category-grid,
  .product-grid,
  .promo-grid,
  .story,
  .testimonial-grid,
  .product-detail,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 150px;
  }

  .brand-list {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

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

  .toolbar__actions {
    justify-content: space-between;
  }

  .toolbar select {
    min-width: 178px;
  }

  .product-card {
    grid-template-rows: 210px 1fr auto;
  }

  .payment-card {
    grid-template-columns: 1fr;
  }

  .payment-icons {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .carousel-shell {
    grid-template-columns: 1fr;
  }

  .carousel-button {
    display: none;
  }

  .best-track {
    grid-auto-columns: minmax(230px, 84%);
  }

  .testimonial-grid article {
    grid-template-columns: 58px 1fr;
  }

  .testimonial-grid img {
    width: 58px;
    height: 58px;
  }

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

  .account-hero,
  .form-grid--two,
  .form-grid--password,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .shipping-calculator__head,
  .product-shipping__form {
    align-items: stretch;
    flex-direction: column;
  }

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

  .shipping-option b {
    grid-column: 2;
  }

  .account-hero {
    padding-right: 44px;
  }

  .account-stats,
  .flag-grid {
    grid-template-columns: 1fr 1fr;
  }

  .panel-heading,
  .admin-card header {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-content,
  .account-panel {
    padding: 22px;
  }

  .admin-search {
    min-width: 0;
    width: 100%;
  }

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

  .cart-drawer {
    padding: 14px;
  }

  .checkout {
    padding-bottom: 12px;
  }

  .product-detail {
    padding: 22px;
  }

  .product-detail__image {
    min-height: 260px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button {
    flex: 1 1 160px;
  }
}

@media (max-width: 430px) {
  .header-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .icon-action span:last-child {
    font-size: 0.62rem;
  }

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

  .button {
    width: 100%;
  }

  .divider-title {
    gap: 10px;
  }

  .divider-title h2 {
    font-size: 0.98rem;
  }

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

  .product-actions .icon-button {
    width: 100%;
    border-radius: 6px;
  }

  .form-grid,
  .payment-icons,
  .flag-grid,
  .account-stats {
    grid-template-columns: 1fr;
  }
}
