:root {
  --red: #d4121e;
  --red-deep: #b10016;
  --red-soft: #f7dfe2;
  --dark: #1a1a1a;
  --text: #2b2b2b;
  --muted: #6a6a6a;
  --white: #ffffff;
  --light: #f5f5f5;
  --border: rgba(17, 17, 17, 0.08);
  --shadow: 0 16px 30px rgba(24, 25, 28, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button, input, textarea { font: inherit; }
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.section-space { padding: 88px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 1px;
}
.brand-year {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.55rem;
  margin-top: 4px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}
.header-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 700;
  transition: .2s ease;
}
.primary-btn,
.header-cta {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow);
}
.primary-btn:hover,
.header-cta:hover { background: var(--red-deep); }
.secondary-btn {
  background: transparent;
  color: var(--red);
  border: 1px solid var(--red);
}
.secondary-btn:hover { background: var(--red-soft); }
.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 2rem;
  color: var(--dark);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #140707;
}
.slider-track {
  display: flex;
  width: 100%;
  min-height: 620px;
}
.slide {
  position: relative;
  min-width: 100%;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 10, 10, 0.8), rgba(12, 10, 10, 0.3));
}
.slide-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: var(--white);
}
.eyebrow,
.section-kicker {
  display: inline-block;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 12px;
}
.slide-content h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin: 0 0 18px;
  line-height: 1.05;
}
.slide-content p {
  font-size: 1.1rem;
  margin: 0 0 28px;
  max-width: 560px;
}
.slider-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  display: flex;
  gap: 12px;
}
.slider-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.65);
  cursor: pointer;
}
.slider-dots button.active { background: var(--red); }

.trust-bar {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 20px 0;
}
.trust-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 110px;
}
.trust-grid strong {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--red);
}
.trust-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

.intro-grid,
.contact-grid,
.product-detail,
.pdf-menu-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}
.intro-image .image-card {
  padding: 36px;
  background: linear-gradient(145deg, var(--red-soft), var(--white));
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.intro-copy h2,
.section-header h2,
.page-banner h1,
.page-content h2,
.product-detail-copy h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin: 0 0 22px;
  line-height: 1.15;
  color: var(--dark);
}
.intro-copy p,
.page-content p,
.product-card p,
.product-detail-copy p,
.pdf-menu-card p,
.contact-list {
  color: var(--muted);
}
.intro-copy ul {
  padding-left: 18px;
  margin: 20px 0 30px;
  color: var(--dark);
  font-weight: 600;
}

.section-header {
  margin-bottom: 28px;
}
.section-header.centered { text-align: center; }
.product-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.product-card,
.benefit-item,
.pdf-menu-card,
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.product-card {
  padding: 18px;
}
.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
}
.badge {
  display: inline-block;
  background: var(--red-soft);
  color: var(--red-deep);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.product-card h3 {
  margin: 15px 0 12px;
  font-size: 1.4rem;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  gap: 12px;
}
.product-meta strong {
  color: var(--dark);
  font-size: 1.2rem;
}
.product-meta a {
  color: var(--red);
  font-weight: 700;
}

.benefit-item {
  padding: 28px 24px;
  background: linear-gradient(180deg, #fff, #fff7f8);
}
.benefit-item span {
  display: block;
  font-size: 2.6rem;
  color: var(--red);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 18px;
}
.benefit-item h3 { margin: 0 0 10px; }

.page-banner {
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  color: var(--white);
  padding: 90px 0 70px;
}
.page-banner h1 {
  color: var(--white);
  margin-bottom: 0;
}
.page-content {
  margin-top: 10px;
}
.narrow {
  max-width: 820px;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form-wrap {
  padding: 24px;
}
.contact-form input,
.contact-form textarea,
.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.alert {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
}
.alert.success {
  background: #eafaf3;
  color: #0e8a4d;
}
.alert.error {
  background: #fdecec;
  color: #b91c1c;
}

.product-detail {
  align-items: center;
}
.product-detail-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.product-detail-copy .price {
  color: var(--red);
  font-size: 2rem;
  font-weight: 800;
  margin: 16px 0;
}

.pdf-menu-wrap {
  align-items: start;
}
.pdf-menu-card {
  padding: 30px;
}
.pdf-menu-card h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 1.8rem;
}
.pdf-menu-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px 18px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.pdf-menu-item:last-child { border-bottom: 0; }
.pdf-menu-item span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  font-weight: 800;
}
.catalog-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
  color: var(--dark);
  font-weight: 600;
}

.site-footer {
  background: #f3f1ee;
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
  color: var(--dark);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.9fr;
  gap: 28px;
  align-items: start;
}
.footer-brand-block,
.footer-info-block {
  padding: 0;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo-wrap img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.footer-logo-wrap strong {
  display: block;
  font-size: 1.5rem;
  color: var(--dark);
}
.footer-logo-wrap span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.footer-brand-block p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  max-width: 520px;
}
.footer-info-block h4 {
  margin: 0 0 16px;
  font-size: 1.3rem;
  color: var(--dark);
}
.footer-info-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.footer-info-block li,
.footer-info-block a,
.footer-info-block strong {
  color: var(--dark);
  font-weight: 500;
}
.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom small {
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-pdf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
}
.footer-pdf:hover { background: var(--red-deep); }

.admin-body {
  background: linear-gradient(145deg, #fbe7ea, #fff);
}
.admin-login-box {
  width: min(420px, calc(100% - 24px));
  margin: 80px auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 32px;
}
.admin-login-box h1 {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}
.admin-form {
  display: grid;
  gap: 16px;
}
.admin-form label {
  display: grid;
  gap: 10px;
  color: var(--dark);
  font-weight: 600;
}

.admin-panel-body {
  background: #f5f5f6;
}
.admin-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: #111;
  color: var(--white);
  padding: 28px 18px;
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 1.5rem;
  font-weight: 800;
}
.admin-brand img {
  width: 48px;
  height: 48px;
}
.admin-sidebar nav {
  display: grid;
  gap: 10px;
}
.admin-sidebar nav a {
  color: rgba(255,255,255,0.8);
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
}
.admin-sidebar nav a.active,
.admin-sidebar nav a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
.admin-content {
  padding: 32px;
}
.admin-content h1,
.admin-content h2 {
  margin-top: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.stat-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}
.stat-card strong {
  font-size: 2.2rem;
  color: var(--red);
}
.admin-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 28px;
}
.full-width {
  grid-column: 1 / -1;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.admin-table th {
  background: #f9f9f9;
}
.action-links {
  display: flex;
  gap: 14px;
  align-items: center;
}
.action-links a {
  color: var(--red);
  font-weight: 700;
}
.field-hint {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.8rem;
}
.inline-link {
  display: inline-flex;
  margin-left: 12px;
  align-items: center;
  justify-content: center;
}
.secondary-btn.inline-link {
  border: 1px solid var(--border);
  background: #fff;
}

@media (max-width: 960px) {
  .main-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .intro-grid,
  .contact-grid,
  .product-detail,
  .pdf-menu-wrap,
  .stats-grid,
  .product-grid,
  .benefit-grid,
  .admin-grid,
  .trust-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { padding-bottom: 12px; }
  .slider-track { min-height: 520px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
