﻿:root {
  --ink: #111827;
  --muted: #5b6472;
  --line: #d9dee8;
  --soft: #f6f7f4;
  --dark: #0b1220;
  --red: #d83a32;
  --shadow: 0 18px 50px rgba(16, 24, 40, .12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.btn.primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.btn.email {
  background: #1f5f93;
  border-color: #1f5f93;
  color: #fff;
}

.btn.facebook {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}

.hero {
  padding: 74px 0;
  background: var(--soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #c98221;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.06;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

p { margin: 0; color: var(--muted); }
.lead { margin-top: 20px; font-size: 18px; }
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  width: min(100%, 340px);
}

.hero-actions .btn {
  width: 100%;
  min-height: 48px;
}
.hero-card img { border-radius: 8px; box-shadow: var(--shadow); background: #fff; }

.product-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar { display: none; }

.gallery-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  position: relative;
  background: #fff;
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 18px;
  border-radius: 8px;
  box-shadow: none;
}

.gallery-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 11px;
  border-radius: 6px;
  background: rgba(17, 24, 39, .82);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 24, 39, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.gallery-arrow.prev { left: 12px; }
.gallery-arrow.next { right: 12px; }

.gallery-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 7px;
  pointer-events: none;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(17, 24, 39, .25);
}

.gallery-dot.active { background: var(--red); }

section { padding: 68px 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
}

tr:last-child td { border-bottom: 0; }
td:first-child { width: 34%; font-weight: 800; background: #f8fafc; }

.dark {
  background: var(--dark);
  color: #fff;
}

.dark p { color: #cbd5e1; }

.mobile-contact {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px;
  gap: 8px;
}

.mobile-contact .btn {
  flex: 1;
  min-height: 46px;
  padding: 10px 8px;
}

@media (max-width: 800px) {
  body { padding-bottom: 72px; }
  .wrap { width: min(100% - 28px, 1120px); }
  .actions { display: none; }
  .hero-grid, .grid-3 { grid-template-columns: 1fr; }
  .mobile-contact { display: flex; }
  .gallery-track { cursor: grab; }
  .gallery-slide img { aspect-ratio: 4 / 3; padding: 12px; }
  .gallery-arrow {
    width: 36px;
    height: 36px;
    font-size: 24px;
    background: rgba(255, 255, 255, .86);
  }
  .gallery-caption {
    left: 12px;
    bottom: 30px;
    font-size: 12px;
  }
}


