* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #000;
  color: #fff;
  min-height: 100vh;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 48px 24px 32px;
  gap: 48px;
}

.hero {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #fff;
  padding: 40px 24px;
}

.logo {
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.hero p {
  font-size: 16px;
  line-height: 1.6;
}

.contact {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  border: 1px solid #fff;
  padding: 32px 24px;
}

.contact h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px 24px;
}

.label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-bottom: 6px;
}

.value {
  font-size: 15px;
  line-height: 1.5;
}

.footer {
  margin-top: auto;
  text-align: center;
  border-top: 1px solid #fff;
  padding-top: 24px;
}

.footer .contact {
  margin: 0 auto 24px;
  padding: 20px 18px;
}

.footer .contact h2 {
  font-size: 16px;
  margin-bottom: 14px;
}

.footer .contact .label {
  font-size: 10px;
  letter-spacing: 1.5px;
}

.footer .contact .value {
  font-size: 13px;
  line-height: 1.4;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  margin-bottom: 18px;
}

.link {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.link:hover,
.link:focus {
  background: #fff;
  color: #000;
  outline: none;
}

.legal {
  font-size: 12px;
  opacity: 0.75;
}

.disclaimer {
  max-width: 900px;
  margin: 0 auto 18px;
  border: 1px solid #fff;
  padding: 16px 18px;
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #000;
  border: 1px solid #fff;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow: auto;
  padding: 24px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #fff;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.modal h3 {
  font-size: 20px;
}

.modal h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.modal h5 {
  font-size: 15px;
  margin: 16px 0 8px;
}

.modal p,
.modal li {
  font-size: 14px;
  line-height: 1.6;
}

.modal ul {
  padding-left: 18px;
  margin-bottom: 8px;
}

.close {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 20px;
  width: 32px;
  height: 32px;
  line-height: 30px;
  cursor: pointer;
}

.close:hover,
.close:focus {
  background: #fff;
  color: #000;
  outline: none;
}

.video-hero {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 16px 8px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.video-hero vturb-smartplayer,
.video-hero iframe,
.video-hero video {
  width: min(520px, 100%);
  height: auto;
  max-height: 82vh;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}


.bottles-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 28px 16px 34px;
  background: var(--bg-soft);
}

.bottles-container #toper {
  width: min(920px, 100%);
  text-align: center;
}

.bottles-container #toper h3 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.bottles-container #toper h3 span {
  color: var(--accent);
}

.bottles-container #toper p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.bottles-container #bottles {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.bottles-container #bottles a {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bottles-container #bottles a:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.4);
}

.bottles-container #bottles img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 900px) {
  .bottles-container #bottles {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }

  .bottles-container #bottles a {
    width: min(420px, 100%);
  }
}

@media (min-width: 901px) {
  .bottles-container #bottles {
    width: min(1280px, 100%);
    gap: 22px;
  }

  .bottles-container #bottles a {
    background: transparent;
    box-shadow: none;
  }

  .bottles-container #bottles a:nth-child(2),
  .bottles-container #bottles a:nth-child(3) {
    align-self: center;
    margin-top: 18px;
  }

  .bottles-container #bottles a:nth-child(1) {
    order: 2;
  }

  .bottles-container #bottles a:nth-child(2) {
    order: 1;
  }

  .bottles-container #bottles a:nth-child(3) {
    order: 3;
  }
}

@media (max-width: 620px) {
  .bottles-container {
    padding: 22px 12px 28px;
  }

  .bottles-container #toper h3 {
    font-size: 18px;
  }

  .bottles-container #bottles {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 28px;
  }

  .page {
    padding: 32px 16px 24px;
  }
}

