:root {
  --primary-color: #5A9F77;
  --secondary-color: #4A8A65;
  --accent-color: #C0E0B1;
  --light-color: #ECF1F1;
  --dark-color: #2A3E58;
  --gradient-primary: linear-gradient(135deg, #5A9F77 0%, #4A8A65 100%);
  --hover-color: #6BB088;
  --background-color: #FAFAFA;
  --text-color: #2A2A2A;
  --border-color: rgba(90, 159, 119, 0.2);
  --divider-color: rgba(90, 159, 119, 0.1);
  --shadow-color: rgba(90, 159, 119, 0.12);
  --highlight-color: #F2D57F;
  --main-font: 'Oswald', 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 {
  background-image: 
    repeating-linear-gradient(0deg, rgba(90, 159, 119, 0.03) 0px, rgba(90, 159, 119, 0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(90, 159, 119, 0.03) 0px, rgba(90, 159, 119, 0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(45deg, rgba(192, 224, 177, 0.03) 0px, rgba(192, 224, 177, 0.03) 1px, transparent 1px, transparent 40px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  background: var(--gradient-primary);
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 14px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: 20%;
  right: 7%;
  width: 65px;
  height: 65px;
  border: 2px solid rgba(192, 224, 177, 0.25);
  border-radius: 50%;
  display: none;
}

.header-decoration::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  border: 2px solid rgba(192, 224, 177, 0.15);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1050px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.7rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-image-container {
  position: relative;
  border-radius: 10px;
  box-shadow: 0 8px 25px var(--shadow-color);
  width: 100%;
  display: flex;
  justify-content: center;
}

.product-image-container picture {
  width: 50%;
}

.product-image {
  height: auto;
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.02);
}

.price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 10px 19px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--main-font);
  box-shadow: 0 4px 14px rgba(192, 224, 177, 0.4);
}

.guarantee-block {
  background: var(--gradient-primary);
  color: white;
  padding: 1.9rem;
  border-radius: 10px;
  box-shadow: 0 7px 22px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  top: -28%;
  right: -14%;
  width: 95px;
  height: 95px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: white;
  margin-bottom: 0.9rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

@media (min-width: 768px) {
  .features-icons {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.3rem;
  background: white;
  border-radius: 9px;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

.feature-item .feature-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.feature-item span {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-color);
  font-family: var(--main-font);
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 1.1rem 2.4rem;
  border: none;
  border-radius: 9px;
  font-size: 1.17rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 7px 19px var(--shadow-color);
  font-family: var(--main-font);
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--primary-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 11px 27px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.35rem;
  color: var(--primary-color);
  margin-bottom: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.price {
  font-size: 2.65rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1.35rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.96rem;
  margin-bottom: 1.9rem;
  line-height: 1.7;
  color: var(--text-color);
}

.highlight-text {
  background: var(--gradient-primary);
  color: white;
  padding: 1.9rem;
  border-radius: 9px;
  font-weight: 600;
  margin: 1.9rem 0;
  text-align: center;
  font-size: 1.2rem;
  box-shadow: 0 7px 22px var(--shadow-color);
  font-family: var(--main-font);
}

.features-list {
  list-style: none;
  margin: 1.9rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 1.1rem;
  padding: 1.1rem;
  background: white;
  border-radius: 9px;
  box-shadow: 0 4px 13px var(--shadow-color);
  transition: all 0.3s ease;
  border-left: 3px solid var(--primary-color);
}

.features-list li:hover {
  transform: translateX(3px);
  box-shadow: 0 6px 17px var(--shadow-color);
}

.feature-check {
  width: 26px;
  height: 26px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.96rem;
}

.benefits-section {
  background: var(--light-color);
  padding: 4rem 1.5rem;
  margin: 0;
}

.benefits-section h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.9rem;
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--primary-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.9rem;
  max-width: 1050px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: white;
  padding: 1.9rem;
  border-radius: 10px;
  box-shadow: 0 5px 19px var(--shadow-color);
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-icon {
  width: 57px;
  height: 57px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 1.35rem;
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 1.26rem;
  color: var(--primary-color);
  margin-bottom: 0.95rem;
}

.benefit-card p {
  line-height: 1.6;
  color: var(--text-color);
  font-size: 0.94rem;
}

.testimonials {
  background: var(--primary-color);
  color: white;
  padding: 4rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.9rem;
  font-size: 2.35rem;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.9rem;
  max-width: 1050px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.9rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.35rem;
}

.testimonial-icon {
  width: 53px;
  height: 53px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1.17rem;
  font-family: var(--main-font);
}

.testimonial p {
  line-height: 1.7;
  font-size: 0.96rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.9rem 1.5rem;
}

.footer-content {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
  align-items: center;
  padding-bottom: 1.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: 1.35rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.91rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  max-width: 1050px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}