/* ==========================================================================
   Hauzer — design tokens
   ========================================================================== */
:root {
  --ink: #16161c;
  --ink-soft: #45454e;
  --muted: #767680;
  --paper: #faf9f7;
  --white: #ffffff;
  --line: #e7e5e1;
  --red: #d0142a;
  --red-dark: #a10f21;
  --gold: #bd9a3f;
  --gold-bright: #e8c14a;
  --black-band: #16161c;

  --font-head: "Poppins", "Noto Sans Georgian", sans-serif;
  --font-body: "Inter", "Noto Sans Georgian", sans-serif;

  --radius: 14px;
  --shadow: 0 10px 30px rgba(20, 20, 25, 0.06);
  --shadow-lg: 0 20px 50px rgba(20, 20, 25, 0.10);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--ink-soft); }
ul { margin: 0; padding: 0; list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
@media (max-width: 760px) { section { padding: 56px 0; } }

/* Flag stripe accent — used throughout as the brand signature */
.flag-stripe {
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg,
    var(--black-band) 0%, var(--black-band) 33.33%,
    var(--red) 33.33%, var(--red) 66.66%,
    var(--gold-bright) 66.66%, var(--gold-bright) 100%);
}
.flag-dot {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.flag-dot span { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.flag-dot span:nth-child(1) { background: var(--black-band); }
.flag-dot span:nth-child(2) { background: var(--red); }
.flag-dot span:nth-child(3) { background: var(--gold-bright); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(208, 20, 42, 0.28); }
.btn-primary:hover { background: var(--red-dark); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-gold { background: var(--gold-bright); color: var(--ink); }
.btn-gold:hover { background: var(--gold); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.logo .tag { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a { font-weight: 600; font-size: 0.92rem; color: var(--ink-soft); }
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 65px 0 0 0;
    background: var(--white);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    transform: translateY(-120%);
    transition: transform 0.25s ease;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding-top: 72px;
  padding-bottom: 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); }
.hero .lede { font-size: 1.12rem; max-width: 46ch; }
.hero-ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.hero-badge svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3.4;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(208,20,42,0.07), transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(232,193,74,0.15), transparent 45%);
}
.hero-visual .hero-icon { width: 42%; height: 42%; color: var(--ink); position: relative; z-index: 1; }
.hero-visual .ring {
  position: absolute;
  border: 1.5px dashed var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}
.hero-visual .ring-1 { width: 60%; height: 60%; }
.hero-visual .ring-2 { width: 78%; height: 78%; }

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust-bar {
  padding: 28px 0;
  background: var(--ink);
}
.trust-bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item { color: #d8d8dc; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.trust-item svg { width: 18px; height: 18px; color: var(--gold-bright); }

/* ==========================================================================
   Section headers
   ========================================================================== */
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin: 0 0 48px; text-align: left; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }

/* ==========================================================================
   Category filter
   ========================================================================== */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-chip {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 0.15s ease;
}
.filter-chip:hover { border-color: var(--red); color: var(--red); }
.filter-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ==========================================================================
   Product grid & cards
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1080px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #f4f2ee, #ffffff);
  display: grid;
  place-items: center;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.product-media svg { width: 38%; height: 38%; color: var(--ink); }
.product-media .cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--ink-soft);
}
.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.product-body h3 { font-size: 1.02rem; margin-bottom: 0; }
.product-body .subtitle { font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; }
.product-body .desc { font-size: 0.87rem; margin-bottom: 14px; flex: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.price { font-weight: 700; font-size: 1.05rem; font-family: var(--font-head); }
.price .currency { font-size: 0.75rem; font-weight: 600; color: var(--muted); margin-right: 2px; }

.placeholder-note {
  margin-top: 8px;
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
}

/* ==========================================================================
   About / story split
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split .media-block {
  aspect-ratio: 4/3;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.split .media-block svg { width: 40%; height: 40%; color: var(--ink); }
.feature-list { display: grid; gap: 16px; margin-top: 24px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-weight: 500; }
.feature-list svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 2px; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial-card .stars { color: var(--gold-bright); letter-spacing: 2px; margin-bottom: 12px; font-size: 1.1rem; }
.testimonial-card .name { font-weight: 700; margin-top: 12px; }
.testimonial-card .role { font-size: 0.8rem; color: var(--muted); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: var(--ink);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(232,193,74,0.12), transparent 60%);
}
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: #c7c7cf; position: relative; max-width: 50ch; margin-left: auto; margin-right: auto; }
.cta-band .hero-ctas { justify-content: center; position: relative; }
@media (max-width: 600px) { .cta-band { padding: 48px 24px; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--white); border-top: 1px solid var(--line); padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a { color: var(--ink-soft); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--red); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 28px; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { margin: 0 6px; }

/* ==========================================================================
   Product detail page
   ========================================================================== */
.pd-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: flex-start;
}
@media (max-width: 900px) { .pd-grid { grid-template-columns: 1fr; gap: 32px; } }
.pd-media {
  position: sticky;
  top: 100px;
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, #f4f2ee, #ffffff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.pd-media svg { width: 44%; height: 44%; color: var(--ink); }
@media (max-width: 900px) { .pd-media { position: static; } }

.pd-cat { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.pd-title { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 4px; }
.pd-subtitle { color: var(--muted); font-size: 1rem; margin-bottom: 18px; }
.pd-price { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; margin-bottom: 18px; }
.pd-price .currency { font-size: 1rem; color: var(--muted); margin-right: 4px; font-weight: 600; }
.pd-short { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 24px; }
.pd-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.pd-trust { display: flex; flex-direction: column; gap: 10px; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 32px; }
.pd-trust .item { display: flex; gap: 10px; align-items: center; font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.pd-trust svg { width: 18px; height: 18px; color: var(--red); }

.pd-section { margin-top: 40px; }
.pd-section h3 { font-size: 1.15rem; margin-bottom: 16px; }
.pd-features { display: grid; gap: 12px; }
.pd-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; color: var(--ink-soft); }
.pd-features svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 3px; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
@media (max-width: 760px) { .related-grid { grid-template-columns: 1fr; } }

.placeholder-banner {
  background: #fff8e6;
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.82rem;
  color: #7a5e10;
  margin-bottom: 24px;
}

/* ==========================================================================
   Simple legal/content pages
   ========================================================================== */
.legal-page h2 { margin-top: 36px; font-size: 1.2rem; }
.legal-page p, .legal-page li { color: var(--ink-soft); }
.legal-page ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }

/* ==========================================================================
   Contact form
   ========================================================================== */
.form-grid { display: grid; gap: 18px; max-width: 560px; }
.form-row { display: grid; gap: 8px; }
.form-row label { font-size: 0.85rem; font-weight: 600; }
.form-row input, .form-row textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--red); }
