:root {
  --color-primary: #0d1117;
  --color-secondary: #e1e7ef;
  --color-accent: #8a2be2;
  --font-main: "Inter", "Segoe UI", Arial, sans-serif;
  --radius: 16px;
  --shadow: 0 12px 28px rgba(13, 17, 23, 0.12);
  --spacing: 1rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-primary);
  background:
    radial-gradient(circle at 20% 10%, rgba(138, 43, 226, 0.18), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(13, 17, 23, 0.08), transparent 25%),
    #fff;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.section {
  padding: clamp(2.5rem, 4vw, 4.5rem) 0;
}

.header-inner,
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(13, 17, 23, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  gap: 0.75rem;
}

.desktop-nav a,
.mobile-menu a,
.site-footer a {
  color: var(--color-primary);
  text-decoration: none;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-menu a:hover,
.site-footer a:hover {
  background: rgba(138, 43, 226, 0.12);
  color: #4c1290;
  transform: translateY(-1px);
}

.burger {
  display: none;
  background: transparent;
  border: 1px solid rgba(13, 17, 23, 0.2);
  border-radius: 10px;
  padding: 0.4rem;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: var(--color-primary);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 17, 23, 0.45);
  z-index: 70;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(84vw, 360px);
  height: 100%;
  background: #fff;
  box-shadow: var(--shadow);
  z-index: 80;
  padding: 5rem 1rem 1rem;
  display: grid;
  align-content: start;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  align-items: center;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(225, 231, 239, 0.5), rgba(255, 255, 255, 0.8)),
    radial-gradient(circle at 10% 0%, rgba(138, 43, 226, 0.2), transparent 38%);
  z-index: -1;
}

.lead { font-size: 1.08rem; line-height: 1.6; }
.eyebrow { color: #4f5b6b; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.rating, .price-wrap { display: flex; gap: 0.7rem; align-items: baseline; margin: 0.7rem 0; flex-wrap: wrap; }
.badge { display: inline-block; background: rgba(138, 43, 226, 0.12); padding: 0.4rem 0.7rem; border-radius: 999px; }
.price { font-size: 2rem; }
.old-price { text-decoration: line-through; color: #697488; }

.glass-card,
.order-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.glass-card:hover,
.order-card:hover {
  transform: perspective(900px) rotateX(2deg) rotateY(-2deg) translateY(-4px);
  box-shadow: 0 20px 36px rgba(13, 17, 23, 0.16);
}

form { display: grid; gap: 0.55rem; }
input, textarea {
  border: 1px solid #c9d3e0;
  border-radius: 10px;
  padding: 0.7rem;
  font: inherit;
}
.checkbox { display: flex; align-items: start; gap: 0.6rem; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 1px solid var(--color-accent);
  background: linear-gradient(90deg, transparent, transparent);
  color: #3f146f;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.btn:hover {
  background: linear-gradient(90deg, rgba(138, 43, 226, 0.2), rgba(138, 43, 226, 0.05));
  color: #2d0b57;
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: #6f7e95;
  color: #1f2733;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.disclaimer {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(225, 231, 239, 0.5);
}

.site-footer {
  margin-top: auto;
  padding: 1rem 0;
  border-top: 1px solid rgba(13, 17, 23, 0.08);
  background: #fff;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(760px, 94%);
  background: #fff;
  border: 1px solid #c8d2de;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  z-index: 120;
}

.cookie-options, .cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1023px) {
  .desktop-nav { display: none; }
  .burger { display: inline-block; }
}
