@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-VariableFont_opsz\,wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url(../fonts/SpaceGrotesk-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --bg: #fbfaf8;
  --surface: #ffffff;
  --primary: #1e1e1e;
  --accent: #c54c3e;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --border: #e6e3dd;
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.04);
  --shadow-md: 0 16px 32px rgba(0,0,0,0.06);
  --radius: 12px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --transition: all 0.25s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.main {
  flex: 1 0 auto;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 500;
  border-radius: 40px;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  font-size: 1rem;
  text-align: center;
}

.btn--primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.btn--primary:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.btn--block {
  display: block;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header__title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}
.section-header__subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.8);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo__link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo__img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.logo__text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}
.header__notice {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--text-light);
  background: #f3f2ef;
  padding: 6px 14px;
  border-radius: 30px;
}
.nav__menu {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav__link {
  font-weight: 500;
  transition: color 0.2s;
}
.nav__link:hover {
  color: var(--accent);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav__toggle-line {
  width: 100%;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.hero {
  padding: 60px 0 80px;
}
.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  margin-bottom: 20px;
}
.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 28px;
}
.hero__price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.price--current {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
}
.price--old {
  font-size: 1.5rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.price__discount {
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.9rem;
}
.hero__badges {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  padding: 8px 18px;
  border-radius: 40px;
  box-shadow: var(--shadow-sm);
  font-weight: 500;
}
.hero__img-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.features {
  padding: 80px 0;
  background: var(--surface);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
}
.feature-card__icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-card__title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.feature-card__text {
  color: var(--text-light);
}

.specs-showcase {
  padding: 80px 0;
}
.specs-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.specs-showcase__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.specs-showcase__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.specs-showcase__title {
  font-size: 2.5rem;
  margin-bottom: 32px;
}
.specs-list {
  list-style: none;
}
.specs-list__item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.1rem;
}
.specs-list__item span:first-child {
  font-weight: 500;
  color: var(--text-light);
}
.specs-showcase__note {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}

.gallery {
  padding: 80px 0;
  background: var(--surface);
}
.gallery__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}
.gallery__slider-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.gallery__slider {
  border-radius: var(--radius);
}
.gallery__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.gallery__info {
  padding: 20px 0;
}
.gallery__info-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.gallery__info-text {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 1.1rem;
}
.gallery__info-list {
  list-style: none;
}
.gallery__info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.gallery__info-list i {
  color: var(--accent);
  width: 20px;
}
.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

.reviews {
  padding: 80px 0;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
.review-card {
  background: var(--surface);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.review-card__stars {
  color: #f5b342;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.review-card__text {
  font-size: 1.1rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.review-card__author {
  display: flex;
  flex-direction: column;
}
.review-card__name {
  font-weight: 600;
}
.review-card__location {
  color: var(--text-light);
  font-size: 0.9rem;
}

.order {
  padding: 80px 0;
  background: linear-gradient(145deg, #f7f5f2 0%, #eae7e2 100%);
}
.order__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.order__title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.order__desc {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.order__features {
  list-style: none;
  margin-bottom: 32px;
}
.order__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}
.order__features i {
  color: var(--accent);
  width: 24px;
}
.order__card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 16px 20px;
  border-radius: 60px;
  box-shadow: var(--shadow-sm);
}
.order__card-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
}
.order__card-name {
  font-weight: 600;
  display: block;
}
.order__card-price {
  font-size: 1.4rem;
  font-weight: 700;
}
.order-form {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 1rem;
  transition: var(--transition);
  background: white;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30,30,30,0.1);
}
.form-group--checkbox {
  margin: 28px 0;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.checkbox-input {
  position: absolute;
  opacity: 0;
}
.checkbox-custom {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-radius: 6px;
  background: white;
  transition: var(--transition);
  flex-shrink: 0;
}
.checkbox-input:checked + .checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
  position: relative;
}
.checkbox-input:checked + .checkbox-custom::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 14px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.checkbox-text {
  font-size: 0.95rem;
  color: var(--text-light);
}

.footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 48px 0 24px;
  margin-top: auto;
  font-size: 0.95rem;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.3rem;
  font-weight: 500;
  color: white;
}
.footer__contact p {
  margin: 4px 0;
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}
.footer__legal-link {
  color: #ccc;
  transition: color 0.2s;
}
.footer__legal-link:hover {
  color: white;
}
.footer__disclaimer {
  color: #aaa;
  font-size: 0.85rem;
  max-width: 800px;
}
.footer__disclaimer-title {
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #333;
}
.footer__copy {
  margin: 0;
}

.thanks__content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 60px 0;
}
.thanks__card {
  background: var(--surface);
  max-width: 600px;
  width: 100%;
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.thanks__icon {
  font-size: 64px;
  color: #2e7d32;
  margin-bottom: 20px;
}
.thanks__title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.thanks__message {
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.thanks__note {
  color: var(--text-light);
  margin-bottom: 32px;
}

.legal-page {
  padding: 60px 0;
}
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.legal-content h1 {
  margin-bottom: 32px;
  font-size: 2.5rem;
}
.legal-content p {
  margin-bottom: 20px;
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 992px) {
  .features__grid { grid-template-columns: repeat(2,1fr); }
  .reviews__grid { grid-template-columns: repeat(2,1fr); }
  .hero__container, .specs-showcase__grid, .order__container, .gallery__row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .header__inner { flex-wrap: wrap; }
  .nav__menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    gap: 0;
    padding: 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform 0.3s;
    z-index: 99;
  }
  .nav__menu--active {
    transform: translateY(0);
  }
  .nav__toggle {
    display: flex;
  }
  .nav__item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .header__notice {
    margin-left: 0;
    order: 3;
    width: 100%;
    text-align: center;
  }
  .footer__legal {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .features__grid, .reviews__grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .hero__price { flex-direction: column; align-items: flex-start; gap: 8px; }
  .legal-content { padding: 32px 20px; }
}
#cookPopup {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 2px 3px 10px rgb(0 0 0 / .4);
  z-index: 9999
}
#cookPopup p {
  margin: 0;
  text-align: center
}
@media(min-width:576px) {
  #cookPopup.show {
    display: flex;
    align-items: center
  }
}
@media(max-width:575px) {
  #cookPopup.show {
    display: block;
    text-align: left
  }
  .cookPopup_btn {
    margin: 10px 0 0 0
  }
}
.cookPopup_title {
  font-size: 16px;
  font-weight: 700
}
.cookPopup_desc {
  font-size: 16px
}
.show {
  display: flex !important
}