:root {
  --primary-color: #5A7A5C;
  --secondary-color: #3D5C3F;
  --accent-color: #7FA882;
  --light-color: #EEF4EE;
  --dark-color: #253626;
  --gradient-primary: linear-gradient(135deg, #5A7A5C 0%, #3D5C3F 100%);
  --hover-color: #4A6B4C;
  --background-color: #F8FAF7;
  --text-color: #374B38;
  --border-color: rgba(90, 122, 92, 0.18);
  --divider-color: rgba(61, 92, 63, 0.10);
  --shadow-color: rgba(61, 92, 63, 0.09);
  --highlight-color: #C8A040;
  --main-font: 'Roboto Condensed', 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 BG — diagonal leaf-like stripes */
.pattern-bg {
  background-image:
    radial-gradient(ellipse at 15% 30%, rgba(90, 122, 92, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(127, 168, 130, 0.05) 0%, transparent 50%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 22px,
      rgba(90, 122, 92, 0.035) 22px,
      rgba(90, 122, 92, 0.035) 23px
    );
  position: fixed;
  inset: 0;
  z-index: -1;
}

/* HEADER */
header {
  background: #fff;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px var(--shadow-color);
  border-bottom: 2px solid var(--accent-color);
}

.header-deco-arc {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 18px solid rgba(127, 168, 130, 0.12);
  display: none;
}

.header-deco-line {
  position: absolute;
  bottom: 0;
  right: 80px;
  width: 60px;
  height: 2px;
  background: rgba(90, 122, 92, 0.18);
  display: none;
}

@media (min-width: 768px) {
  .header-deco-arc,
  .header-deco-line {
    display: block;
  }
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.4rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  width: fit-content;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: white;
  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.4rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

/* LEFT */
.product-left {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product-image-container {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 10px var(--shadow-color);
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.product-image {
  width: 100%;
  padding: 18px;
  height: auto;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .product-image {
    padding: 18px 36px;
  }
}

.guarantee-block {
  background: var(--light-color);
  border: 1px solid var(--accent-color);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: var(--text-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 0.4rem;
}

.guarantee-block p {
  font-size: 0.81rem;
  line-height: 1.55;
}

/* Features icons */
.features-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0.2rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 5px var(--shadow-color);
  text-align: center;
  transition: all 0.25s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--light-color);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.feature-item span {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 0.85rem 1.4rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
  text-align: center;
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: all 0.25s ease;
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 14px var(--shadow-color);
}

/* RIGHT */
.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.6rem;
  line-height: 1.1;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--highlight-color);
  margin: 0.6rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--text-color);
  margin-bottom: 0.9rem;
}

.product-description p + p {
  margin-top: 0.55rem;
}

.highlight-text {
  background: var(--primary-color);
  color: white;
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  font-size: 0.88rem;
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px var(--shadow-color);
  margin: 0.9rem 0;
}

.features-list {
  list-style: none;
  margin: 0.9rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
  padding: 0.7rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 4px var(--shadow-color);
  font-size: 0.83rem;
  transition: all 0.25s ease;
}

.features-list li:hover {
  border-color: var(--accent-color);
  transform: translateX(2px);
}

.feature-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.68rem;
}

/* BENEFITS SECTION */
.benefits-section {
  background: var(--dark-color);
  color: white;
  padding: 2rem 1.2rem;
}

.benefits-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  margin-bottom: 0.55rem;
}

.benefits-content > p {
  font-size: 0.85rem;
  opacity: 0.88;
  margin-bottom: 1.4rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(127, 168, 130, 0.22);
  border-radius: 8px;
  padding: 1rem 0.85rem;
  transition: all 0.25s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.benefit-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0.3rem;
  color: var(--accent-color);
}

.benefit-card p {
  font-size: 0.77rem;
  opacity: 0.87;
  line-height: 1.5;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--light-color);
  padding: 2rem 1.2rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1.4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  border-left: 3px solid var(--accent-color);
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: transform 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
}

.testimonial-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--light-color);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.testimonial-name {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.testimonial-location {
  font-size: 0.74rem;
  color: var(--text-color);
  opacity: 0.78;
}

.testimonial p {
  font-size: 0.81rem;
  line-height: 1.6;
  color: var(--text-color);
}

/* FOOTER */
footer {
  background: var(--dark-color);
  color: white;
  padding: 1.4rem 1.2rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-bottom: 0.9rem;
}

@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: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.77rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.73rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}