:root {
  --bg: #0b0b0a;
  --bg-soft: #13110f;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #f3ede2;
  --muted: #b9ae9b;
  --gold: #c8a668;
  --gold-soft: rgba(200, 166, 104, 0.18);
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top, rgba(200, 166, 104, 0.14), transparent 28%),
    linear-gradient(180deg, #0a0908 0%, #0d0c0b 45%, #090909 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 8, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #000;
  border-radius: 12px;
  padding: 4px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.brand-kicker,
.eyebrow,
.trust-label,
.product-topline span,
.visual-badge,
.limited-label,
.footer-grid span,
.craft-note span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--gold);
}

.brand strong,
h1,
h2,
h3,
.hero-points li,
.collection-card a,
.btn,
.limited-chip,
.limited-specs strong,
.cart-button__label {
  font-family: 'Cinzel', serif;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--muted);
}

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

.nav-toggle { display: none; }

.hero {
  padding: 3rem 0 4rem;
}

.hero-grid,
.craft-grid,
.limited-grid,
.testimonials-grid,
.footer-grid,
.cta-box {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.94;
  margin: 0.4rem 0 1rem;
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin: 0.25rem 0 0.9rem;
}

h3 {
  font-size: 1.45rem;
  margin: 0;
}

.lead,
.section-heading p,
.craft-copy > p,
.product-body p,
.limited-card p,
.experience-card p,
.testimonials article p,
.cta-box p,
.footer-grid p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(0,0,0,0.35);
  cursor: pointer;
  opacity: 1;
  -webkit-appearance: none;
  appearance: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.btn:focus-visible {
  outline: 3px solid rgba(232, 196, 126, 0.5);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, #e3c27e 0%, #c3924d 100%);
  border-color: rgba(255, 225, 164, 0.55);
  color: #120d08;
  text-shadow: none;
  box-shadow: 0 10px 26px rgba(181, 132, 66, 0.25), inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #efd397 0%, #d3a45e 100%);
  color: #0d0906;
}

.btn-secondary {
  border-color: rgba(221, 185, 116, 0.45);
  background: rgba(255, 255, 255, 0.075);
  color: #fff8ea;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.btn-secondary:hover {
  border-color: rgba(232, 196, 126, 0.75);
  background: rgba(200, 166, 104, 0.18);
  color: #ffffff;
}

.btn:disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.hero-points {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  font-size: 0.92rem;
}

.card-glass {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual {
  padding: 1.25rem;
}

.hero-products {
  padding: 1.3rem;
}

.hero-products-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-product-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: stretch;
  padding: 0.85rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200,166,104,0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.hero-product-image {
  min-height: 118px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
}

.hero-product-content {
  display: grid;
  align-content: center;
  gap: 0.55rem;
}

.hero-product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-product-topline span {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--gold);
}

.hero-product-topline strong {
  color: var(--gold);
  font-family: 'Cinzel', serif;
}

.hero-product-content h3 {
  font-size: 1.2rem;
}

.hero-product-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.visual-frame {
  min-height: 500px;
  border-radius: calc(var(--radius) - 6px);
  margin: 1rem 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background:
    linear-gradient(180deg, rgba(200,166,104,0.14), rgba(0,0,0,0) 32%),
    radial-gradient(circle at 35% 20%, rgba(240,222,186,0.16), transparent 24%),
    linear-gradient(180deg, #1b1712 0%, #0f0d0b 60%, #090908 100%);
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.78));
}

.bow-silhouette {
  position: absolute;
  inset: 10% 18% 9% 18%;
  border-radius: 50% 50% 44% 44% / 12% 12% 88% 88%;
  border-left: 3px solid rgba(214, 176, 116, 0.92);
  border-right: 3px solid rgba(214, 176, 116, 0.92);
  transform: perspective(900px) rotateX(5deg);
}

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

.bow-silhouette::before {
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.8), transparent);
}

.bow-silhouette::after {
  width: 120%;
  height: 58%;
  bottom: 8%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  filter: blur(2px);
}

.visual-meta,
.trust-grid,
.collection-grid,
.product-grid,
.experience-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

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

.visual-meta div,
.trust-grid > div,
.experience-card,
.collection-card,
.product-card,
.cta-box,
.limited-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
}

.visual-meta div {
  padding: 1rem;
}

.visual-meta span,
.limited-specs span {
  display: block;
  color: var(--muted);
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.trust-bar {
  padding: 0 0 1.2rem;
}

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

.trust-grid > div {
  padding: 1rem 1.1rem;
}

.section {
  padding: 5rem 0;
}

.section-dark { background: rgba(255,255,255,0.02); }

.section-highlight {
  background: linear-gradient(180deg, rgba(200,166,104,0.07), rgba(255,255,255,0.02));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
}

.split-heading > * { flex: 1; }

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

.collection-card,
.experience-card {
  padding: 1.5rem;
}

.collection-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: auto -15% -35% auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(200,166,104,0.08);
  filter: blur(12px);
}

.accent-card {
  background: linear-gradient(180deg, rgba(200,166,104,0.17), rgba(255,255,255,0.04));
}

.card-index {
  font-family: 'Cinzel', serif;
  color: rgba(255,255,255,0.35);
}

.collection-card p,
.collection-card a {
  position: relative;
  z-index: 1;
}

.collection-card a { color: var(--gold); }

