:root {
  --ink: #1f2933;
  --soft-ink: #52606d;
  --muted: #7b8794;
  --line: #dde3ea;
  --surface: #f4f6f8;
  --panel: #ffffff;
  --sun: #f7c948;
  --sun-dark: #b7791f;
  --green: #2f855a;
  --red: #d64545;
  --blue: #2f80ed;
  --shadow: 0 18px 44px rgba(31, 41, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Tahoma, Arial, sans-serif;
  letter-spacing: 0;
}

body[data-localizing="true"] {
  overflow: hidden;
}

body[data-localizing="true"] > :not(.localizing-screen) {
  visibility: hidden;
}

.localizing-screen {
  display: none;
}

body[data-localizing="true"] .localizing-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  overflow: hidden;
  background: #f4f6f8;
  color: var(--ink);
}

.localizing-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(18px, 3vw, 34px);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(18px, 4vw, 44px) 0;
}

.localizing-top,
.localizing-hero,
.localizing-products {
  border: 1px solid rgba(221, 227, 234, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(31, 41, 51, 0.08);
}

.localizing-top {
  display: grid;
  grid-template-columns: auto minmax(160px, 1fr) auto;
  gap: clamp(12px, 2vw, 22px);
  align-items: center;
  padding: 14px clamp(14px, 3vw, 24px);
}

.localizing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.localizing-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.localizing-brand-mark,
.localizing-line,
.localizing-pill,
.localizing-block,
.localizing-card-media,
.localizing-card-line,
.localizing-button {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #e6ebf0;
}

.localizing-brand-mark::after,
.localizing-line::after,
.localizing-pill::after,
.localizing-block::after,
.localizing-card-media::after,
.localizing-card-line::after,
.localizing-button::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  animation: localizing-shimmer 1.45s ease-in-out infinite;
}

.localizing-brand-mark {
  width: 96px;
  height: 20px;
}

.localizing-search {
  width: min(100%, 520px);
  height: 44px;
}

.localizing-actions {
  display: inline-flex;
  gap: 8px;
}

.localizing-button {
  width: 54px;
  height: 34px;
}

.localizing-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(20px, 5vw, 58px);
  align-items: center;
  padding: clamp(24px, 5vw, 52px);
}

.localizing-copy {
  display: grid;
  gap: 14px;
}

.localizing-pill {
  width: 132px;
  height: 18px;
  border-radius: 999px;
  background: #f0c766;
}

.localizing-title {
  width: min(100%, 540px);
  height: clamp(84px, 11vw, 128px);
}

.localizing-text {
  width: min(100%, 610px);
  height: 22px;
}

.localizing-text-short {
  width: min(72%, 420px);
}

