:root {
  --primary-color: #5C6B2E;
  --secondary-color: #A8B87A;
  --accent-color: #3A4420;
  --light-color: #F4F6EC;
  --dark-color: #1E2412;
  --gradient-primary: linear-gradient(135deg, #5C6B2E 0%, #6E7F38 100%);
  --hover-color: #47531F;
  --background-color: #F6F7F0;
  --text-color: #2C3318;
  --border-color: rgba(92, 107, 46, 0.16);
  --divider-color: rgba(92, 107, 46, 0.08);
  --shadow-color: rgba(30, 36, 18, 0.1);
  --highlight-color: #A0522D;
  --main-font: 'Lora', serif;
  --alt-font: 'Poppins', 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: subtle cross-hatch lines */
.pattern-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background-color: var(--background-color);
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(92,107,46,0.04) 30px, rgba(92,107,46,0.04) 31px),
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(92,107,46,0.03) 30px, rgba(92,107,46,0.03) 31px);
}

.pattern-bg::before {
  content: '';
  position: absolute;
  top: 5%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(92,107,46,0.08), transparent);
}

.pattern-bg::after {
  content: '';
  position: absolute;
  bottom: 5%; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(92,107,46,0.06), transparent);
}

header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.header-deco {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  gap: 14px;
}

.header-deco span {
  display: block;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.header-deco span:nth-child(1) { width: 40px; height: 40px; }
.header-deco span:nth-child(2) { width: 24px; height: 24px; background: rgba(255,255,255,0.06); }
.header-deco span:nth-child(3) { width: 14px; height: 14px; background: rgba(255,255,255,0.04); }

@media (min-width: 768px) { .header-deco { display: flex; } }

.container {
  max-width: 980px;
  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.65rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 1.5px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.2);
}

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-container {
  display: flex;
  justify-content: center;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--secondary-color);
  box-shadow: 0 4px 16px var(--shadow-color);
  overflow: hidden;
}

.product-image-container picture {
  display: flex;
  justify-content: center;
  width: 100%;
}

.product-image {
  width: 60%;
  height: auto;
  padding: 20px;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.product-image:hover { transform: scale(1.02); }

.guarantee-block {
  background: var(--light-color);
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  box-shadow: inset 0 0 0 1px var(--border-color);
}

.guarantee-block-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.guarantee-block p {
  font-size: 0.79rem;
  line-height: 1.6;
  color: var(--text-color);
}

/* Feature items: pill-badge with icon left, bold label, full row */
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.9rem;
  background: var(--light-color);
  border-radius: 50px;
  border: 1px solid var(--border-color);
  transition: all 0.25s ease;
}

.feature-item:hover {
  background: white;
  border-color: var(--primary-color);
  box-shadow: 0 2px 6px var(--shadow-color);
}

.feature-item .feature-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--accent-color);
  font-family: var(--alt-font);
}

.cart-button {
  background: var(--highlight-color);
  color: white;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 3px 10px rgba(160, 82, 45, 0.28);
  font-family: var(--alt-font);
  letter-spacing: 0.5px;
}

.cart-button:hover {
  background: #7f3f1e;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(160, 82, 45, 0.38);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.7rem;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  font-weight: 700;
  line-height: 1.25;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--highlight-color);
  margin: 0.6rem 0;
  font-family: var(--alt-font);
}

.product-description {
  font-size: 0.84rem;
  margin-bottom: 1rem;
  line-height: 1.85;
  color: var(--text-color);
}

.product-description p + p { margin-top: 0.7rem; }

.highlight-text {
  background: var(--accent-color);
  color: white;
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  font-weight: 700;
  margin: 0.9rem 0;
  text-align: center;
  font-size: 0.88rem;
  font-family: var(--main-font);
  position: relative;
  overflow: hidden;
}

.highlight-text::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 4px; height: 100%;
  background: var(--highlight-color);
}

.features-list {
  list-style: none;
  margin: 0.8rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.45rem;
  padding: 0.6rem 0.9rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 4px var(--shadow-color);
  transition: all 0.25s ease;
  border-bottom: 2px solid var(--light-color);
}

.features-list li:hover {
  border-bottom-color: var(--secondary-color);
  transform: translateX(2px);
}

.feature-check {
  width: 18px;
  height: 18px;
  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.58rem;
  margin-top: 2px;
}

.features-list li span:last-child {
  font-size: 0.81rem;
  line-height: 1.5;
}

/* Wide block: 3 large stat/highlight columns */
.wide-block {
  padding: 2.5rem 1.5rem;
  background: var(--accent-color);
  color: white;
}

.wide-block-inner {
  max-width: 980px;
  margin: 0 auto;
}

.wide-block h2 {
  font-family: var(--main-font);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 1.6rem;
}

.wide-block-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .wide-block-cols { grid-template-columns: repeat(3, 1fr); }
}

.wide-col {
  text-align: center;
  padding: 1.4rem 1rem;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  border: 1px solid rgba(168, 184, 122, 0.2);
  transition: background 0.25s ease;
}

.wide-col:hover { background: rgba(255,255,255,0.1); }

.wide-col .col-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.6rem;
}

.wide-col h3 {
  font-family: var(--main-font);
  font-size: 0.95rem;
  color: var(--secondary-color);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.wide-col p {
  font-size: 0.79rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* Testimonials */
.testimonials {
  background: var(--light-color);
  padding: 2.5rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

.testimonial {
  background: white;
  padding: 1.1rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px var(--shadow-color);
  border-left: 4px solid var(--primary-color);
  transition: transform 0.25s ease;
}

.testimonial:hover { transform: translateY(-2px); }

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.testimonial-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.86rem;
  font-family: var(--alt-font);
  color: var(--primary-color);
}

.testimonial p {
  line-height: 1.7;
  font-size: 0.81rem;
  color: var(--text-color);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.5rem;
  border-top: 1px solid rgba(168, 184, 122, 0.1);
}

.footer-content {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
}

@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.75rem;
  justify-content: center;
}

@media (min-width: 768px) { .footer-nav { justify-content: flex-end; } }

.footer-nav a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.77rem;
}

.footer-nav a:hover { color: var(--secondary-color); }

.footer-credit {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.35);
  font-size: 0.73rem;
  max-width: 980px;
  margin: 0 auto;
}

.footer-credit a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-logo { color: white; }