/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 55vh;
  background: url("../images/hero.webp") center/cover no-repeat;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero {
    min-height: 65vh;
  }
}
.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 66.66%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    var(--white) 50%,
    var(--white) 100%
  );
}
.hero-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
  padding: 0 40px;
}
.hero-text {
  text-align: right;
  flex-shrink: 0;
  max-width: 420px;
}
.made-in {
  display: inline-block;
  margin-bottom: 22px;
}
.made-in .made-in-text {
  display: inline-block;
  background: var(--white);
  padding: 7px 16px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--dark);
}
.made-in .flag-bar {
  height: 4px;
  width: 100%;
  margin-top: 4px;
  background: linear-gradient(
    to right,
    #000 0 33%,
    var(--red) 33% 66%,
    #ffcc00 66% 100%
  );
}
.hero h1 {
  font-size: 44px;
  line-height: 1.15;
  text-transform: uppercase;
}
.hero h1 .hl {
  display: block;
  margin: 8px 0;
  padding: 6px 16px;
  background: var(--green);
  color: var(--white);
}
.hero-bottle-small {
  flex-shrink: 0;
  width: 130px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.25));
}
.hero-bottle-large {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: 230px;
  height: auto;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.35));
}
.contact-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 22px 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  transition: background-color 0.2s ease;
}
.contact-btn:hover {
  background: var(--dark);
}
.contact-btn span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1199px) {
  .hero-overlay {
    width: 100%;
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .hero {
    min-height: 60vh;
  }
  .hero-overlay {
    padding: 0.75rem;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.55) 45%,
      rgba(255, 255, 255, 0.55) 100%
    );
  }
  .hero-caption {
    gap: 14px;
  }
  .hero-text {
    max-width: 58%;
  }
  .made-in {
    margin-bottom: 10px;
  }
  .made-in .made-in-text {
    font-size: 10px;
    padding: 5px 10px;
  }
  .hero h1 {
    font-size: 21px;
  }
  .hero h1 .hl {
    padding: 4px 8px;
    margin: 4px 0;
  }
  .hero-bottle-small {
    display: none;
  }
  .hero-bottle-large {
    right: 4%;
    width: 130px;
  }
  .contact-btn {
    padding: 14px 18px;
    font-size: 13px;
  }
}

/* ===== BEST SELLER ===== */
.best-seller {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 40px 10px;
}
.best-seller-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 16px 40px 16px 28px;
  margin-bottom: 30px;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}
.product-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  background: var(--light);
  padding: 30px;
  margin-bottom: 6px;
}
.product-image-placeholder {
  min-height: 220px;
  border: 2px dashed #b8b8b8;
  border-radius: 4px;
  background: #e2e2e2;
  color: #888;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
}
.product-info h3 {
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 4px;
}
.product-subtitle {
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 14px;
}
.product-spec {
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 14px;
}
.product-info p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 12px;
}
.product-features {
  list-style: none;
  margin: 4px 0 16px;
}
.product-features li {
  position: relative;
  padding-left: 14px;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 6px;
}
.product-features li::before {
  content: "\2022";
  position: absolute;
  left: 0;
}
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.btn-datasheet {
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.btn-datasheet:hover {
  background: var(--green);
}
@media (max-width: 700px) {
  .product-card {
    grid-template-columns: 1fr;
  }
  .product-image-placeholder {
    min-height: 160px;
  }
}

/* ===== ABOUT (home section) ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 70px 40px;
  max-width: 1300px;
  margin: 0 auto;
}
.about-text h2 {
  font-size: 30px;
  color: var(--dark);
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  text-align: right;
}
.about-text p {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.about-visual {
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: var(--light);
}
.about-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
  }
  .about-text h2,
  .about-text p {
    text-align: left;
  }
}

/* ===== MAP ===== */
.map-frame {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(15%);
}

/* ===== LOCATIONS ===== */
.locations {
  background: var(--white);
  padding: 0 0 70px 0;
  text-align: center;
}
.locations-topbar {
  height: 8px;
  background: var(--green);
}
.locations-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 55px 20px 0;
}
.locations-pin {
  margin-bottom: 16px;
}
.locations-inner h3 {
  font-size: 21px;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 20px;
}
.loc-block .loc-address {
  font-weight: 700;
  font-size: 19px;
  color: var(--dark);
  margin-bottom: 16px;
}
.loc-block a {
  display: block;
  color: var(--green);
  text-decoration: underline;
  font-size: 18px;
  margin-bottom: 12px;
}
.loc-block .loc-legal {
  color: #8a949c;
  font-size: 15px;
  line-height: 1.8;
  margin-top: 22px;
}
.loc-divider {
  width: 260px;
  border: none;
  border-top: 2px solid var(--dark);
  margin: 46px auto;
}
.loc-country {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 26px;
}
.loc-company {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
