:root {
  --primary-color: #6B8E7F;
  --secondary-color: #D4E4DD;
  --accent-color: #4A5F52;
  --light-color: #F7FAF8;
  --dark-color: #2B3A32;
  --gradient-primary: linear-gradient(135deg, #6B8E7F 0%, #85A698 100%);
  --hover-color: #7A9D8E;
  --background-color: #FDFEFE;
  --text-color: #3C4D44;
  --border-color: rgba(107, 142, 127, 0.16);
  --divider-color: rgba(107, 142, 127, 0.09);
  --shadow-color: rgba(74, 95, 82, 0.11);
  --highlight-color: #94B5A6;
  --main-font: 'Nunito', sans-serif;
  --alt-font: 'Source Sans Pro', 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 at 25% 15%, rgba(107, 142, 127, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 85%, rgba(212, 228, 221, 0.03) 0%, transparent 48%),
    repeating-linear-gradient(135deg, transparent, transparent 40px, rgba(107, 142, 127, 0.018) 40px, rgba(107, 142, 127, 0.018) 80px);
  background-size: 100% 100%, 100% 100%, 120px 120px;
  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;
  box-shadow: 0 2px 7px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 4%;
  width: 38px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) rotate(30deg);
  display: none;
}

.header-decoration::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.14);
  transform: translate(-50%, -50%) rotate(-30deg);
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    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: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 0.9px;
}

.logo-icon {
  width: 41px;
  height: 41px;
  background: var(--highlight-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
  transform: rotate(-5deg);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.5rem 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: 1.25rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 3px 11px var(--shadow-color);
  background: white;
  border: 1px solid var(--border-color);
}

.product-image-container picture {
  display: flex;
  justify-content: center;
}

.product-image {
  width: 100%;
  padding: 27px;
  height: auto;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .product-image {
    padding: 34px 36px;
  }
}

.product-image:hover {
  transform: scale(1.02);
}

.guarantee-block {
  background: linear-gradient(120deg, white 0%, var(--light-color) 100%);
  color: var(--text-color);
  padding: 1.45rem;
  border-radius: 12px;
  box-shadow: 0 3px 8px var(--shadow-color);
  border-left: 4px solid var(--primary-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.45px;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 480px) {
  .features-icons {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 0.85rem;
  padding: 1.1rem 0.95rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: all 0.3s ease;
  border-left: 3px solid var(--secondary-color);
}

.feature-item:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 13px var(--shadow-color);
  border-left-color: var(--primary-color);
}

.feature-item .feature-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--main-font);
  letter-spacing: 0.35px;
  line-height: 1.4;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 1.08rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 3px 10px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.65px;
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.25rem;
  color: var(--primary-color);
  margin-bottom: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.75px;
}

.price {
  font-size: 1.78rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0.95rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.93rem;
  margin-bottom: 1.45rem;
  line-height: 1.8;
  color: var(--text-color);
}

.highlight-text {
  background: var(--highlight-color);
  color: white;
  padding: 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  margin: 1.45rem 0;
  text-align: center;
  font-size: 0.96rem;
  box-shadow: 0 3px 10px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.55px;
}

.features-list {
  list-style: none;
  margin: 1.45rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: all 0.3s ease;
  border-top: 2px solid var(--secondary-color);
}

.features-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 11px var(--shadow-color);
  border-top-color: var(--primary-color);
}

.feature-check {
  width: 21px;
  height: 21px;
  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.72rem;
}

.benefits-section {
  background: white;
  padding: 3rem 1.5rem;
  position: relative;
  border-top: 1px solid var(--divider-color);
  border-bottom: 1px solid var(--divider-color);
}

.benefits-content {
  max-width: 1150px;
  margin: 0 auto;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.88rem;
  font-weight: 700;
  margin-bottom: 2.25rem;
  letter-spacing: 0.65px;
  color: var(--primary-color);
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.7rem;
  margin-top: 1.9rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.benefit-card {
  background: var(--light-color);
  padding: 1.65rem 1.45rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: 0 2px 9px var(--shadow-color);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.benefit-card:hover {
  transform: translateX(4px);
  box-shadow: 0 5px 15px var(--shadow-color);
  background: white;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 1.04rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: 0.45px;
  color: var(--accent-color);
}

.benefit-card p {
  font-size: 0.89rem;
  line-height: 1.72;
  color: var(--text-color);
}

.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 2.9rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.15rem;
  font-size: 1.88rem;
  font-weight: 700;
  letter-spacing: 0.65px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.55rem;
  max-width: 1150px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.55rem;
  border-radius: 12px;
  backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.95rem;
}

.testimonial-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.32rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.96rem;
  font-family: var(--main-font);
  letter-spacing: 0.45px;
}

.testimonial p {
  line-height: 1.72;
  font-size: 0.89rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.95rem 1.5rem;
}

.footer-content {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.45rem;
  align-items: center;
  padding-bottom: 1.45rem;
}

@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.9rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.84rem;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.79rem;
  max-width: 1150px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}