:root {
  --primary-color: #5A7A5F;
  --secondary-color: #3E5942;
  --accent-color: #A8C5A0;
  --light-color: #EFF5EE;
  --dark-color: #2A3328;
  --gradient-primary: linear-gradient(135deg, #5A7A5F 0%, #3E5942 100%);
  --hover-color: #476B4C;
  --background-color: #F8F9F6;
  --text-color: #3C4840;
  --border-color: rgba(90, 122, 95, 0.18);
  --divider-color: rgba(62, 89, 66, 0.10);
  --shadow-color: rgba(42, 51, 40, 0.08);
  --highlight-color: #C8924A;
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Open Sans', 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(circle at 15% 25%, rgba(90, 122, 95, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(168, 197, 160, 0.07) 0%, transparent 45%),
    radial-gradient(circle, rgba(90, 122, 95, 0.045) 1px, transparent 1px);
  background-size: auto, auto, 20px 20px;
  position: fixed;
  inset: 0;
  z-index: -1;
}

header {
  background: white;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
  border-bottom: 2px solid var(--accent-color);
}

.header-stripe {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(168, 197, 160, 0.13));
  display: none;
}

.header-circle {
  position: absolute;
  top: 50%;
  right: 36px;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(90, 122, 95, 0.2);
  display: none;
}

.header-circle::before {
  content: '';
  position: absolute;
  top: 6px; left: 6px; right: 6px; bottom: 6px;
  border-radius: 50%;
  background: rgba(90, 122, 95, 0.07);
}

@media (min-width: 768px) {
  .header-stripe, .header-circle { display: block; }
}

.container {
  max-width: 1100px;
  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.55rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  width: fit-content;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

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; }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.product-image-container {
  background: white;
  border-radius: 10px;
  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: 16px;
  height: auto;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .product-image { padding: 16px 36px; }
}

.guarantee-block {
  background: var(--light-color);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--primary-color);
  border-radius: 8px;
  padding: 0.9rem 1rem;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.guarantee-block p {
  font-size: 0.8rem;
  line-height: 1.55;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.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 1px 4px var(--shadow-color);
  text-align: center;
  transition: all 0.25s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--light-color);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.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: 6px;
  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: 1px;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: all 0.25s ease;
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
}

.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.5rem;
  line-height: 1.1;
}

.price {
  font-size: 1.65rem;
  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: 6px;
  font-weight: 700;
  text-align: center;
  font-size: 0.87rem;
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  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.55rem;
  padding: 0.65rem 0.75rem;
  background: white;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 3px var(--shadow-color);
  font-size: 0.82rem;
  transition: all 0.2s ease;
}

.features-list li:hover {
  border-color: var(--primary-color);
}

.feature-check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.65rem;
  margin-top: 2px;
}

.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.8px;
  margin-bottom: 0.5rem;
}

.benefits-section > .benefits-content > p {
  font-size: 0.84rem;
  opacity: 0.88;
  margin-bottom: 1.4rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(168, 197, 160, 0.2);
  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.45rem;
  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.86;
  line-height: 1.5;
}

.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(--primary-color);
  box-shadow: 0 2px 7px var(--shadow-color);
  transition: transform 0.2s ease;
}

.testimonial:hover { transform: translateY(-2px); }

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
}

.testimonial-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  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 {
  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: 0.9rem;
  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.12);
  border: 1px solid rgba(255,255,255,0.25);
}

.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.8rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}