: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;
  }
}