.craft-grid,
.limited-grid,
.testimonials-grid,
.cta-box {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.craft-visual {
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.texture {
  position: absolute;
  inset: 0;
  background-size: cover;
}

.texture-wood {
  background:
    linear-gradient(120deg, rgba(255,255,255,0.03), transparent 30%),
    repeating-linear-gradient(
      100deg,
      #261c15 0,
      #3b2b1d 10%,
      #271c13 18%,
      #5c4027 28%,
      #20160f 36%
    );
  filter: saturate(0.95) contrast(1.05);
}

.craft-note {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  right: 1.2rem;
  padding: 1.1rem;
  border-radius: 18px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.feature-list strong,
.product-topline strong,
.limited-chip,
.limited-card h3,
.limited-specs strong {
  color: var(--gold);
}

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

.product-card { overflow: hidden; }

.product-visual {
  height: 260px;
  background-size: cover;
  background-position: center;
}

.wood-1 {
  background:
    radial-gradient(circle at 40% 25%, rgba(220,190,130,0.22), transparent 22%),
    repeating-linear-gradient(115deg, #2b1f17 0, #5f4128 11%, #2a1c13 22%, #765433 31%, #241910 41%);
}

.wood-2 {
  background:
    radial-gradient(circle at 60% 20%, rgba(230,214,186,0.18), transparent 18%),
    repeating-linear-gradient(95deg, #1f1712 0, #4a3321 14%, #261b14 22%, #6c492a 33%, #1f1510 44%);
}

.leather {
  background:
    radial-gradient(circle at 60% 25%, rgba(200,166,104,0.2), transparent 24%),
    repeating-linear-gradient(135deg, #161210 0, #2d221c 12%, #201814 26%, #4b372b 37%, #130f0d 48%);
}

.product-body {
  padding: 1.35rem;
}

.product-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.product-body ul {
  padding-left: 1.1rem;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.7;
}

.limited-card,
.cta-box {
  padding: 1.6rem;
}

.limited-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.limited-chip {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,166,104,0.26);
}

.limited-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.testimonials {
  display: grid;
  gap: 1rem;
}

.testimonials article {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.015);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  padding: 2.25rem 0;
}

.footer-grid div {
  display: grid;
  gap: 0.65rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 1rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Premium language switcher */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.34rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 10px 28px rgba(0,0,0,0.22);
}

.lang-btn {
  appearance: none;
  border: 0;
  min-width: 44px;
  height: 38px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.lang-btn:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}

.lang-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(200,166,104,0.18);
}

.lang-btn.active {
  color: #1b140d;
  background: linear-gradient(135deg, #d8b67a 0%, #b98a49 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 8px 18px rgba(200,166,104,0.22);
}

/* Product page layout */
.product-page-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.product-page-grid {
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(360px, 0.78fr);
  gap: 1.6rem;
  align-items: start;
}

.product-image-shell {
  overflow: hidden;
  padding: 0;
  min-height: 100%;
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(200,166,104,0.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.product-page-photo {
  min-height: 0;
  background: #111;
}

.product-page-photo img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #111;
}

.product-page-copy {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  padding: 0.6rem 0.15rem;
}

.product-page-copy h1 {
  max-width: none;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  margin: 0;
}

.price-line {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.feature-bullets {
  display: grid;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0;
}

.feature-bullets li {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.order-card {
  margin-top: 0.2rem;
  padding: 1.35rem;
}

.order-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.order-form-grid label:first-child {
  grid-column: 1 / -1;
}

.order-form-grid label {
  display: grid;
  gap: 0.45rem;
}

.order-form-grid input,
.order-form-grid select {
  min-height: 50px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 0 0.95rem;
}

.order-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.order-actions .btn {
  flex: 1 1 220px;
}

/* Header cart */
.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 10px 28px rgba(0,0,0,0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.cart-button:hover {
  transform: translateY(-1px);
  border-color: rgba(200,166,104,0.32);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
}

.cart-button__icon {
  font-size: 1rem;
  line-height: 1;
}

.cart-button__count {
  min-width: 24px;
  height: 24px;
  padding: 0 0.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d8b67a 0%, #b98a49 100%);
  color: #1b140d;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  line-height: 1;
}

#shop {
  scroll-margin-top: 100px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .craft-grid,
  .limited-grid,
  .testimonials-grid,
  .cta-box,
  .split-heading,
  .trust-grid,
  .collection-grid,
  .product-grid,
  .experience-grid,
  .footer-grid,
  .limited-specs {
    grid-template-columns: 1fr 1fr;
  }

  .split-heading { align-items: start; }
}

@media (max-width: 1023px) {
  .product-page-grid {
    grid-template-columns: 1fr;
  }

  .product-page-photo img {
    aspect-ratio: auto;
    max-height: 70vh;
  }

}

@media (max-width: 980px) {
  .nav-wrap {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
  }

  .header-actions {
    margin-left: auto;
  }

}

@media (max-width: 900px) {
  .nav-wrap {
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-end;
    gap: 0.5rem;
  }

  .cart-button {
    padding: 0 0.8rem;
  }

  .cart-button__label {
    display: none;
  }

}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.02);
    color: var(--text);
    font-size: 1.15rem;
  }



  .site-nav {
    position: absolute;
    top: 82px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(12, 11, 10, 0.98);
  }

  .site-nav.open { display: flex; }

  .hero {
    padding: 2rem 0 3rem;
  }

  .section {
  padding: 5rem 0;
}

  .hero-grid,
  .craft-grid,
  .limited-grid,
  .testimonials-grid,
  .cta-box,
  .trust-grid,
  .collection-grid,
  .product-grid,
  .experience-grid,
  .footer-grid,
  .limited-specs,
  .visual-meta,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .visual-frame,
  .craft-visual {
    min-height: 360px;
  }

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

  .hero-product-image {
    min-height: 180px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .header-actions {
    justify-content: center;
  }

  .lang-switcher {
    width: 100%;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.25rem;
  }

  .lang-btn {
    min-width: 40px;
    height: 34px;
    font-size: 0.68rem;
    padding: 0 0.65rem;
    letter-spacing: 0.14em;
  }

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

  .cart-button {
    min-height: 40px;
  }

  .cart-button__count {
    min-width: 22px;
    height: 22px;
    font-size: 0.72rem;
  }
}


.hero-product-image {
  position: relative;
}

.hero-emblem-badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.45));
  opacity: 0.96;
  pointer-events: none;
}

.craft-note {
  display: grid;
  gap: 0.9rem;
}

.craft-emblem-mark {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 0.25rem;
}

.craft-emblem-mark img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}

.craft-emblem-mark p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

.product-page-photo {
  position: relative;
}

.product-photo-emblem {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.42));
  opacity: 0.95;
  pointer-events: none;
  z-index: 2;
}

.product-emblem-note {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  margin: 0.35rem 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
}

.product-emblem-note img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}

.product-emblem-note strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.product-emblem-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .hero-emblem-badge {
    width: 48px;
    height: 48px;
  }

  .product-photo-emblem {
    width: 62px;
    height: 62px;
    top: 0.75rem;
    right: 0.75rem;
  }

  .product-emblem-note {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .craft-emblem-mark {
    align-items: flex-start;
  }
}

.hero-emblem {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-start;
}

.hero-emblem img {
  width: 180px;
  max-width: 60%;
  opacity: 0.65;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.45));
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero-emblem img:hover {
  transform: scale(1.05);
  opacity: 1;
}

.brand {
  min-width: 0;
}

.brand div {
  min-width: 0;
}


