:root {
  --bg: #020617;
  --bg-alt: rgba(15, 23, 42, 0.9);
  --accent: #22d3ee;
  --accent-2: #a855f7;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.4);
  --radius-lg: 1.3rem;
  --radius-md: 0.9rem;
  --shadow-soft: 0 24px 80px rgba(15, 23, 42, 0.8);
  --transition: 0.2s ease;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #1e293b 0, transparent 55%),
    radial-gradient(circle at bottom right, #0f172a 0, transparent 55%), #020617;
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: radial-gradient(
    circle at top,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.75)
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: conic-gradient(from 140deg, #22d3ee, #a855f7, #22d3ee);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0b1120;
  box-shadow: 0 16px 40px rgba(34, 211, 238, 0.65);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.76rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--muted);
  position: relative;
  padding: 0.2rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width var(--transition);
}

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  margin: 4px 0;
}

main {
  padding-bottom: 3.5rem;
}

.section {
  padding: 3.2rem 0;
}

.section-alt {
  background: radial-gradient(
    circle at top,
    rgba(34, 211, 238, 0.06),
    transparent 60%
  );
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-header h1,
.section-header h2 {
  margin: 0 0 0.4rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1.05rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.hero {
  padding: 2.5rem 0 1.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: center;
}

.hero-copy {
  max-width: 34rem;
}

.hero-lead {
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media img {
  border-radius: 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(130deg, var(--accent), var(--accent-2));
  color: #0b1120;
  box-shadow: 0 16px 40px rgba(34, 211, 238, 0.6);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.9);
}

.section-grid {
  padding-top: 1.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.category-card {
  background: radial-gradient(
    circle at top left,
    rgba(34, 211, 238, 0.18),
    rgba(24, 24, 27, 0.95)
  );
  border-radius: var(--radius-lg);
  padding: 1rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.category-card h3 {
  margin: 0.2rem 0;
}

.category-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.category-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card img {
  height: 170px;
  object-fit: cover;
}

.product-body {
  padding: 0.9rem 1rem 1rem;
}

.product-body h2,
.product-body h3 {
  margin: 0 0 0.3rem;
}

.product-body p {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.product-price {
  font-weight: 600;
  color: var(--accent);
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.6rem;
}

.info-panel {
  background: rgba(15, 23, 42, 0.95);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.map-embed iframe {
  width: 100%;
  height: 210px;
  border: 0;
  border-radius: 1rem;
  margin-top: 0.7rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.category-section {
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 1.2rem 1.3rem;
}

.category-section p {
  color: var(--muted);
  font-size: 0.92rem;
}

.category-section ul {
  padding-left: 1.1rem;
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.deal-card {
  background: radial-gradient(
    circle at top,
    rgba(168, 85, 247, 0.2),
    rgba(15, 23, 42, 0.96)
  );
  border-radius: var(--radius-lg);
  border: 1px solid rgba(168, 85, 247, 0.4);
  padding: 1.3rem 1.4rem;
}

.deal-card p {
  color: var(--muted);
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.blog-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 1.2rem 1.3rem;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  background: #020617;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  margin-top: 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 2rem 0 1.2rem;
  font-size: 0.9rem;
}

.footer-col h3,
.footer-col h4 {
  margin-top: 0;
}

.footer-col p {
  margin: 0 0 0.4rem;
  color: var(--muted);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li + li {
  margin-top: 0.25rem;
}

.footer-bottom {
  text-align: center;
  padding: 0.9rem 0 1.2rem;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid rgba(31, 41, 55, 0.9);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  max-width: 960px;
  width: calc(100% - 2rem);
  background: rgba(15, 23, 42, 0.98);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  z-index: 50;
  font-size: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.cookie-banner--hidden {
  display: none !important;
}

.cookie-text p {
  margin: 0 0 0.4rem;
  color: var(--muted);
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  align-items: center;
  flex-wrap: wrap;
}

.btn-cookie {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.4rem 1.1rem;
  font-size: 0.78rem;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

.btn-cookie-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0b1120;
}

.btn-cookie-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.8);
}

.btn-cookie-secondary:hover {
  background: rgba(15, 23, 42, 0.9);
}

/* General */
ul {
  padding-left: 1.1rem;
}

.section p {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

/* Contact form */
.contact-form {
  margin-top: 1.4rem;
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 0.5rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: 0.7rem;
  border: 1px solid var(--border);
  background: #020617;
  padding: 0.55rem 0.7rem;
  font: inherit;
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: transparent;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.form-note {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.contact-submit {
  margin-top: 0.2rem;
}

/* Mobile tweak */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