.localizing-ctas {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.localizing-ctas .localizing-button {
  width: 126px;
  height: 44px;
}

.localizing-media {
  position: relative;
  min-height: clamp(280px, 34vw, 420px);
}

.localizing-media .localizing-block {
  position: absolute;
  border: 8px solid #fff;
  box-shadow: 0 18px 44px rgba(31, 41, 51, 0.12);
}

.localizing-block-main {
  inset-inline-start: 8%;
  top: 20px;
  width: 54%;
  aspect-ratio: 4 / 5;
}

.localizing-block-top {
  inset-inline-end: 4%;
  top: 0;
  width: 38%;
  aspect-ratio: 1;
}

.localizing-block-bottom {
  inset-inline-end: 8%;
  bottom: 18px;
  width: 38%;
  aspect-ratio: 1;
}

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

.localizing-card {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.localizing-card-media {
  aspect-ratio: 1;
}

.localizing-card-line {
  height: 14px;
}

.localizing-card-line.short {
  width: 64%;
}

@keyframes localizing-shimmer {
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 920px) {
  .localizing-shell {
    width: min(100% - 22px, 1180px);
    padding: 14px 0;
  }

  .localizing-top {
    grid-template-columns: 1fr auto;
  }

  .localizing-search {
    grid-column: 1 / -1;
    order: 3;
  }

  .localizing-hero {
    grid-template-columns: 1fr;
  }

  .localizing-media {
    order: -1;
    min-height: 300px;
  }

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

@media (max-width: 560px) {
  .localizing-shell {
    gap: 12px;
    width: min(100% - 16px, 1180px);
  }

  .localizing-top,
  .localizing-hero,
  .localizing-products {
    padding: 12px;
  }

  .localizing-brand-mark {
    width: 74px;
  }

  .localizing-button {
    width: 42px;
  }

  .localizing-title {
    height: 86px;
  }

  .localizing-media {
    min-height: 220px;
  }

  .localizing-products {
    gap: 10px;
  }
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

[hidden] {
  display: none !important;
}

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

.top-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 38px;
  padding: 8px 16px;
  background: var(--ink);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
}

.top-strip span + span {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.22);
  padding-inline-start: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(14px, 3vw, 38px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.checkout-header {
  position: static;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  font-size: 1.12rem;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.search-field input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 16px;
  outline: none;
}

.search-field input:focus,
label input:focus,
label textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.14);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.lang-btn,
.filter-btn {
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--soft-ink);
  padding: 0 12px;
  font-weight: 800;
}

.lang-btn.active,
.filter-btn.active {
  background: var(--ink);
  color: #fff;
}

.icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.icon-button strong {
  position: absolute;
  top: -7px;
  inset-inline-end: -7px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.76rem;
}

.icon-bag {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 4px;
  position: relative;
}

.icon-bag::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -8px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

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

.hero-commerce {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(24px, 5vw, 56px) 0 24px;
}

.hero-copy {
  display: grid;
  gap: 16px;
  align-content: center;
}

.eyebrow {
  margin: 0;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 900;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.05;
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--soft-ink);
  font-size: 1rem;
  line-height: 1.8;
}

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

.primary-link,
.ghost-link,
.secondary-btn,
.primary-btn,
.compact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
}

.primary-link,
.primary-btn,
.compact-btn {
  border: 0;
  background: var(--sun);
  color: #2f2200;
}

.primary-link,
.ghost-link {
  padding: 0 18px;
}

.primary-link:hover,
.primary-btn:hover,
.compact-btn:hover {
  background: #f0b429;
}

.primary-btn:disabled {
  cursor: not-allowed;
  background: #d9e2ec;
  color: #52606d;
}