/* Quantity stepper */
.quantity-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 62px;
  padding: 0.35rem;
  border-radius: 18px;
  border: 1px solid rgba(200,166,104,0.28);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)),
    rgba(8,8,8,0.72);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 16px 36px rgba(0,0,0,0.18);
}

.quantity-stepper__btn {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.quantity-stepper__input {
  flex: 1;
  min-width: 0;
  height: 48px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  text-align: center;
}

.quantity-stepper__input:focus {
  outline: none;
}

.quantity-stepper__input::-webkit-outer-spin-button,
.quantity-stepper__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-stepper__input[type=number] {
  -moz-appearance: textfield;
}

/* Related products */
.related-products-section {
  padding-top: 0;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.related-product-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  padding: 0.9rem;
  align-items: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.related-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200,166,104,0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.related-product-card__image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #111;
}

.related-product-card__body {
  display: grid;
  gap: 0.55rem;
}

.related-product-card__price {
  color: var(--gold);
  font-family: 'Cinzel', serif;
}

@media (max-width: 900px) {
  .related-products-grid {
    grid-template-columns: 1fr;
  }

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

  .related-product-card__image img {
    height: 180px;
  }
}


/* Refactor 1: shared product page styles */
@media (min-width: 1024px) {
  .product-page-grid.product-bow-layout {
    grid-template-columns: minmax(520px, 0.92fr) minmax(380px, 0.78fr);
    gap: 1.5rem;
    align-items: start;
  }
  .product-page-grid.product-bow-layout .product-page-photo img {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    background: #111;
  }
  .product-page-grid.product-bow-layout .product-page-copy { gap: 0.85rem; }
  .product-page-grid.product-bow-layout .order-card { margin-top: 0.2rem; }
}
.product-zoom-trigger { cursor: zoom-in; position: relative; }
.product-zoom-trigger::before {
  content: "Nagyítás";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.58);
  border: 1px solid rgba(255,255,255,0.14);
  color: #f3ede2;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(4px);
  transition: 180ms ease;
  pointer-events: none;
}
.product-zoom-trigger:hover::before { opacity: 1; transform: translateY(0); }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.88); display: none; align-items: center; justify-content: center; padding: 2rem; z-index: 120; }
.lightbox.open { display: flex; }
.lightbox-dialog { position: relative; max-width: min(1400px, 94vw); max-height: 90vh; width: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 18px; }
.lightbox img { max-width: 100%; max-height: 90vh; width: auto; height: auto; object-fit: contain; border-radius: 18px; box-shadow: 0 24px 80px rgba(0,0,0,0.45); background: #0f0f0f; cursor: crosshair; touch-action: none; user-select: none; transform: scale(1); transform-origin: 50% 50%; transition: transform 160ms ease-out; will-change: transform, transform-origin; }
.lightbox img.is-zooming { transition: none; }
.lightbox-close { position: absolute; top: 0.75rem; right: 0.75rem; width: 44px; height: 44px; border: 0; border-radius: 999px; background: rgba(0,0,0,0.52); color: #fff; font-size: 1.5rem; cursor: pointer; line-height: 1; z-index: 2; }
.order-form-grid { display: grid; gap: 1rem; }
.order-form-grid label { display: grid; gap: 0.55rem; }
.order-form-grid span { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
@media (max-width: 1023px) { .product-zoom-trigger::before { opacity: 1; transform: none; } }

/* Catalog DB / multi-image product gallery */
.catalog-heading { text-align: left; margin-bottom: 2rem; }
.catalog-products-grid .related-product-card__body p { color: var(--muted); margin: .45rem 0 .75rem; line-height: 1.55; }
.product-gallery { padding: .75rem; }
.product-thumbs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .65rem; margin-top: .75rem; }
.product-thumb { border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); border-radius: 14px; padding: .25rem; cursor: pointer; aspect-ratio: 1 / 1; overflow: hidden; }
.product-thumb.active, .product-thumb:hover { border-color: rgba(216,178,106,.85); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; display: block; }
.category-grid-home { align-content: center; }
@media (max-width: 760px) { .product-thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* v11: fullscreen gallery controls */
body.lightbox-is-open {
  overflow: hidden;
}

.lightbox-counter {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 125;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.56);
  color: #f3ede2;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  pointer-events: none;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 125;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(0,0,0,0.56);
  color: #f3ede2;
  font-size: 2.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.lightbox-nav:hover {
  background: rgba(200,166,104,0.26);
  border-color: rgba(200,166,104,0.45);
}

.lightbox-nav--prev { left: 1.2rem; }
.lightbox-nav--next { right: 1.2rem; }

.lightbox-nav[hidden],
.lightbox-counter:empty {
  display: none;
}

@media (max-width: 760px) {
  .lightbox {
    padding: 1rem;
  }

  .lightbox-nav {
    width: 46px;
    height: 46px;
    font-size: 2rem;
    top: auto;
    bottom: 1.1rem;
    transform: none;
  }

  .lightbox-nav--prev { left: 1rem; }
  .lightbox-nav--next { right: 1rem; }

  .lightbox-counter {
    bottom: 1.35rem;
  }
}


/* Vásárlási és jogi tájékoztató oldalak */
.legal-content{white-space:normal;line-height:1.8;color:rgba(255,255,255,.86);overflow-wrap:anywhere}
.legal-draft-warning{margin:18px 0 24px;padding:14px 16px;border:1px solid rgba(214,174,103,.55);border-radius:14px;background:rgba(214,174,103,.10);color:#f2d7a4;font-weight:700;line-height:1.55}
@media(max-width:760px){.legal-page{padding-top:96px!important}.legal-page .panel{padding:20px!important;border-radius:18px!important}.legal-page h1{font-size:clamp(28px,9vw,42px)}}

/* Legal document system */
.legal-hero{margin-bottom:24px;padding:30px;border:1px solid rgba(214,174,103,.28);border-radius:24px;background:linear-gradient(135deg,rgba(214,174,103,.09),rgba(255,255,255,.025))}.legal-hero h1{margin:.35rem 0 1rem}.legal-meta{display:flex;gap:12px;flex-wrap:wrap;align-items:center;font-size:.86rem;opacity:.82}.legal-meta span,.legal-meta button{border:1px solid rgba(214,174,103,.25);border-radius:999px;padding:7px 11px;background:rgba(255,255,255,.03);color:inherit}.legal-meta button{cursor:pointer}.legal-layout{display:grid;grid-template-columns:280px minmax(0,1fr);gap:22px;align-items:start}.legal-toc{position:sticky;top:100px;padding:20px;border:1px solid rgba(214,174,103,.22);border-radius:20px;background:rgba(255,255,255,.025)}.legal-toc nav{display:grid;gap:7px;margin-top:12px}.legal-toc a{font-size:.86rem;line-height:1.35;text-decoration:none;opacity:.78}.legal-toc a:hover{opacity:1;color:#d6ae67}.legal-rich{padding:30px;border:1px solid rgba(214,174,103,.22);border-radius:24px;background:rgba(255,255,255,.025);line-height:1.78}.legal-rich h2{scroll-margin-top:110px;margin:2.1rem 0 .75rem;color:#dfbc78;font-size:1.35rem}.legal-rich h2:first-child{margin-top:0}.legal-rich h3{margin:1.5rem 0 .65rem}.legal-rich p{margin:.65rem 0}.legal-rich ul,.legal-rich ol{padding-left:1.35rem}.legal-missing{display:inline-block;min-width:34px;border-bottom:1px dashed #d6ae67;color:#d6ae67}.legal-draft-warning{padding:18px;border:1px solid rgba(220,170,70,.45);border-radius:18px;background:rgba(220,170,70,.1)}
@media(max-width:900px){.legal-layout{grid-template-columns:1fr}.legal-toc{position:static}.legal-page{padding-left:14px!important;padding-right:14px!important}.legal-rich,.legal-hero{padding:20px}}
@media print{.site-header,.site-footer,.legal-toc,.legal-meta button{display:none!important}.legal-page{padding:0!important;max-width:none!important}.legal-layout{display:block}.legal-rich,.legal-hero{border:0;background:#fff;color:#000;padding:0}.legal-rich h2{color:#000;break-after:avoid}.legal-meta{color:#000}}


/* HTML165 – jól olvasható gombok a teljes vásárlási folyamatban */
.cart-summary__actions .btn,
.cart-empty .btn,
.co-actions .btn,
.co-success .btn,
.order-actions .btn {
  min-width: 170px;
  white-space: normal;
  overflow-wrap: anywhere;
}

.co-actions button.btn-secondary,
.cart-summary__actions button.btn-secondary,
.cart-summary__actions a.btn-secondary {
  color: #fff8ea !important;
}

.co-actions button.btn-primary,
.cart-summary__actions button.btn-primary,
.cart-empty a.btn-primary,
.co-success a.btn-primary {
  color: #120d08 !important;
}

.cart-remove {
  min-height: 40px;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(221, 185, 116, 0.42) !important;
  border-radius: 999px;
  background: rgba(200, 166, 104, 0.1) !important;
  color: #f3d397 !important;
  font-weight: 700 !important;
}

.cart-remove:hover {
  background: rgba(200, 166, 104, 0.2) !important;
  color: #ffffff !important;
}

.cart-qty-control button {
  color: #ffffff !important;
  font-weight: 800 !important;
}

@media (max-width: 640px) {
  .co-actions {
    display: grid !important;
    grid-template-columns: 1fr;
  }
  .co-actions .btn,
  .cart-summary__actions .btn,
  .cart-empty .btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* v20260901: letisztult kategória-termékkártyák
   A teljes leírás az adatbázisban változatlan marad, a kategóriaoldalon csak
   három sor látszik belőle. A konkrét termékoldal megjelenését ez nem érinti. */
.catalog-products-grid {
  align-items: stretch;
}

.catalog-products-grid .catalog-product-card {
  grid-template-columns: minmax(170px, 36%) 1fr;
  min-height: 248px;
  padding: 1rem;
  gap: 1.15rem;
  align-items: stretch;
  overflow: hidden;
}

.catalog-products-grid .catalog-product-card .related-product-card__image {
  min-width: 0;
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,.34);
  border: 1px solid rgba(255,255,255,.07);
}

.catalog-products-grid .catalog-product-card .related-product-card__image img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: #080808;
}

.catalog-products-grid .catalog-product-card .related-product-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: .15rem .1rem;
}

.catalog-product-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.25;
  min-height: 2.5em;
  font-size: 1.02rem;
}

.catalog-products-grid .catalog-product-card__lead {
  color: var(--muted);
  margin: .2rem 0 .35rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.65em;
}

.catalog-product-card__footer {
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: .9rem;
}

.catalog-product-card__priceblock {
  min-width: 0;
}

.catalog-product-card__priceblock .vat-included-note {
  font-size: .76rem;
  line-height: 1.35;
}

.catalog-product-card__details {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .58rem .82rem;
  border: 1px solid rgba(216,178,106,.38);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(216,178,106,.07);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.catalog-product-card:hover .catalog-product-card__details {
  background: rgba(216,178,106,.15);
  border-color: rgba(216,178,106,.7);
  transform: translateX(2px);
}

@media (max-width: 900px) {
  .catalog-products-grid .catalog-product-card {
    grid-template-columns: minmax(145px, 34%) 1fr;
    min-height: 220px;
  }

  .catalog-products-grid .catalog-product-card .related-product-card__image,
  .catalog-products-grid .catalog-product-card .related-product-card__image img {
    min-height: 185px;
  }
}

@media (max-width: 620px) {
  .catalog-products-grid .catalog-product-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .catalog-products-grid .catalog-product-card .related-product-card__image {
    min-height: 210px;
    max-height: 260px;
  }

  .catalog-products-grid .catalog-product-card .related-product-card__image img {
    min-height: 210px;
    max-height: 260px;
  }

  .catalog-product-card__footer {
    align-items: center;
  }
}

/* v20260901b: kategóriaoldali termékképek egységes, esztétikus négyzetben */
.catalog-products-grid .catalog-product-card {
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 220px;
  align-items: center;
}

.catalog-products-grid .catalog-product-card .related-product-card__image {
  width: 190px;
  height: 190px;
  min-width: 190px;
  min-height: 190px;
  max-width: 190px;
  max-height: 190px;
  aspect-ratio: 1 / 1;
  align-self: center;
  justify-self: center;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.045), rgba(0,0,0,.12) 70%),
    #080808;
  border: 1px solid rgba(216,178,106,.16);
}

.catalog-products-grid .catalog-product-card .related-product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  box-sizing: border-box;
  border: 0;
  border-radius: 0;
  background: transparent;
}

@media (max-width: 900px) {
  .catalog-products-grid .catalog-product-card {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .catalog-products-grid .catalog-product-card .related-product-card__image {
    width: 170px;
    height: 170px;
    min-width: 170px;
    min-height: 170px;
    max-width: 170px;
    max-height: 170px;
  }

  .catalog-products-grid .catalog-product-card .related-product-card__image img {
    min-height: 0;
    max-height: none;
  }
}

@media (max-width: 620px) {
  .catalog-products-grid .catalog-product-card {
    grid-template-columns: 1fr;
  }

  .catalog-products-grid .catalog-product-card .related-product-card__image {
    width: min(100%, 300px);
    height: auto;
    min-width: 0;
    min-height: 0;
    max-width: 300px;
    max-height: none;
    aspect-ratio: 1 / 1;
  }

  .catalog-products-grid .catalog-product-card .related-product-card__image img {
    min-height: 0;
    max-height: none;
  }
}

/* =========================================================
   v20260901c – teljes publikus mobilnézet finomhangolása
   Cél: valódi mobil UI, nem az asztali nézet összenyomása.
   ========================================================= */

@media (max-width: 760px) {
  html {
    scroll-padding-top: 118px;
  }

  body {
    overflow-x: hidden;
    background:
      radial-gradient(circle at 50% 0, rgba(200,166,104,.10), transparent 22rem),
      linear-gradient(180deg,#090807 0%,#0d0c0b 48%,#090909 100%);
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  /* Fejléc */
  .site-header {
    background: rgba(8,8,8,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .nav-wrap {
    min-height: 0;
    padding: 10px 0 9px;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 9px 10px;
    align-items: center;
  }

  .brand {
    gap: .65rem;
    min-width: 0;
  }

  .brand img {
    width: 46px;
    height: 46px;
    border-radius: 11px;
  }

  .brand strong {
    font-size: .86rem;
    line-height: 1.2;
  }

  .brand-kicker {
    font-size: .58rem;
    letter-spacing: .14em;
    line-height: 1.35;
  }

  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: rgba(255,255,255,.045);
  }

  .header-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    align-items: center;
    justify-content: stretch;
    gap: 8px;
    margin: 0;
  }

  .cart-button {
    min-height: 38px;
    padding: 0 .72rem;
    justify-content: center;
  }

  .cart-button__label {
    display: none;
  }

  .lang-switcher {
    width: 100%;
    min-width: 0;
    justify-content: stretch;
    gap: 3px;
    padding: 3px;
  }

  .lang-btn {
    flex: 1 1 0;
    min-width: 0;
    height: 34px;
    padding: 0 .35rem;
    font-size: .65rem;
    letter-spacing: .10em;
  }

  .site-nav {
    top: 105px;
    left: 14px;
    right: 14px;
    width: auto;
    gap: 0;
    padding: .55rem;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0,0,0,.55);
  }

  .site-nav a {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: .7rem .8rem;
    border-radius: 12px;
    border-bottom: 1px solid rgba(255,255,255,.055);
  }

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

  /* Általános tipográfia és térközök */
  .hero {
    padding: 1.65rem 0 2.6rem;
  }

  .section,
  .product-page-section {
    padding: 3rem 0;
  }

  .section-heading {
    margin-bottom: 1.35rem;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.55rem);
    line-height: .98;
    max-width: 100%;
  }

  h2 {
    font-size: clamp(1.75rem, 8.5vw, 2.6rem);
  }

  h3 {
    font-size: 1.22rem;
  }

  .lead,
  .section-heading p,
  .craft-copy > p,
  .product-body p,
  .product-page-copy p,
  .footer-grid p {
    line-height: 1.65;
  }

  .card-glass,
  .collection-card,
  .experience-card,
  .product-card,
  .limited-card,
  .cta-box {
    border-radius: 20px;
  }

  .btn {
    min-height: 50px;
    padding: .78rem 1rem;
  }

  .hero-actions,
  .limited-actions,
  .order-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .7rem;
  }

  .hero-actions .btn,
  .limited-actions .btn,
  .order-actions .btn {
    width: 100%;
  }

  /* Főoldal */
  .hero-grid,
  .craft-grid,
  .limited-grid,
  .testimonials-grid,
  .cta-box,
  .trust-grid,
  .collection-grid,
  .product-grid,
  .experience-grid,
  .footer-grid,
  .limited-specs,
  .visual-meta,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero-products {
    padding: .75rem;
  }

  .hero-products-grid {
    gap: .75rem;
  }

  .hero-product-card {
    grid-template-columns: 112px minmax(0,1fr);
    min-height: 128px;
    gap: .8rem;
    padding: .7rem;
    border-radius: 17px;
  }

  .hero-product-image {
    min-height: 110px;
    height: 110px;
    border-radius: 14px;
  }

  .hero-product-content {
    padding: .1rem 0;
    min-width: 0;
  }

  .hero-product-content h3 {
    font-size: 1rem;
    line-height: 1.25;
  }

  .hero-product-content p {
    font-size: .88rem;
    line-height: 1.45;
    margin: .35rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-product-topline {
    gap: .4rem;
    flex-wrap: wrap;
  }

  .visual-frame,
  .craft-visual {
    min-height: 320px;
  }

  .craft-note {
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
    padding: .9rem;
  }

  .craft-emblem-mark {
    gap: .7rem;
  }

  .craft-emblem-mark img {
    width: 46px;
    height: 46px;
  }

  .collection-card,
  .experience-card,
  .limited-card,
  .cta-box {
    padding: 1.15rem;
    min-height: 0;
  }

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

  .trust-grid > div {
    padding: .85rem;
  }

  /* Kategóriaoldal – kompakt prémium kártyák */
  .catalog-heading {
    margin-bottom: 1.2rem;
  }

  .catalog-products-grid {
    gap: .85rem;
  }

  .catalog-products-grid .catalog-product-card {
    grid-template-columns: 116px minmax(0,1fr) !important;
    min-height: 154px !important;
    padding: .72rem !important;
    gap: .82rem !important;
    align-items: center !important;
    border-radius: 19px;
  }

  .catalog-products-grid .catalog-product-card .related-product-card__image {
    width: 116px !important;
    height: 116px !important;
    min-width: 116px !important;
    min-height: 116px !important;
    max-width: 116px !important;
    max-height: 116px !important;
    border-radius: 15px;
  }

  .catalog-products-grid .catalog-product-card .related-product-card__image img {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 7px !important;
    object-fit: contain !important;
  }

  .catalog-products-grid .catalog-product-card .related-product-card__body {
    gap: .38rem;
    padding: 0;
  }

  .catalog-product-card__title {
    font-size: .94rem;
    line-height: 1.25;
    min-height: 0;
    -webkit-line-clamp: 2;
  }

  .catalog-products-grid .catalog-product-card__lead {
    margin: 0;
    font-size: .82rem;
    line-height: 1.42;
    min-height: 0;
    -webkit-line-clamp: 2;
  }

  .catalog-product-card__footer {
    margin-top: .15rem;
    padding-top: .5rem;
    gap: .45rem;
    align-items: center;
  }

  .catalog-product-card__priceblock .related-product-card__price {
    font-size: .9rem;
  }

  .catalog-product-card__priceblock .vat-included-note {
    font-size: .66rem;
    margin-top: 3px !important;
  }

  .catalog-product-card__details {
    padding: .48rem .58rem;
    font-size: .7rem;
  }

  /* Termékoldal és galéria */
  .product-page-grid,
  .product-page-grid.product-bow-layout {
    grid-template-columns: 1fr !important;
    gap: 1.15rem;
  }

  .product-gallery {
    padding: .55rem;
    border-radius: 19px;
  }

  .product-page-photo {
    border-radius: 15px;
    overflow: hidden;
  }

  .product-page-photo img,
  .product-page-grid.product-bow-layout .product-page-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-height: 68vh;
    object-fit: contain;
  }

  .product-thumbs {
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: .45rem;
    margin-top: .55rem;
  }

  .product-thumb {
    border-radius: 11px;
    padding: 2px;
  }

  .product-thumb img {
    border-radius: 8px;
    object-fit: contain;
    background: #090909;
  }

  .product-page-copy {
    gap: .72rem;
    padding: 0;
  }

  .product-page-copy h1 {
    font-size: clamp(1.9rem, 9.5vw, 2.8rem);
    line-height: 1.04;
  }

  .price-line {
    font-size: 1.45rem;
  }

  .feature-bullets {
    gap: .55rem;
  }

  .feature-bullets li {
    padding: .75rem .82rem;
    border-radius: 14px;
  }

  .order-card,
  .price-breakdown {
    padding: 1rem;
    border-radius: 18px;
  }

  .quantity-stepper {
    min-height: 56px;
  }

  .quantity-stepper__btn,
  .quantity-stepper__input {
    height: 44px;
  }

  .related-products-grid {
    grid-template-columns: 1fr;
  }

  .related-product-card:not(.catalog-product-card) {
    grid-template-columns: 108px minmax(0,1fr);
    gap: .8rem;
    padding: .7rem;
  }

  .related-product-card:not(.catalog-product-card) .related-product-card__image img {
    width: 108px;
    height: 108px;
    object-fit: contain;
    background: #090909;
  }

  /* Lightbox – telefonon kezelhető vezérlők */
  .lightbox {
    padding: .5rem;
  }

  .lightbox-dialog {
    max-width: 100%;
    max-height: calc(100vh - 82px);
    border-radius: 14px;
  }

  .lightbox img {
    max-height: calc(100vh - 82px);
    border-radius: 14px;
  }

  .lightbox-close {
    top: .55rem;
    right: .55rem;
    width: 46px;
    height: 46px;
    background: rgba(0,0,0,.76);
  }

  /* Kosár */
  .cart-page-section {
    padding-top: 2.2rem;
  }

  .cart-list,
  .cart-summary,
  .cart-empty {
    padding: 1rem !important;
    border-radius: 19px;
  }

  .cart-summary__row {
    align-items: baseline;
  }

  .cart-summary__actions {
    gap: .65rem !important;
  }

  /* Checkout */
  .co-section {
    padding: 2.2rem 0 3.5rem !important;
  }

  .co-grid {
    grid-template-columns: 1fr !important;
    gap: .9rem !important;
  }

  .co-card {
    padding: 1rem !important;
    border-radius: 19px !important;
  }

  .co-fields {
    grid-template-columns: 1fr !important;
    gap: .7rem !important;
  }

  .co-fields .wide {
    grid-column: auto !important;
  }

  .co-card input,
  .co-card select,
  .co-card textarea {
    min-height: 48px !important;
    font-size: 16px !important; /* iOS ne zoomoljon mezőfókusznál */
  }

  .co-option {
    grid-template-columns: auto minmax(0,1fr) !important;
    gap: .65rem !important;
    padding: .82rem !important;
  }

  .co-price {
    grid-column: 2 !important;
  }

  .co-item {
    grid-template-columns: 54px minmax(0,1fr) auto !important;
    gap: .55rem !important;
  }

  .co-item img {
    width: 54px !important;
    height: 54px !important;
  }

  .co-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: .65rem !important;
  }

  .terms-modal {
    padding: .5rem !important;
  }

  .terms-dialog {
    height: calc(100dvh - 1rem) !important;
    border-radius: 17px !important;
  }

  .terms-dialog-head,
  .terms-dialog-foot {
    padding: .8rem !important;
  }

  .terms-scroll {
    padding: 1rem !important;
  }

  .terms-progress {
    min-width: 0 !important;
    width: 100%;
  }

  /* Kapcsolat */
  .contact-page-wrap {
    padding: 2.4rem 0 3.5rem !important;
  }

  .contact-card {
    padding: 1.1rem !important;
    border-radius: 20px !important;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: .8rem !important;
  }

  .contact-form {
    gap: .9rem !important;
    margin-top: 1rem !important;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 13px 14px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
  }

  .contact-form textarea {
    min-height: 145px !important;
  }

  .contact-form .btn {
    width: 100%;
  }

  /* Jogi oldalak */
  .legal-page {
    padding-top: 2.4rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .legal-hero,
  .legal-rich,
  .legal-toc {
    padding: 1rem !important;
    border-radius: 18px !important;
  }

  .legal-layout {
    gap: .85rem !important;
  }

  .legal-rich {
    font-size: .95rem;
    line-height: 1.68;
  }

  .legal-rich h2 {
    font-size: 1.2rem;
    margin-top: 1.65rem;
  }

  /* Lábléc */
  .footer-grid {
    padding: 1.8rem 0 1.25rem;
    gap: 1.35rem;
  }

  .footer-grid div {
    gap: .5rem;
  }

  .footer-bottom {
    align-items: flex-start;
    padding-bottom: 1.25rem;
    font-size: .84rem;
    line-height: 1.5;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

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

  .brand-kicker {
    display: none;
  }

  .catalog-products-grid .catalog-product-card {
    grid-template-columns: 104px minmax(0,1fr) !important;
    min-height: 142px !important;
    gap: .7rem !important;
  }

  .catalog-products-grid .catalog-product-card .related-product-card__image {
    width: 104px !important;
    height: 104px !important;
    min-width: 104px !important;
    min-height: 104px !important;
    max-width: 104px !important;
    max-height: 104px !important;
  }

  .catalog-product-card__details {
    padding: .44rem .5rem;
  }

  .catalog-product-card__details > span {
    display: none;
  }

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

  .hero-product-card {
    grid-template-columns: 96px minmax(0,1fr);
  }

  .hero-product-image {
    height: 96px;
    min-height: 96px;
  }

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

/* =========================================================
   v20260901d – HU / COM egységes mobil UI + stabil képkeretek
   A domain csak az elérhető nyelvek számában térhet el.
   ========================================================= */
@media (max-width: 760px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    width: 100%;
    background: rgba(7,7,7,.97);
    border-bottom: 1px solid rgba(216,178,106,.12);
    box-shadow: 0 8px 30px rgba(0,0,0,.30);
  }

  .nav-wrap {
    width: min(100% - 24px, var(--container));
    padding: 10px 0 10px;
    grid-template-columns: minmax(0,1fr) 48px;
    gap: 10px;
  }

  .brand { overflow: hidden; }

  .brand img {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    padding: 3px;
  }

  .brand strong {
    font-size: clamp(.86rem, 4vw, 1.05rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-kicker {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    font-size: 1.45rem;
    border-radius: 15px;
  }

  .header-actions {
    grid-template-columns: 136px minmax(0,1fr);
    gap: 10px;
  }

  .cart-button {
    width: 136px;
    min-height: 46px;
    border-radius: 999px;
    padding: 0 .7rem;
  }

  .cart-button__icon { font-size: 1rem; }

  .cart-button__count {
    min-width: 34px;
    height: 34px;
  }

  .lang-switcher {
    min-height: 46px;
    border-radius: 999px;
    padding: 4px;
    overflow: hidden;
  }

  .lang-btn {
    height: 38px;
    border-radius: 999px;
    font-size: .72rem;
    letter-spacing: .12em;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-grid {
    gap: 1.8rem;
  }

  .hero-copy {
    padding-top: .15rem;
    overflow: hidden;
  }

  .hero-copy h1 { margin-top: .5rem; }

  .hero-emblem {
    margin-top: 1.25rem;
    justify-content: center;
  }

  .hero-emblem img {
    width: min(230px, 58vw);
    max-width: none;
    height: auto;
  }

  .hero-products {
    width: 100%;
    padding: 1rem;
    overflow: hidden;
    border-radius: 24px;
  }

  .hero-products-grid {
    width: 100%;
    margin-top: .9rem;
  }

  .hero-product-card.category-card {
    width: 100%;
    min-height: 146px;
    grid-template-columns: 120px minmax(0,1fr);
    gap: .85rem;
    padding: .75rem;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
  }

  .hero-product-card.category-card .hero-product-image {
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
    max-width: 120px;
    max-height: 120px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 17px;
    background:
      radial-gradient(circle at 50% 45%, rgba(255,255,255,.04), transparent 68%),
      #070707;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-product-card.category-card .hero-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 7px;
    box-sizing: border-box;
  }

  .hero-product-card.category-card .hero-product-content {
    min-width: 0;
    align-content: center;
  }

  .hero-product-card.category-card .hero-product-topline span {
    font-size: .67rem;
    line-height: 1.3;
  }

  .hero-product-card.category-card h3 {
    font-size: 1.05rem;
    line-height: 1.22;
  }

  .hero-product-card.category-card p {
    font-size: .84rem;
    line-height: 1.45;
    margin: .25rem 0 0;
    -webkit-line-clamp: 2;
  }

  .craft-visual {
    min-height: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 22px;
  }

  .craft-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .section,
  .product-page-section {
    padding: 2.6rem 0;
  }

  main { min-width: 0; }
}

@media (max-width: 430px) {
  .nav-wrap {
    width: min(100% - 20px, var(--container));
  }

  .brand img {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

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

  .cart-button { width: 126px; }

  .hero-product-card.category-card {
    grid-template-columns: 106px minmax(0,1fr);
    min-height: 132px;
    gap: .7rem;
    padding: .65rem;
  }

  .hero-product-card.category-card .hero-product-image {
    width: 106px;
    height: 106px;
    min-width: 106px;
    min-height: 106px;
    max-width: 106px;
    max-height: 106px;
  }

  .hero-product-card.category-card h3 { font-size: .98rem; }

  .hero-product-card.category-card p { font-size: .79rem; }
}


/* v20260901 – professzionális számlázási adatblokk */
.co-billing-box{margin-top:1rem;padding:1rem;border:1px solid rgba(216,178,106,.18);border-radius:18px;background:rgba(255,255,255,.025)}
.co-billing-box h3{margin:0 0 .9rem}
.co-checkline{display:flex!important;flex-direction:row!important;align-items:center;gap:.65rem;padding:.7rem .8rem;border:1px solid rgba(255,255,255,.08);border-radius:14px;background:rgba(0,0,0,.14)}
.co-checkline input{width:18px!important;height:18px!important;min-height:18px!important;flex:0 0 18px}
.co-checkline span{margin:0}
#companyBillingFields,#differentBillingFields{margin-top:.8rem}


/* v20260910 - hivatalos Barion Smart Payment Banner (EU) */
.barion-smart-banner{display:block;width:100%;height:auto;object-fit:contain}
.barion-checkout-trust{display:flex;align-items:center;justify-content:flex-start;min-height:70px;padding:8px 0 12px;margin:.15rem 0 .35rem}
.barion-smart-banner--checkout{width:min(567px,100%);max-height:108px}
.barion-footer-trust{display:flex;align-items:center;justify-content:space-between;gap:1.25rem;padding-top:1.35rem;padding-bottom:1.35rem;border-top:1px solid rgba(255,255,255,.08)}
.barion-trust-label{color:var(--muted);font-size:.8rem;letter-spacing:.08em;text-transform:uppercase;line-height:1.45}
.barion-smart-banner--footer{width:min(430px,52vw);max-height:82px;flex:0 1 auto}
@media (max-width:760px){
  .barion-footer-trust{align-items:flex-start;flex-direction:column;gap:.7rem;padding-top:1rem;padding-bottom:1rem}
  .barion-smart-banner--footer{width:min(100%,420px);max-height:none}
  .barion-checkout-trust{min-height:0;padding:8px 0 10px}
}
@media (max-width:430px){
  .barion-smart-banner--checkout,.barion-smart-banner--footer{width:100%}
}

/* v20260910 – prémium publikus lábléc, kizárólag vizuális réteg */
.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(216,178,106,.20);
  background:
    radial-gradient(circle at 14% 8%, rgba(200,166,104,.095), transparent 28%),
    radial-gradient(circle at 88% 28%, rgba(200,166,104,.055), transparent 24%),
    linear-gradient(180deg, #12100e 0%, #0c0b0a 46%, #090908 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(232,196,126,.08) 22%, rgba(232,196,126,.62) 50%, rgba(232,196,126,.08) 78%, transparent 95%);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -250px;
  bottom: -290px;
  border: 1px solid rgba(216,178,106,.055);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(216,178,106,.018), 0 0 0 94px rgba(216,178,106,.012);
  pointer-events: none;
}

.site-footer .footer-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(200px,1.28fr) minmax(145px,.82fr) minmax(145px,.82fr) minmax(210px,1.18fr) minmax(190px,1fr);
  gap: clamp(1.5rem, 3vw, 3.4rem);
  align-items: start;
  padding: clamp(3.2rem, 5vw, 5.1rem) 0 2.6rem;
}

.site-footer .footer-grid > div {
  position: relative;
  align-content: start;
  gap: .72rem;
  min-width: 0;
}

.site-footer .footer-grid > div:not(:first-child)::before {
  content: "";
  position: absolute;
  left: clamp(-1.75rem, -1.5vw, -.9rem);
  top: .15rem;
  bottom: .15rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(216,178,106,.20), rgba(255,255,255,.035) 55%, transparent);
}

.site-footer .footer-grid > div:first-child {
  padding-right: clamp(.6rem, 1.2vw, 1.5rem);
}

.site-footer .footer-grid > div:first-child > strong {
  display: block;
  margin-bottom: .45rem;
  color: #fff8eb;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.22rem, 1.6vw, 1.62rem);
  font-weight: 600;
  letter-spacing: .035em;
  line-height: 1.25;
}

.site-footer .footer-grid > div:first-child > p {
  max-width: 31ch;
  margin: 0;
  color: rgba(236,229,216,.66);
  font-size: .93rem;
  line-height: 1.78;
}

.site-footer .footer-grid > div > span:first-child {
  display: block;
  margin-bottom: .72rem;
  color: #d9b87b;
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1.45;
}

.site-footer .footer-grid > div > a {
  position: relative;
  width: fit-content;
  max-width: 100%;
  color: rgba(242,236,226,.72);
  font-size: .91rem;
  line-height: 1.5;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer .footer-grid > div > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg, #d8b67a, transparent);
  transition: right 180ms ease;
}

.site-footer .footer-grid > div > a:hover {
  color: #fff9ef;
  transform: translateX(3px);
}

.site-footer .footer-grid > div > a:hover::after { right: 0; }

.site-footer .footer-grid > div > a:focus-visible {
  outline: 2px solid rgba(216,182,122,.55);
  outline-offset: 4px;
  border-radius: 3px;
}

.site-footer .footer-grid p {
  margin: 0 0 .25rem;
  color: rgba(236,229,216,.64);
  font-size: .89rem;
  line-height: 1.65;
}

.site-footer .footer-grid p strong {
  color: rgba(232,196,126,.86);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer .footer-grid p a {
  color: rgba(247,241,231,.82);
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer .footer-grid p a:hover { color: #e6c589; }

.site-footer .footer-grid > div:nth-child(4) > strong {
  display: block;
  margin: -.12rem 0 .4rem;
  color: rgba(255,249,239,.88);
  font-family: 'Cinzel', serif;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .025em;
}

.site-footer .footer-grid > div:nth-child(5) > span {
  color: rgba(218,189,135,.78);
  font-size: .69rem;
  line-height: 1.55;
}

.site-footer .footer-grid > div:nth-child(5) > a {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: .22rem .58rem;
  border: 1px solid rgba(216,178,106,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.018);
  font-size: .78rem;
}

.site-footer .footer-grid > div:nth-child(5) > a::after { display: none; }
.site-footer .footer-grid > div:nth-child(5) > a:hover {
  border-color: rgba(216,178,106,.34);
  background: rgba(216,178,106,.065);
}

.site-footer .barion-footer-trust {
  position: relative;
  z-index: 1;
  min-height: 112px;
  margin-top: .2rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(216,178,106,.12);
  border-bottom: 1px solid rgba(255,255,255,.045);
}

.site-footer .barion-trust-label {
  max-width: 30ch;
  color: rgba(232,223,208,.56);
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: .14em;
  line-height: 1.6;
}

.site-footer .barion-smart-banner--footer {
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.22));
}

.site-footer .footer-bottom {
  position: relative;
  z-index: 1;
  justify-content: center;
  border-top: 0;
  padding: 1.25rem 0 1.65rem;
  color: rgba(220,213,201,.44);
  font-size: .78rem;
  letter-spacing: .035em;
  text-align: center;
}

@media (max-width: 1180px) {
  .site-footer .footer-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 2.3rem 2rem;
  }
  .site-footer .footer-grid > div:not(:first-child)::before { display: none; }
  .site-footer .footer-grid > div:nth-child(4),
  .site-footer .footer-grid > div:nth-child(5) {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(216,178,106,.10);
  }
}

@media (max-width: 760px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 2.5rem 0 1.25rem;
  }
  .site-footer .footer-grid > div {
    padding: 1.15rem 0 1.25rem;
    border-top: 1px solid rgba(216,178,106,.09);
  }
  .site-footer .footer-grid > div:first-child {
    padding: 0 0 1.6rem;
    border-top: 0;
  }
  .site-footer .footer-grid > div:nth-child(4),
  .site-footer .footer-grid > div:nth-child(5) { padding-top: 1.15rem; }
  .site-footer .footer-grid > div:first-child > p { max-width: 42ch; }
  .site-footer .footer-grid > div > span:first-child { margin-bottom: .6rem; }
  .site-footer .barion-footer-trust {
    min-height: 0;
    margin-top: 0;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .site-footer .barion-trust-label { max-width: none; }
  .site-footer .footer-bottom {
    align-items: center;
    padding: 1.1rem 0 1.35rem;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .site-footer .footer-grid { padding-top: 2rem; }
  .site-footer .footer-grid > div:first-child > strong { font-size: 1.12rem; }
  .site-footer .footer-grid > div > a { font-size: .88rem; }
  .site-footer .footer-bottom { font-size: .74rem; }
}
