:root {
  --primary-color: #5A7A52;
  --secondary-color: #3D5C35;
  --accent-color: #C0E0B1;
  --light-color: #F0F7ED;
  --dark-color: #1A2B16;
  --hover-color: #4A6843;
  --background-color: #F7FAF5;
  --text-color: #4A5642;
  --border-color: rgba(90, 122, 82, 0.2);
  --divider-color: rgba(61, 92, 53, 0.1);
  --shadow-color: rgba(61, 92, 53, 0.1);
  --highlight-color: #F0A55A;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Lato', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  font-family: var(--alt-font);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
  background-color: var(--background-color);
}

/* Pattern: soft hexagon-like dots grid */
.pattern-bg {
  background-image:
    radial-gradient(circle at 25% 25%, rgba(192, 224, 177, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(90, 122, 82, 0.07) 0%, transparent 50%),
    radial-gradient(circle, rgba(90, 122, 82, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 32px 32px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* HEADER */
header {
  background: white;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
  border-bottom: 3px solid var(--primary-color);
}

.header-deco {
  position: absolute;
  display: none;
}

@media (min-width: 768px) {
  .header-deco {
    display: block;
  }
  .header-deco.leaf1 {
    right: 7%;
    top: 4px;
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    opacity: 0.35;
    border-radius: 0 50% 50% 50%;
    transform: rotate(-30deg);
  }
  .header-deco.leaf2 {
    right: 5%;
    bottom: 4px;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    opacity: 0.18;
    border-radius: 50% 0 50% 50%;
    transform: rotate(20deg);
  }
  .header-deco.leaf3 {
    right: 11%;
    top: 50%;
    transform: translateY(-50%) rotate(10deg);
    width: 18px;
    height: 18px;
    background: var(--secondary-color);
    opacity: 0.13;
    border-radius: 50%;
  }
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-10deg);
}

/* MAIN */
main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.8rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.product-image-container {
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 14px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.product-image {
  width: 100%;
  padding: 18px 40px;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .product-image {
    padding: 14px;
  }
}

.guarantee-block {
  background: white;
  color: var(--text-color);
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow-color);
  position: relative;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--primary-color);
  border-radius: 10px 0 0 10px;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.guarantee-block p {
  font-size: 0.82rem;
  line-height: 1.55;
}

/* Features icons — horizontal pill style */
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: var(--light-color);
  border-radius: 30px;
  border: 1px solid var(--border-color);
  transition: all 0.25s ease;
}

.feature-item:hover {
  background: white;
  box-shadow: 0 2px 8px var(--shadow-color);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: white;
}

.feature-item span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Cart button */
.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 0.9rem 1.6rem;
  border: none;
  border-radius: 30px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 3px 10px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow-color);
}

/* Product right */
.product-right h1 {
  font-family: var(--main-font);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0.7rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.86rem;
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-color);
}

.product-description p + p {
  margin-top: 0.6rem;
}

.highlight-text {
  background: var(--primary-color);
  color: white;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  margin: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.features-list {
  list-style: none;
  margin: 1rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
  padding: 0.65rem 0.9rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 1px 5px var(--shadow-color);
  transition: all 0.25s ease;
  border: 1px solid var(--border-color);
  font-size: 0.83rem;
}

.features-list li:hover {
  transform: translateX(3px);
  border-color: var(--primary-color);
}

.feature-check {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.72rem;
}

/* Benefits section — horizontal cards with left icon stripe */
.benefits-section {
  padding: 1.8rem 1.2rem;
  background: var(--dark-color);
}

.benefits-content {
  max-width: 1080px;
  margin: 0 auto;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
  text-align: center;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(192, 224, 177, 0.2);
  border-radius: 10px;
  padding: 1.1rem;
  display: flex;
  flex-direction: row;
  gap: 0.85rem;
  align-items: flex-start;
  transition: all 0.25s ease;
}

@media (min-width: 1024px) {
  .benefit-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.benefit-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--accent-color);
}

.benefit-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.benefit-card p {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}

/* Testimonials */
.testimonials {
  background: var(--light-color);
  padding: 2rem 1.2rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1080px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  padding: 1.1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: transform 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.testimonial-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--main-font);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.testimonial-city {
  font-size: 0.76rem;
  color: var(--text-color);
}

.testimonial p {
  line-height: 1.6;
  font-size: 0.82rem;
  color: var(--text-color);
}

/* Footer */
footer {
  background: var(--dark-color);
  color: white;
  padding: 1.5rem 1.2rem;
}

.footer-content {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-content .logo {
  color: white;
}

.footer-content .logo-icon {
  background: var(--accent-color);
  color: var(--dark-color);
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.25s ease;
  font-size: 0.8rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
  font-size: 0.76rem;
  max-width: 1080px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}