:root {
  --primary-color: #3B6E52;
  --secondary-color: #2A4E3A;
  --accent-color: #5A9F77;
  --light-color: #EAF4EE;
  --dark-color: #1D2E24;
  --gradient-primary: linear-gradient(135deg, #3B6E52 0%, #2A4E3A 100%);
  --hover-color: #2F5C43;
  --background-color: #F6FBF8;
  --text-color: #374A3E;
  --border-color: rgba(90, 159, 119, 0.22);
  --shadow-color: rgba(42, 78, 58, 0.12);
  --highlight-color: #F2D57F;
  --main-font: 'Oswald', 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;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

.pattern-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.04;
  background-image:
    linear-gradient(45deg, var(--primary-color) 25%, transparent 25%),
    linear-gradient(-45deg, var(--accent-color) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--primary-color) 75%),
    linear-gradient(-45deg, transparent 75%, var(--accent-color) 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* HEADER */
header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  box-shadow: 0 2px 8px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: -30px;
  right: 60px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.08);
}

header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: 200px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 768px) {
  header::before,
  header::after { display: none; }
}

header .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #ffffff;
  font-family: var(--main-font);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.logo:hover { opacity: 0.88; }

.logo-icon { font-size: 1.65rem; }

/* MAIN */
main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

main .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: start;
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-image {
  width: 100%;
  display: flex;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 4px 14px var(--shadow-color);
  background: linear-gradient(150deg, #ffffff 0%, var(--light-color) 100%);
  padding: 1.3rem;
}

.product-image img {
  width: 52%;
  height: auto;
  display: block;
}

.guarantee-block {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-color);
  padding: 1rem 1.1rem;
  border-radius: 8px;
  box-shadow: 0 2px 9px var(--shadow-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  font-size: 0.95rem;
  color: var(--primary-color);
  margin-bottom: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.guarantee-block p {
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--text-color);
}

.features-icons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: transform 0.25s ease;
}

.feature-item:hover {
  transform: translateX(4px);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  background: var(--gradient-primary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.35;
}

.cart-button {
  display: block;
  background: var(--gradient-primary);
  color: #ffffff;
  text-decoration: none;
  padding: 0.78rem 1.5rem;
  border-radius: 7px;
  font-family: var(--main-font);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
  box-shadow: 0 4px 12px var(--shadow-color);
  transition: all 0.3s ease;
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
}

/* RIGHT COLUMN */
.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.35rem;
  color: var(--primary-color);
  margin-bottom: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.price {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-family: var(--main-font);
}

.product-description {
  margin-bottom: 1rem;
  line-height: 1.72;
}

.product-description p {
  margin-bottom: 0.8rem;
  font-size: 0.88rem;
  color: var(--text-color);
}

.highlight-text {
  background: var(--highlight-color);
  color: #2A2000;
  padding: 0.85rem 1rem;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(242, 213, 127, 0.35);
  border: 2px solid #d4b84a;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
  padding: 0.38rem 0.5rem;
  background: rgba(255,255,255,0.65);
  border-radius: 5px;
  border-bottom: 1px solid rgba(44, 127, 178, 0.1);
  transition: background 0.25s;
}

.features-list li:hover {
  background: var(--light-color);
}

.feature-check {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* PROMO BLOCK */
.promo-block {
  background: var(--gradient-primary);
  padding: 2.2rem 0;
  margin-top: 1.3rem;
}

.promo-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.promo-block h2 {
  font-family: var(--main-font);
  font-size: 1.85rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.promo-card {
  background: rgba(255,255,255,0.95);
  padding: 1.2rem 1.3rem;
  border-radius: 9px;
  text-align: center;
  box-shadow: 0 3px 14px rgba(0,0,0,0.13);
  border-top: 3px solid var(--highlight-color);
}

.promo-card-icon {
  font-size: 2rem;
  margin-bottom: 0.65rem;
  display: block;
}

.promo-card h3 {
  font-family: var(--main-font);
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.promo-card p {
  font-size: 0.83rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials {
  background-color: var(--light-color);
  padding: 2.2rem 0;
}

.testimonials h2 {
  font-family: var(--main-font);
  font-size: 1.85rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 700;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.testimonial {
  background: #ffffff;
  padding: 1.2rem;
  border-radius: 9px;
  box-shadow: 0 3px 12px var(--shadow-color);
  border-left: 4px solid var(--accent-color);
  transition: transform 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.testimonial-icon { font-size: 2rem; }

.testimonial-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-color);
  font-family: var(--main-font);
}

.testimonial-city {
  font-size: 0.78rem;
  color: #7a8fa0;
}

.testimonial p {
  font-size: 0.84rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--text-color);
}

/* FOOTER */
footer {
  background-color: var(--dark-color);
  color: rgba(255,255,255,0.88);
  padding: 1.5rem 0 0.9rem;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}

footer .logo { color: #ffffff; font-size: 1.3rem; }

.footer-nav {
  display: flex;
  list-style: none;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.25s;
}

.footer-nav a:hover { color: #ffffff; }

.footer-credit {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.77rem;
  color: rgba(255,255,255,0.62);
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}

.footer-credit a:hover { color: #ffffff; }

/* RESPONSIVE */
@media (max-width: 968px) {
  .product-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-right h1 { font-size: 2rem; }

  .promo-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 1.1rem;
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .product-right h1 { font-size: 1.8rem; }
  .price { font-size: 1.45rem; }
  .promo-block h2,
  .testimonials h2 { font-size: 1.55rem; }
}