/* Matras.ge — LUX VIP animated experience */
:root {
  --bg: #0b0a09;
  --bg-2: #12100e;
  --bg-3: #1a1714;
  --surface: #161310;
  --gold: #c9a962;
  --gold-2: #e8d5a3;
  --gold-3: #8a7340;
  --gold-soft: rgba(201, 169, 98, 0.14);
  --ink: #f4efe6;
  --ink-2: #cfc6b6;
  --muted: #9a9080;
  --line: rgba(201, 169, 98, 0.22);
  --danger: #d4a0a0;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --font: "Noto Sans Georgian", "Outfit", system-ui, sans-serif;
  --display: "Cormorant Garamond", "Noto Serif Georgian", Georgia, serif;
  --max: 1200px;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-tap-highlight-color: rgba(201, 169, 98, 0.15);
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 40% at 15% 10%, rgba(201, 169, 98, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 35% at 85% 20%, rgba(232, 213, 163, 0.05), transparent 50%),
    linear-gradient(180deg, #0b0a09 0%, #100e0c 50%, #0b0a09 100%);
}

body > * {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold-2);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--gold);
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: min(100% - 2.2rem, var(--max));
  margin-inline: auto;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Google Material Symbols / Icons */
.material-symbols-outlined,
.material-icons {
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  font-size: 1.35rem;
  line-height: 1;
  user-select: none;
}

.ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  vertical-align: middle;
}

.ico-brand {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn .ico,
.btn .material-symbols-outlined,
.btn .ico-brand {
  margin-right: 0.35rem;
}

.btn.btn--wa,
.btn.btn--viber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: var(--radius-sm);
  border: 0;
  font-weight: 600;
}

.btn.btn--wa {
  background: #25d366;
  color: #fff;
}

.btn.btn--wa:hover {
  color: #fff;
  filter: brightness(1.06);
}

.btn.btn--viber {
  background: #7360f2;
  color: #fff;
}

.btn.btn--viber:hover {
  color: #fff;
  filter: brightness(1.06);
}

/* sticky mobile call bar */
.mobile-bar {
  display: none;
}

/* ——— Loader ——— */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #070605;
  display: grid;
  place-items: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
}

.loader__mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--gold);
  animation: pulseGold 1.4s ease-in-out infinite;
}

.loader__text {
  font-family: var(--display);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gold-2);
}

.loader__bar {
  width: 140px;
  height: 1px;
  margin: 1rem auto 0;
  background: rgba(201, 169, 98, 0.2);
  overflow: hidden;
}

.loader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loadSlide 1.1s ease-in-out infinite;
}

@keyframes loadSlide {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(280%);
  }
}

@keyframes pulseGold {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.35);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(201, 169, 98, 0);
  }
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}
.reveal-delay-4 {
  transition-delay: 0.32s;
}

/* ——— Topbar ——— */
.topbar {
  background: rgba(8, 7, 6, 0.92);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 0;
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.topbar a {
  color: var(--ink-2);
}

.topbar a:hover {
  color: var(--gold);
}

.topbar__right {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ——— Header ——— */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 10, 9, 0.86);
  /* no backdrop-filter on .header — it traps position:fixed mobile nav inside the header box */
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
  overflow: visible;
}

.header.is-scrolled {
  background: rgba(11, 10, 9, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.header .container {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
}

.logo:hover {
  color: var(--ink);
  text-decoration: none;
}

.logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  background: radial-gradient(circle at 30% 30%, rgba(232, 213, 163, 0.25), transparent 55%);
  box-shadow: 0 0 24px rgba(201, 169, 98, 0.18);
  animation: pulseGold 3.5s ease-in-out infinite;
}

.logo__text {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo__text span {
  color: var(--gold);
}

.nav {
  display: flex;
  gap: 0.2rem;
  margin-left: auto;
  align-items: center;
}

.nav a {
  color: var(--ink-2);
  text-decoration: none;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: 0.25s var(--ease);
}

.nav a:hover,
.nav a.is-active {
  color: var(--gold-2);
  background: var(--gold-soft);
}

.nav__cta {
  background: linear-gradient(135deg, #e8d5a3, #c9a962 45%, #8a7340) !important;
  color: #1a140a !important;
  font-weight: 700 !important;
  margin-left: 0.4rem;
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.28);
}

.nav__cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  place-items: center;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  margin: 4px 0;
  transition: 0.3s;
}

/* ——— Marquee ——— */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(201, 169, 98, 0.05);
  padding: 0.7rem 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: marquee 28s linear infinite;
  font-family: var(--display);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--gold);
  white-space: nowrap;
}

