:root {
  --primary-color: #3A6B4A;
  --secondary-color: #2C5038;
  --accent-color: #7AAE8B;
  --light-color: #EEF4F0;
  --dark-color: #1C3024;
  --gradient-primary: linear-gradient(135deg, #3A6B4A 0%, #2C5038 100%);
  --hover-color: #2C5038;
  --background-color: #F6FAF7;
  --text-color: #243B2D;
  --border-color: rgba(122, 174, 139, 0.3);
  --divider-color: rgba(58, 107, 74, 0.12);
  --shadow-color: rgba(28, 48, 36, 0.09);
  --highlight-color: #C0E0B1;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Lato', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.pattern-bg {
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(122, 174, 139, 0.04) 40px,
      rgba(122, 174, 139, 0.04) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(58, 107, 74, 0.03) 40px,
      rgba(58, 107, 74, 0.03) 41px
    );
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
}

.header-deco {
  position: absolute;
  top: 0;
  right: 6%;
  height: 100%;
  display: none;
  align-items: center;
  gap: 12px;
}

.header-deco-leaf {
  width: 36px;
  height: 52px;
  border: 1.5px solid rgba(192, 224, 177, 0.22);
  border-radius: 0% 100% 0% 100% / 100% 0% 100% 0%;
  transform: rotate(20deg);
}

.header-deco-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(192, 224, 177, 0.18);
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .header-deco {
    display: flex;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.38rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 1px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: rgba(192, 224, 177, 0.2);
  border: 1.5px solid rgba(192, 224, 177, 0.45);
  border-radius: 0% 100% 0% 100% / 100% 0% 100% 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.main-section {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.8rem 0;
}

.product-section {
  align-items: flex-start;
}

.product-image {
  border-radius: 10px;
  box-shadow: 0 6px 20px var(--shadow-color);
  transition: transform 0.3s ease;
  width: 100%;
  display: block;
}

.product-image:hover {
  transform: scale(1.012);
}

.guarantee-block {
  background: rgba(192, 224, 177, 0.2);
  padding: 1.1rem 1.2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  margin-top: 1.1rem;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.4rem;
  font-size: 0.93rem;
  font-weight: 700;
}

.guarantee-block p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.85rem 1.6rem;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  margin-top: 1.1rem;
  box-shadow: 0 4px 14px rgba(58, 107, 74, 0.28);
  font-family: var(--main-font);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(58, 107, 74, 0.38);
}

.product-title {
  font-family: var(--main-font);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
  font-weight: 800;
}

.product-description {
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.highlight-text {
  background: var(--primary-color);
  color: #fff;
  padding: 0.9rem 1.1rem;
  border-radius: 6px;
  font-weight: 700;
  margin: 1.1rem 0;
  text-align: center;
  font-size: 0.97rem;
  font-family: var(--main-font);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(58, 107, 74, 0.25);
}

/* FEATURES LIST — horizontal steps style */
.features-list {
  list-style: none;
  margin: 1.1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: rgba(255,255,255,0.7);
  transition: background 0.2s ease;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li:hover {
  background: rgba(192, 224, 177, 0.18);
}

.feature-icon {
  width: 28px;
  height: 28px;
  background: var(--highlight-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0.75rem 0;
  font-family: var(--main-font);
}

/* BIG FEATURES — horizontal card with left icon */
.big-features {
  margin: 1.1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.big-feature {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  background: rgba(192, 224, 177, 0.12);
  border-radius: 8px;
  border: 1px solid rgba(122, 174, 139, 0.2);
  transition: all 0.25s ease;
}

.big-feature:hover {
  background: rgba(192, 224, 177, 0.22);
  transform: translateX(4px);
}

.big-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(58, 107, 74, 0.22);
}

.big-feature h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  font-size: 0.93rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.big-feature p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
}

/* INFO BLOCK — alternating list style */
.info-block {
  background: var(--dark-color);
  color: white;
  padding: 2.2rem 0;
  position: relative;
  overflow: hidden;
}

.info-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(192, 224, 177, 0.4), transparent);
}

.info-block h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  font-weight: 800;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  padding: 1.1rem 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(122, 174, 139, 0.15);
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(192, 224, 177, 0.3);
}

.info-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.info-item h3 {
  font-family: var(--main-font);
  margin-bottom: 0.3rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--highlight-color);
}

.info-item p {
  font-size: 0.87rem;
  line-height: 1.65;
  opacity: 0.9;
  margin: 0;
}

/* TESTIMONIALS — masonry-feel cards */
.testimonials {
  background: #F0F7F2;
  color: var(--text-color);
  padding: 2.2rem 0;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  color: var(--primary-color);
  font-weight: 800;
  letter-spacing: 0.3px;
}

.testimonial {
  background: white;
  padding: 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(122, 174, 139, 0.25);
  box-shadow: 0 2px 10px rgba(58, 107, 74, 0.07);
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(58, 107, 74, 0.12);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}

.testimonial-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  font-weight: 700;
  color: white;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--primary-color);
}

.testimonial-stars {
  font-size: 0.78rem;
  color: #E8A020;
  margin-top: 0.1rem;
}

.testimonial p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-color);
}

.footer {
  background: var(--dark-color);
  color: white;
  padding: 1.5rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-bottom: 0.85rem;
}

@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.85rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.84rem;
}

.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.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}

.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;
}