* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Arial", sans-serif;
  color: #1c1c1c;
  background-color: #f6f4f0;
  line-height: 1.6;
}

a {
  color: #1c4e3e;
  text-decoration: none;
}

a.button-link,
button,
.cta-button {
  background-color: #1c4e3e;
  color: #ffffff;
  border: none;
  padding: 12px 22px;
  cursor: pointer;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
}

a.button-link:hover,
button:hover,
.cta-button:hover {
  background-color: #163a2f;
}

header {
  padding: 24px 6vw 10px;
}

.nav-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  color: #4b3b2f;
  background-color: #f0e4d5;
  padding: 6px 12px;
  border-radius: 999px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1c;
}

main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 80px;
}

.section {
  padding: 24px 6vw;
}

.section.alt {
  background-color: #fffaf2;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 52%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  flex: 1 1 48%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e9ded2;
  padding: 12px;
  border-radius: 18px;
}

.split-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 14px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #e9ded2;
}

.price {
  font-weight: 700;
  color: #1c4e3e;
}

.highlight-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background-color: #1c4e3e;
  color: #ffffff;
  padding: 24px;
  border-radius: 18px;
  align-items: center;
  justify-content: space-between;
}

.highlight-strip a {
  color: #ffffff;
  text-decoration: underline;
}

.form-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c7c2bb;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 110px;
}

.footer {
  padding: 28px 6vw 40px;
  background-color: #f0e9df;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  max-width: 360px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
}

#sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9;
}

#sticky-cta button {
  border-radius: 999px;
  padding: 14px 20px;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.notice {
  background-color: #f7f2ea;
  border-left: 4px solid #1c4e3e;
  padding: 12px 16px;
  border-radius: 8px;
}

.warehouse-backdrop {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.warehouse-backdrop .section-subtitle,
.warehouse-backdrop p,
.warehouse-backdrop h2 {
  color: #ffffff;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-item {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-title {
  font-size: 28px;
  margin: 0;
}

.section-subtitle {
  margin: 0;
  font-size: 18px;
  color: #3e3e3e;
}

@media (max-width: 880px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .split-media img {
    height: 260px;
  }

  #sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}