.marquee__track span {
  opacity: 0.85;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ink);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
  filter: saturate(0.85) contrast(1.05);
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.14);
  }
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8, 7, 6, 0.92) 0%, rgba(8, 7, 6, 0.72) 42%, rgba(8, 7, 6, 0.35) 100%),
    linear-gradient(180deg, rgba(8, 7, 6, 0.25) 0%, rgba(8, 7, 6, 0.85) 100%);
  z-index: 1;
}

.hero__glow {
  position: absolute;
  width: 45vw;
  max-width: 520px;
  aspect-ratio: 1;
  right: 5%;
  top: 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.22), transparent 65%);
  filter: blur(10px);
  z-index: 1;
  animation: floatY 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 4rem;
  max-width: 680px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.2s forwards;
}

.hero__eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.hero__brand {
  font-family: var(--display);
  font-size: clamp(3.4rem, 9vw, 6rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 1rem;
  background: linear-gradient(120deg, #fff8ea 10%, #e8d5a3 40%, #c9a962 70%, #fff1cf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  animation: fadeUp 0.95s var(--ease) 0.32s forwards;
}

.hero__title {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 400;
  color: var(--ink-2);
  margin-bottom: 0.85rem;
  max-width: 28ch;
  opacity: 0;
  animation: fadeUp 0.95s var(--ease) 0.44s forwards;
}

.hero__lead {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.95s var(--ease) 0.56s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: fadeUp 0.95s var(--ease) 0.68s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, #f0e2bc, #c9a962 45%, #9a7d3d);
  color: #1a140a;
  box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.btn--primary:hover {
  color: #1a140a;
  filter: brightness(1.06);
}

.btn--ghost {
  background: transparent;
  color: var(--gold-2);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-soft);
}

.btn--outline {
  background: transparent;
  color: var(--gold-2);
  border: 1px solid var(--line);
}

.btn--outline:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--gold);
}

.btn--block {
  width: 100%;
}

.btn--lg {
  padding: 0.95rem 1.7rem;
  font-size: 1rem;
}

/* ——— Sections ——— */
.section {
  padding: 4.5rem 0;
}

.section--dark {
  background: linear-gradient(180deg, transparent, rgba(22, 19, 16, 0.65), transparent);
}

.section__head {
  margin-bottom: 2rem;
}

.section__eyebrow {
  color: var(--gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.65rem;
}

.section__head h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.section__head p {
  color: var(--muted);
  max-width: 52ch;
}

/* ——— Trust ——— */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 3;
}

.trust__item {
  background: linear-gradient(160deg, rgba(26, 23, 20, 0.95), rgba(16, 14, 12, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.trust__item:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(201, 169, 98, 0.1);
}

.trust__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--display);
  font-size: 1.1rem;
  background: var(--gold-soft);
}

.trust__item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: var(--ink);
}

.trust__item span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ——— Filters ——— */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.chip {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-2);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s var(--ease);
}

.chip:hover,
.chip.is-active {
  background: linear-gradient(135deg, rgba(232, 213, 163, 0.18), rgba(201, 169, 98, 0.12));
  border-color: var(--gold);
  color: var(--gold-2);
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.12);
}

/* ——— Product grid ——— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: linear-gradient(180deg, #171410, #100e0c);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.45s var(--ease), border-color 0.35s, box-shadow 0.45s;
  opacity: 0;
  transform: translateY(28px);
  animation: cardIn 0.7s var(--ease) forwards;
}

.product-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

.product-card__link:hover {
  color: inherit;
  text-decoration: none;
}

.product-card:nth-child(1) {
  animation-delay: 0.05s;
}
.product-card:nth-child(2) {
  animation-delay: 0.1s;
}
.product-card:nth-child(3) {
  animation-delay: 0.15s;
}
.product-card:nth-child(4) {
  animation-delay: 0.2s;
}
.product-card:nth-child(5) {
  animation-delay: 0.25s;
}
.product-card:nth-child(6) {
  animation-delay: 0.3s;
}
.product-card:nth-child(7) {
  animation-delay: 0.35s;
}
.product-card:nth-child(8) {
  animation-delay: 0.4s;
}
.product-card:nth-child(9) {
  animation-delay: 0.45s;
}
.product-card:nth-child(10) {
  animation-delay: 0.5s;
}

@keyframes cardIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 169, 98, 0.5);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 169, 98, 0.12);
  text-decoration: none;
  color: inherit;
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0d0c0b;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s;
  filter: saturate(0.95) contrast(1.02);
}

.product-card:hover .product-card__media img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.05);
}

.product-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(11, 10, 9, 0.75));
  pointer-events: none;
}

.product-card__badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  background: linear-gradient(135deg, #e8d5a3, #c9a962);
  color: #1a140a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.product-card__badge--soft {
  background: rgba(11, 10, 9, 0.72);
  color: var(--gold-2);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.product-card__body {
  padding: 1.15rem 1.15rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}

.product-card__cat {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.product-card__title {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
}

.product-card__meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.product-card__price-row {
  margin-top: auto;
  padding-top: 0.85rem;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.price {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gold-2);
  white-space: nowrap;
}

.price--old {
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 400;
}

.product-card__cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0 1.15rem 1.15rem;
  margin-top: 0;
}

.product-card__cta .btn {
  min-height: 44px;
  padding: 0.65rem 0.5rem;
  font-size: 0.85rem;
  text-align: center;
}

/* ——— SEO / FAQ / Contact panels ——— */
.seo-block h2 {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 500;
  margin: 2rem 0 0.75rem;
  color: var(--ink);
}

