:root {
  --primary-color: #5A9F77;
  --secondary-color: #2ECC71;
  --accent-color: #F0A55A;
  --light-color: #C0E0B1;
  --dark-color: #2A3E58;
  --gradient-primary: linear-gradient(135deg, #5A9F77 0%, #2ECC71 100%);
  --hover-color: #6BAF87;
  --background-color: #FEFFFE;
  --text-color: #4B5563;
  --border-color: rgba(90, 159, 119, 0.25);
  --divider-color: rgba(46, 204, 113, 0.12);
  --shadow-color: rgba(90, 159, 119, 0.15);
  --highlight-color: #F4D03F;
  --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);
  background-color: var(--background-color);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
}

.pattern-bg {
  background-image: 
    linear-gradient(30deg, rgba(90, 159, 119, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(90, 159, 119, 0.03) 87.5%, rgba(90, 159, 119, 0.03)),
    linear-gradient(150deg, rgba(90, 159, 119, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(90, 159, 119, 0.03) 87.5%, rgba(90, 159, 119, 0.03)),
    linear-gradient(30deg, rgba(90, 159, 119, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(90, 159, 119, 0.03) 87.5%, rgba(90, 159, 119, 0.03)),
    linear-gradient(150deg, rgba(90, 159, 119, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(90, 159, 119, 0.03) 87.5%, rgba(90, 159, 119, 0.03)),
    radial-gradient(circle at 50% 20%, rgba(46, 204, 113, 0.04) 0%, transparent 60%);
  background-size: 80px 140px, 80px 140px, 80px 140px, 80px 140px, 100% 100%;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0;
  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-decoration {
  position: absolute;
  top: 50%;
  right: 25px;
  width: 55px;
  height: 55px;
  transform: translateY(-50%) rotate(45deg);
  background: rgba(255, 255, 255, 0.08);
  display: none;
  border-radius: 12px;
}

.header-decoration::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1050px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--highlight-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-color);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-image-wrapper {
  position: relative;
  background: linear-gradient(135deg, rgba(90, 159, 119, 0.08) 0%, rgba(46, 204, 113, 0.08) 100%);
  padding: 1.2rem;
  border-radius: 12px;
}

.product-image {
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.03);
}

.guarantee-block {
  background: white;
  padding: 1.1rem;
  border-radius: 10px;
  border: 2px solid var(--light-color);
  box-shadow: 0 3px 12px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-primary);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  padding-left: 0.8rem;
}

.guarantee-block p {
  font-size: 0.8rem;
  line-height: 1.5;
  padding-left: 0.8rem;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 16px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: white;
}

.feature-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.4;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.9rem 1.6rem;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 12px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.cart-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.cart-button:hover::before {
  width: 300px;
  height: 300px;
}

.cart-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.9rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.price {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0.8rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.85rem;
  margin-bottom: 1.1rem;
  line-height: 1.65;
  color: var(--text-color);
}

.highlight-text {
  background: linear-gradient(135deg, var(--highlight-color) 0%, #F7DC6F 100%);
  color: var(--dark-color);
  padding: 1rem 1.2rem;
  border-radius: 10px;
  font-weight: 700;
  margin: 1.1rem 0;
  text-align: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(244, 208, 63, 0.35);
  border: 2px solid var(--accent-color);
  position: relative;
}

.highlight-text::before {
  content: '⭐';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.features-list {
  list-style: none;
  margin: 1.1rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  padding: 0.7rem 0.8rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: all 0.3s ease;
  font-size: 0.8rem;
  border-left: 3px solid var(--primary-color);
}

.features-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 3px 12px var(--shadow-color);
}

.feature-check {
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.7rem;
}

.benefits-section {
  background: linear-gradient(180deg, var(--light-color) 0%, rgba(192, 224, 177, 0.5) 100%);
  color: var(--text-color);
  padding: 2.5rem 1rem;
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.benefits-content {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .benefits-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-box {
  background: white;
  padding: 1.4rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  box-shadow: 0 4px 16px var(--shadow-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(90, 159, 119, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(40px, -40px);
}

.benefit-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 22px var(--shadow-color);
}

.benefit-box-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  color: white;
  box-shadow: 0 3px 10px rgba(90, 159, 119, 0.3);
}

.benefit-box-content h3 {
  font-family: var(--main-font);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.2px;
  color: var(--primary-color);
}

.benefit-box-content p {
  line-height: 1.6;
  font-size: 0.8rem;
}

.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 2rem 1rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  max-width: 1050px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.1rem;
  border-radius: 10px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.testimonial-icon {
  width: 38px;
  height: 38px;
  background: var(--highlight-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial p {
  line-height: 1.55;
  font-size: 0.8rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.6rem 1rem;
}

.footer-content {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: center;
  padding-bottom: 0.8rem;
}

@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.8rem;
  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.3s ease;
  font-size: 0.75rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  max-width: 1050px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}