:root {
  --primary-color: #4A6741;
  --secondary-color: #2F4529;
  --accent-color: #B07D3A;
  --light-color: #F2F5EE;
  --dark-color: #1E2B1A;
  --gradient-primary: linear-gradient(135deg, #4A6741 0%, #2F4529 100%);
  --hover-color: #355230;
  --background-color: #F8F9F5;
  --text-color: #3A3F35;
  --border-color: rgba(74, 103, 65, 0.14);
  --divider-color: rgba(47, 69, 41, 0.08);
  --shadow-color: rgba(47, 69, 41, 0.09);
  --highlight-color: #C0E0B1;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Open Sans', 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-bg {
  background-image:
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(192, 224, 177, 0.13) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 5% 90%, rgba(74, 103, 65, 0.07) 0%, transparent 60%),
    repeating-radial-gradient(
      circle at 50% 50%,
      transparent 0px,
      transparent 28px,
      rgba(74, 103, 65, 0.018) 28px,
      rgba(74, 103, 65, 0.018) 29px
    );
  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 1px 5px var(--shadow-color);
  border-bottom: 2px solid var(--primary-color);
}

.header-decor {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 200px;
  pointer-events: none;
  display: none;
}

.header-decor-leaf {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%) rotate(30deg);
  width: 22px;
  height: 32px;
  border-radius: 0 50% 0 50%;
  border: 1.5px solid var(--highlight-color);
  opacity: 0.5;
}

.header-decor-leaf-sm {
  position: absolute;
  top: calc(50% - 10px);
  right: 58px;
  transform: translateY(-50%) rotate(-20deg);
  width: 14px;
  height: 20px;
  border-radius: 0 50% 0 50%;
  border: 1px solid var(--primary-color);
  opacity: 0.25;
}

@media (min-width: 768px) {
  .header-decor {
    display: block;
  }
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.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%;
  flex-shrink: 0;
}

/* MAIN */
main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.6rem 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 4px 14px var(--shadow-color);
  border: 1px solid var(--border-color);
  padding: 0.9rem;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.guarantee-block {
  background: var(--light-color);
  color: var(--text-color);
  padding: 1rem 1.1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--accent-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--accent-color);
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.guarantee-block p {
  font-size: 0.83rem;
  line-height: 1.6;
}

/* 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 0.9rem;
  background: white;
  border-radius: 30px;
  box-shadow: 0 1px 5px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.22s ease;
}

.feature-item:hover {
  border-color: var(--primary-color);
  transform: translateX(3px);
}

.feature-item .feature-icon {
  width: 34px;
  height: 34px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  border: 1px solid var(--highlight-color);
}

.feature-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 0.85rem 1.4rem;
  border: none;
  border-radius: 6px;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 3px 8px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-1px);
}

/* PRODUCT RIGHT */
.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.85rem;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0.55rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.86rem;
  margin-bottom: 0.9rem;
  line-height: 1.68;
  color: var(--text-color);
}

.product-description p + p {
  margin-top: 0.55rem;
}

.highlight-text {
  background: var(--primary-color);
  color: white;
  padding: 0.9rem 1.1rem;
  border-radius: 6px;
  font-weight: 700;
  margin: 0.9rem 0;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 3px 8px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* FEATURES LIST — numbered style */
.features-list {
  list-style: none;
  margin: 0.7rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  counter-reset: feat-counter;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 1px 5px var(--shadow-color);
  border: 1px solid var(--border-color);
  font-size: 0.84rem;
  transition: border-color 0.22s ease;
}

.features-list li:hover {
  border-color: var(--primary-color);
}

.feature-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--primary-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.7rem;
}

/* PROMO BLOCK — horizontal rows with dividers */
.promo-block {
  background: var(--dark-color);
  color: white;
  padding: 2rem 1rem;
}

.promo-block-inner {
  max-width: 1150px;
  margin: 0 auto;
}

.promo-block h2 {
  font-family: var(--main-font);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--highlight-color);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .promo-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.promo-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid rgba(192, 224, 177, 0.12);
}

@media (min-width: 768px) {
  .promo-card {
    border-bottom: none;
    border-right: 1px solid rgba(192, 224, 177, 0.12);
  }
  .promo-card:last-child {
    border-right: none;
  }
}

.promo-card-icon {
  font-size: 1.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.promo-card-body h3 {
  font-family: var(--main-font);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--highlight-color);
}

.promo-card-body p {
  font-size: 0.81rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}

/* TESTIMONIALS */
.testimonials {
  background: #E8EDE4;
  color: var(--text-color);
  padding: 2rem 1rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.4rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1150px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  padding: 1.1rem;
  border-radius: 8px;
  border-bottom: 3px solid var(--accent-color);
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: transform 0.22s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.testimonial-icon {
  width: 36px;
  height: 36px;
  background: var(--light-color);
  border: 1.5px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  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.3px;
}

.testimonial-location {
  font-size: 0.76rem;
  color: var(--text-color);
  opacity: 0.7;
}

.testimonial p {
  line-height: 1.6;
  font-size: 0.83rem;
}

/* FOOTER */
footer {
  background: var(--dark-color);
  color: white;
  padding: 1.4rem 1rem;
}

.footer-content {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  padding-bottom: 0.9rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-content .logo {
  color: white;
}

.footer-content .logo-icon {
  background: white;
  color: var(--dark-color);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.22s ease;
  font-size: 0.8rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
  max-width: 1150px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}