.seo-block h2:first-child {
  margin-top: 0;
}

.seo-block p {
  color: var(--ink-2);
  margin-bottom: 0.9rem;
  max-width: 70ch;
}

.seo-block strong {
  color: var(--gold-2);
}

.faq {
  display: grid;
  gap: 0.75rem;
  max-width: 780px;
}

.faq details {
  background: rgba(22, 19, 16, 0.8);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  padding: 1rem 1.2rem;
  transition: border-color 0.3s;
}

.faq details[open] {
  border-color: rgba(201, 169, 98, 0.45);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 0.3s;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.panel {
  background: linear-gradient(160deg, #171410, #100e0c);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem;
}

.panel h2 {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 1.1rem;
  color: var(--ink);
}

.contact-list {
  display: grid;
  gap: 1.1rem;
}

.contact-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.contact-list .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--gold-soft);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--display);
  font-weight: 600;
}

.contact-list strong {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-list a {
  font-weight: 600;
  color: var(--ink);
}

.contact-list a:hover {
  color: var(--gold);
}

.form {
  display: grid;
  gap: 0.9rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-2);
}

.form input,
.form select,
.form textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  background: rgba(8, 7, 6, 0.65);
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.map-embed {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
  min-height: 280px;
}

.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
  filter: grayscale(0.35) contrast(1.05) brightness(0.85);
}

/* ——— Product detail ——— */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.35rem;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: linear-gradient(160deg, #171410, #100e0c);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 1.5rem;
}

.product-detail__media {
  border-radius: var(--radius-sm);
  background: #0d0c0b;
  min-height: 360px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
}

.product-detail__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  animation: heroZoom 14s ease-in-out infinite alternate;
}

.product-detail__info h1 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}

.product-detail__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.tag {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--gold-2);
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.tag--sale {
  background: linear-gradient(135deg, #e8d5a3, #c9a962);
  color: #1a140a;
  border: 0;
}

.product-detail__price {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin: 0.85rem 0 1.1rem;
}

.product-detail__price .price {
  font-size: 2.4rem;
}

.product-detail__desc {
  color: var(--ink-2);
  margin-bottom: 1.25rem;
}

.specs {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
}

.specs div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.12);
}

.specs dt {
  color: var(--muted);
}

.specs dd {
  font-weight: 600;
  color: var(--ink);
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
  gap: 0.45rem;
  margin: 0.75rem 0 1.25rem;
  max-height: 180px;
  overflow: auto;
  padding-right: 0.25rem;
}

.size-btn {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  padding: 0.5rem 0.25rem;
  font-size: 0.75rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink-2);
  transition: 0.2s;
}

.size-btn:hover,
.size-btn.is-active {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--gold-2);
}

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* ——— Tags ——— */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(22, 19, 16, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  color: var(--ink-2);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s var(--ease);
}

.tag-pill:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  background: var(--gold-soft);
  transform: translateY(-3px);
  text-decoration: none;
}

.tag-hero-panel {
  background: linear-gradient(160deg, #171410, #100e0c);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  margin-bottom: 1.6rem;
}

.tag-hero-panel h1,
.tag-hero-panel h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 0.55rem;
}

.tag-hero-panel p {
  color: var(--muted);
  max-width: 65ch;
}

