:root {
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --gold: #d4af37;
  --white: #ffffff;
  --gray: #f5f5f5;
  --muted: #757575;
  --line: #e8e3d5;
  --shadow: 0 18px 45px rgba(10, 10, 10, 0.12);
  --radius: 8px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 10px 14px;
  background: var(--gold);
  z-index: 1000;
}
.skip-link:focus { left: 8px; }
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.section { padding: 84px 0; }
.section.alt { background: var(--gray); }
.eyebrow {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.08;
  margin: 0 0 16px;
}
h1 { font-size: clamp(2.5rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 18px; color: #3f3f3f; }
.lead { font-size: clamp(1.02rem, 2vw, 1.28rem); max-width: 680px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--black); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-light { background: var(--white); color: var(--black); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, .2);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 156px; height: auto; }
.nav-links, .nav-icons { display: flex; align-items: center; gap: 20px; }
.nav-links a {
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
}
.nav-links a[aria-current="page"], .nav-links a:hover { color: var(--gold); }
.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  position: relative;
}
.icon-btn:hover { border-color: var(--gold); color: var(--gold); }
.count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-size: .7rem;
  font-weight: 900;
}
.hamburger { display: none; }
.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.56) 48%, rgba(0,0,0,.18)),
    url("../images/velmont-banner.png") center / cover no-repeat;
  padding: 90px 0 72px;
}
.hero-content { max-width: 760px; }
.hero .lead { color: rgba(255,255,255,.86); }
.hero-actions, .actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(212, 175, 55, .32);
  margin-top: 38px;
  max-width: 760px;
}
.trust-strip span {
  background: rgba(10,10,10,.82);
  padding: 14px;
  color: var(--white);
  font-weight: 800;
  text-align: center;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(10,10,10,.05);
}
.category-card {
  min-height: 180px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #fff, #f8f6ef);
}
.category-card .icon { color: var(--gold); font-size: 2rem; }
.feature {
  padding: 24px;
  border-left: 3px solid var(--gold);
  background: var(--white);
}
.product-card { position: relative; }
.product-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #111, #2b2b2b);
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.product-card:hover .product-media img { transform: scale(1.06); }
.product-info { padding: 18px; }
.rating { color: var(--gold); font-weight: 800; letter-spacing: .02em; }
.price { font-weight: 900; font-size: 1.08rem; color: var(--black); }
.product-actions { display: flex; gap: 10px; margin-top: 14px; }
.product-actions .btn { flex: 1; padding-inline: 12px; }
.stats {
  color: var(--white);
  background: var(--black);
}
.stat {
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(212,175,55,.24);
}
.stat strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}
.testimonial {
  padding: 28px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.slider-controls { display: flex; gap: 10px; justify-content: center; margin-top: 18px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  padding: 20px 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
}
.faq-answer { display: none; padding-bottom: 18px; color: #444; }
.faq-item.open .faq-answer { display: block; }
.newsletter {
  color: var(--white);
  background: linear-gradient(135deg, #0a0a0a, #232018);
}
.form-row { display: flex; gap: 12px; flex-wrap: wrap; }
.input, textarea, select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d8d8d8;
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--white);
}
textarea { min-height: 130px; resize: vertical; }
.form-row .input { flex: 1 1 240px; }
.instagram-grid { grid-template-columns: repeat(6, 1fr); }
.insta-tile {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #141414, #d4af37);
  border-radius: var(--radius);
}
.page-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.45)),
    url("../images/velmont-banner.png") center / cover no-repeat;
  padding: 104px 0 82px;
}
.filters {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.pagination button {
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}
.pagination .active { background: var(--black); color: var(--white); }
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}
.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid var(--line);
}
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.gallery-thumbs button { padding: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec-list { list-style: none; padding: 0; margin: 18px 0; }
.spec-list li { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.drawer, .modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.drawer.open, .modal.open { display: block; }
.drawer-backdrop, .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(420px, 92vw);
  height: 100%;
  background: var(--white);
  padding: 22px;
  overflow: auto;
}
.modal-panel {
  position: relative;
  margin: 10vh auto;
  width: min(560px, calc(100% - 32px));
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
}
.cart-line {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-line img { width: 70px; height: 70px; object-fit: cover; border-radius: var(--radius); }
.qty { display: flex; align-items: center; gap: 8px; }
.qty button { width: 30px; height: 30px; border: 1px solid var(--line); background: var(--white); border-radius: 50%; }
.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: grid;
  gap: 10px;
}
.floating-contact a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow);
  font-weight: 900;
}
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}
.site-footer p, .site-footer a { color: rgba(255,255,255,.74); }
.site-footer h3 { color: var(--gold); font-family: var(--font-body); font-size: 1rem; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.notice { font-size: .9rem; color: var(--muted); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