.ghost-link,
.secondary-btn,
.compact-btn.soft {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.ghost-link:hover,
.secondary-btn:hover,
.compact-btn.soft:hover {
  border-color: var(--ink);
}

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

.hero-card {
  position: absolute;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card-main {
  inset-inline-start: 10%;
  top: 22px;
  width: 54%;
  aspect-ratio: 4 / 5;
}

.hero-card-small {
  width: 38%;
  aspect-ratio: 1 / 1;
}

.hero-card-top {
  inset-inline-end: 4%;
  top: 0;
}

.hero-card-bottom {
  inset-inline-end: 8%;
  bottom: 24px;
}

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

.service-row div {
  display: grid;
  gap: 6px;
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.service-row strong {
  font-size: 0.98rem;
}

.service-row span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 10px 0 18px;
}

.section-head h2 {
  margin-top: 6px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.filters {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  overflow-x: auto;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
  padding-bottom: 42px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(31, 41, 51, 0.08);
}

.media-button {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 0;
  background: #edf1f4;
  padding: 0;
}

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

.media-button > span:first-of-type {
  position: absolute;
  top: 10px;
  inset-inline-start: 10px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  padding: 0 9px;
  font-weight: 900;
  font-size: 0.8rem;
}

.selected-pill {
  position: absolute;
  bottom: 10px;
  inset-inline-start: 10px;
  border-radius: 6px;
  background: var(--green) !important;
  color: #fff;
  padding: 6px 9px;
  font-size: 0.75rem;
  font-weight: 900;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 13px;
}

.product-meta,
.seller-row,
.card-footer,
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-meta,
.seller-row {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-card h2 {
  min-height: 48px;
  font-size: 1rem;
  line-height: 1.35;
}

.product-card p {
  min-height: 44px;
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.84rem;
  line-height: 1.5;
}

.price-row strong {
  color: var(--green);
  font-size: 1.1rem;
}

.price-row span {
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: line-through;
}

.price-row-large strong {
  font-size: 1.45rem;
}

.card-footer {
  align-items: end;
  margin-top: auto;
}

.card-footer small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.button-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  min-width: 110px;
}

.compact-btn {
  min-height: 34px;
  padding: 0 10px;
  font-size: 0.8rem;
}

.primary-btn,
.secondary-btn {
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  font-size: 1rem;
}

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

.empty-state {
  grid-column: 1 / -1;
}

.product-dialog {
  width: min(860px, calc(100% - 28px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  box-shadow: var(--shadow);
}

.product-dialog::backdrop {
  background: rgba(31, 41, 51, 0.58);
}

.dialog-close {
  position: absolute;
  top: 10px;
  inset-inline-end: 10px;
  z-index: 1;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1fr);
}

.dialog-media {
  background: #edf1f4;
}

.dialog-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.dialog-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 30px 30px;
}

.dialog-copy h2 {
  font-size: 1.55rem;
  line-height: 1.25;
}

.dialog-copy p {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.65;
}

.product-kicker {
  color: var(--red) !important;
  font-weight: 900;
}

.detail-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-inline-start: 20px;
  color: var(--soft-ink);
}

.dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  background: rgba(31, 41, 51, 0.44);
}

.cart-drawer.open {
  display: block;
}

.cart-panel {
  position: absolute;
  inset-block: 0;
  inset-inline-end: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(420px, 100%);
  background: #fff;
  box-shadow: var(--shadow);
}

.cart-head,
.cart-foot {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-foot {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.cart-item.active {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(47, 133, 90, 0.14);
}

.cart-select {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  min-width: 0;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  text-align: start;
}

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

.cart-select span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

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

.cart-select small {
  color: var(--muted);
  font-weight: 800;
}

.cart-remove {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--red);
  font-size: 1.2rem;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cart-total strong {
  color: var(--green);
  font-size: 1.2rem;
}

.checkout-strip {
  justify-content: center;
}

.checkout-main {
  display: grid;
  grid-template-columns: minmax(330px, 1.1fr) minmax(300px, 0.9fr);
  gap: 20px;
  align-items: start;
  padding: 28px 0 42px;
}

.checkout-form-card,
.order-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.08);
}

.checkout-form-card {
  padding: clamp(18px, 3vw, 30px);
}

.checkout-form-card h1 {
  margin-bottom: 22px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

#claxmy-payment-container[hidden],
.free-gift-form[hidden],
.claim-success[hidden] {
  display: none !important;
}

.free-gift-form {
  display: grid;
  gap: 0;
}

.claim-hero {
  display: grid;
  gap: 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.claim-hero::before {
  content: "";
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: var(--sun);
}

.claim-hero span,
.claim-success > span {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
}

.claim-hero h1,
.claim-success h1 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.16;
}

.claim-hero p,
.claim-success p {
  max-width: 660px;
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.75;
}

.form-section {
  display: grid;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.form-section h2 {
  font-size: 1.12rem;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
  font-size: 0.9rem;
}

label input,
label textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 13px;
  outline: none;
  resize: vertical;
}

label input[readonly] {
  background: #f4f6f8;
  color: var(--soft-ink);
}

.claim-submit {
  margin-top: 4px;
}

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

.form-error {
  min-height: 22px;
  margin: 12px 0;
  color: #b42318;
  font-weight: 800;
}

.order-summary {
  position: sticky;
  top: 94px;
  overflow: hidden;
}

.order-summary h2 {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 1.18rem;
}

.summary-product {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
}

.summary-product img {
  width: 124px;
  height: 124px;
  border-radius: 8px;
  object-fit: cover;
  background: #edf1f4;
}

.summary-product span,
.summary-product small {
  color: var(--muted);
  font-weight: 800;
}

.summary-product h3 {
  margin: 7px 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

.summary-lines {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 18px 18px;
}

.summary-lines div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.summary-lines dt {
  color: var(--soft-ink);
  font-weight: 800;
}

.summary-lines dd {
  margin: 0;
  font-weight: 900;
}

.summary-total dd {
  color: var(--green);
  font-size: 1.25rem;
}

.status-box {
  margin-top: 16px;
  border: 1px solid #b7ddc9;
  border-radius: 8px;
  background: #effaf4;
  color: #20533e;
  padding: 14px;
}

.status-box strong {
  display: block;
  margin-bottom: 8px;
}

.status-box a {
  color: #20533e;
  font-weight: 900;
}

.claim-success {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 460px;
  padding: clamp(22px, 4vw, 42px) 0;
  text-align: center;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #20533e;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(32, 83, 62, 0.18);
}

.claim-success dl {
  display: grid;
  gap: 10px;
  width: min(100%, 520px);
  margin: 8px 0 4px;
}

.claim-success dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  padding: 13px 15px;
  text-align: start;
}

.claim-success dt {
  color: var(--soft-ink);
  font-weight: 800;
}

.claim-success dd {
  margin: 0;
  font-weight: 900;
}

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

  .search-field {
    grid-column: 1 / -1;
    order: 3;
  }

  .hero-commerce,
  .checkout-main {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    order: -1;
    min-height: 340px;
  }

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

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

  .order-summary {
    position: static;
    order: -1;
  }
}

@media (max-width: 620px) {
  .top-strip {
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .top-strip span + span {
    border-inline-start: 0;
    padding-inline-start: 0;
  }

  main {
    width: min(100% - 20px, 1260px);
  }

  .site-header {
    gap: 12px;
    padding: 12px 10px;
  }

  .brand span {
    display: none;
  }

  .language-switch {
    min-width: 118px;
  }

  .lang-btn {
    flex: 1;
    padding: 0 8px;
  }

  .hero-commerce {
    padding-top: 18px;
  }

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

  .hero-card {
    border-width: 5px;
  }

  .hero-card-main {
    width: 58%;
    inset-inline-start: 4%;
  }

  .hero-card-small {
    width: 40%;
  }

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

  .product-body {
    padding: 10px;
  }

  .product-meta,
  .seller-row,
  .card-footer,
  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .product-card h2 {
    min-height: 58px;
    font-size: 0.9rem;
  }

  .product-card p,
  .seller-row {
    display: none;
  }

  .button-pair,
  .compact-btn {
    width: 100%;
  }

  .filters {
    width: 100%;
  }

  .filter-btn {
    flex: 1;
    min-width: max-content;
  }

  .dialog-layout,
  .field-grid,
  .summary-product {
    grid-template-columns: 1fr;
  }

  .dialog-media img {
    min-height: 300px;
  }

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

  .summary-product img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .claim-success dl div {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ===== Site footer ===== */
.site-footer {
  margin-top: 56px;
  background: #11181f;
  color: #cbd2d9;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}
.footer-brand .footer-brand-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #9aa5b1;
  max-width: 320px;
}
.footer-pay {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-pay span {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #e4e7eb;
}
.footer-col h3 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer-col a {
  color: #9aa5b1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}
.footer-col a:hover {
  color: var(--sun);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #7b8794;
}
.footer-bottom-inner a {
  color: #7b8794;
  text-decoration: none;
}
.footer-bottom-inner a:hover {
  color: var(--sun);
}
@media (max-width: 860px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 520px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}