/* ——— CTA band ——— */
.cta-band {
  background:
    radial-gradient(circle at 20% 30%, rgba(232, 213, 163, 0.18), transparent 40%),
    linear-gradient(120deg, #1a1510, #2a2115 50%, #1a1510);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.2), transparent 65%);
  animation: floatY 8s ease-in-out infinite;
}

.cta-band > * {
  position: relative;
}

.cta-band h2 {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--gold-2);
}

.cta-band p {
  color: var(--ink-2);
  font-size: 0.95rem;
}

/* ——— Page hero ——— */
.page-hero {
  background:
    linear-gradient(120deg, rgba(8, 7, 6, 0.88), rgba(8, 7, 6, 0.55)),
    url("../images/hero.jpg") center/cover;
  color: var(--ink);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero--speedbar {
  background:
    linear-gradient(120deg, rgba(8, 7, 6, 0.92), rgba(8, 7, 6, 0.5) 48%, rgba(8, 7, 6, 0.78)),
    url("../images/backgrounds/speed-bar-background.jpg") center/cover;
}

.page-hero--speedbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(201, 169, 98, 0.16), transparent 45%),
    radial-gradient(circle at 85% 45%, rgba(232, 213, 163, 0.2), transparent 38%);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201, 169, 98, 0.18), transparent 40%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  color: var(--gold-2);
}

.page-hero p {
  color: var(--ink-2);
  max-width: 50ch;
}

/* ——— Footer ——— */
.footer {
  background: #070605;
  color: var(--muted);
  padding: 3.5rem 0 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.footer a {
  color: var(--ink-2);
  text-decoration: none;
}

.footer a:hover {
  color: var(--gold);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__brand {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.7rem;
}

.footer__brand span {
  color: var(--gold);
}

.footer h3 {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.95rem;
}

.footer ul {
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.footer__bottom {
  border-top: 1px solid rgba(201, 169, 98, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.8rem;
}

.form-status {
  display: none;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--gold-soft);
  color: var(--gold-2);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.9rem;
}

.form-status.is-visible {
  display: block;
}

/* ——— Cursor glow (desktop) ——— */
.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.08), transparent 65%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
  mix-blend-mode: screen;
}

/* ——— Responsive ——— */
@media (max-width: 960px) {
  :root {
    --header-h: 68px;
  }

  .trust {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid,
  .product-detail,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .hero {
    min-height: min(86vh, 700px);
  }

  .hero__glow {
    opacity: 0.45;
    width: 70vw;
    top: 0;
  }

  .section {
    padding: 3.25rem 0;
  }

  .cta-band h2 {
    font-size: 1.65rem;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 64px;
    --radius: 14px;
  }

  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  .topbar {
    display: none;
  }

  .header {
    height: var(--header-h);
    top: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
  }

  body.nav-open .header {
    background: rgba(8, 7, 6, 0.98);
    border-bottom-color: var(--line);
  }

  .logo__mark {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }

  .logo__text {
    font-size: 1.35rem;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    position: relative;
    z-index: 260;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    max-height: none;
    background: rgba(8, 7, 6, 0.98);
    flex-direction: column;
    padding: 1rem 1rem 6.5rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    align-items: stretch;
    gap: 0.35rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 250;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.95rem 1rem;
    font-size: 1.05rem;
    border-radius: 12px;
    min-height: 48px;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
  }

  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }

  .hero {
    min-height: auto;
    align-items: end;
  }

  .hero__media img {
    object-position: center 35%;
  }

  .hero__content {
    padding: 5.5rem 0 2.25rem;
    max-width: none;
  }

  .hero__eyebrow {
    letter-spacing: 0.16em;
    font-size: 0.7rem;
  }

  .hero__brand {
    font-size: clamp(2.6rem, 14vw, 3.6rem);
    margin-bottom: 0.7rem;
  }

  .hero__title {
    font-size: 1.12rem;
    max-width: none;
  }

  .hero__lead {
    font-size: 0.95rem;
    max-width: none;
    margin-bottom: 1.25rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .marquee {
    padding: 0.55rem 0;
  }

  .marquee__track {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    gap: 1.4rem;
    animation-duration: 22s;
  }

  .trust {
    grid-template-columns: 1fr;
    margin-top: -1.1rem;
    gap: 0.65rem;
  }

  .trust__item {
    padding: 0.95rem 1rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section__head h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.45rem;
    margin: 0 -0.15rem 1.25rem;
    padding: 0.15rem 0.15rem 0.55rem;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .chip {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0.55rem 0.95rem;
    font-size: 0.82rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .product-card__title {
    font-size: 1.2rem;
  }

  .product-card__media {
    aspect-ratio: 16 / 11;
  }

  .product-card:hover {
    transform: none;
  }

  .product-card:active {
    transform: scale(0.99);
  }

  .seo-block h2 {
    font-size: 1.45rem;
  }

  .cta-band {
    padding: 1.4rem 1.15rem;
    gap: 1rem;
  }

  .cta-band h2 {
    font-size: 1.45rem;
  }

  .cta-band > div:last-child {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }

  .cta-band .btn {
    width: 100%;
    min-height: 46px;
  }

  .page-hero {
    padding: 2.4rem 0 2rem;
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .panel {
    padding: 1.15rem;
  }

  .form input,
  .form select,
  .form textarea {
    font-size: 16px; /* prevents iOS zoom */
    min-height: 48px;
    padding: 0.85rem 0.95rem;
  }

  .form textarea {
    min-height: 120px;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 220px;
    height: 220px;
  }

  .product-detail {
    padding: 0.85rem;
    gap: 1.1rem;
    border-radius: 14px;
  }

  .product-detail__media,
  .product-detail__media img {
    min-height: 240px;
  }

  .product-detail__price .price {
    font-size: 2rem;
  }

  .size-grid {
    grid-template-columns: repeat(3, 1fr);
    max-height: none;
  }

  .size-btn {
    min-height: 44px;
    font-size: 0.8rem;
  }

  .buy-actions {
    flex-direction: column;
  }

  .buy-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .tag-pill {
    min-height: 42px;
    padding: 0.55rem 0.9rem;
    font-size: 0.84rem;
  }

  .footer {
    padding: 2.4rem 0 5.5rem;
  }

  .footer__grid {
    gap: 1.4rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.4rem;
  }

  .cursor-glow {
    display: none !important;
  }

  /* sticky bottom call / contact bar — fixed while scrolling */
  .mobile-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    padding: 0.55rem 0.55rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
    background: rgba(8, 7, 6, 0.96);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.45);
  }

  .mobile-bar__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    min-height: 54px;
    padding: 0.45rem 0.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.15;
    text-align: center;
    border: 1px solid transparent;
    transition: transform 0.15s ease, filter 0.15s ease;
  }

  .mobile-bar__btn:active {
    transform: scale(0.96);
  }

  .mobile-bar__btn .ico,
  .mobile-bar__btn .material-symbols-outlined,
  .mobile-bar__btn .ico-brand {
    display: block;
    width: 1.45rem;
    height: 1.45rem;
    font-size: 1.45rem;
    line-height: 1;
    margin: 0;
  }

  .mobile-bar__label {
    display: block;
    font-size: 0.62rem;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .mobile-bar__btn--call {
    background: linear-gradient(135deg, #f0e2bc, #c9a962 45%, #9a7d3d);
    color: #1a140a;
    box-shadow: 0 6px 16px rgba(201, 169, 98, 0.3);
  }

  .mobile-bar__btn--wa {
    background: #128c7e;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
  }

  .mobile-bar__btn--viber {
    background: #7360f2;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
  }

  .mobile-bar__btn:hover {
    text-decoration: none;
    filter: brightness(1.08);
    color: inherit;
  }

  .mobile-bar__btn--call:hover {
    color: #1a140a;
  }

  .mobile-bar__btn--wa:hover,
  .mobile-bar__btn--viber:hover {
    color: #fff;
  }

  body {
    padding-bottom: calc(5.4rem + env(safe-area-inset-bottom, 0px));
  }

  .footer {
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 420px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero__brand {
    font-size: 2.45rem;
  }

  .logo__text {
    font-size: 1.2rem;
  }

  .mobile-bar__btn {
    font-size: 0.62rem;
    min-height: 52px;
  }

  .mobile-bar__btn .ico,
  .mobile-bar__btn .material-symbols-outlined {
    font-size: 1.35rem;
    width: 1.35rem;
    height: 1.35rem;
  }
}

@media (min-width: 421px) and (max-width: 720px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card__body {
    padding: 0.9rem 0.85rem 1rem;
  }

  .product-card__title {
    font-size: 1.05rem;
  }

  .price {
    font-size: 1.25rem;
  }

  .product-card__cta {
    padding: 0 0.85rem 0.9rem;
    gap: 0.4rem;
  }

  .product-card__cta .btn {
    font-size: 0.78rem;
    padding: 0.6rem 0.35rem;
    min-height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .product-card,
  .hero__brand,
  .hero__title,
  .hero__lead,
  .hero__actions,
  .hero__eyebrow {
    opacity: 1 !important;
    transform: none !important;
  }
}
