:root {
  --primary-color: #4A6741;
  --secondary-color: #344B2D;
  --accent-color: #7A9E6E;
  --light-color: #EBF1E8;
  --dark-color: #1E2B1A;
  --gradient-primary: linear-gradient(135deg, #4A6741 0%, #344B2D 100%);
  --hover-color: #5A7D50;
  --background-color: #F6FAF5;
  --text-color: #2C3A28;
  --border-color: rgba(74, 103, 65, 0.17);
  --divider-color: rgba(74, 103, 65, 0.1);
  --shadow-color: rgba(52, 75, 45, 0.1);
  --highlight-color: #D4E8CC;
  --main-font: 'Lora', serif;
  --alt-font: 'Roboto', 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(
      90deg,
      transparent 0px,
      transparent 48px,
      rgba(74,103,65,0.035) 48px,
      rgba(74,103,65,0.035) 49px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 48px,
      rgba(74,103,65,0.035) 48px,
      rgba(74,103,65,0.035) 49px
    );
  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 8px var(--shadow-color);
}

.header-deco {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  gap: 0;
}

.header-deco-leaf {
  font-size: 1.2rem;
  opacity: 0.18;
  margin: 0 4px;
  color: white;
}

@media (min-width: 768px) { .header-deco { display: flex; } }

.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.7rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  font-style: italic;
}

.logo-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transform: rotate(5deg);
}

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: 1.1rem;
}

.product-image-container {
  display: flex;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow-color);
  padding: 22px 30px;
  background: white;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.product-image-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gradient-primary);
}

.product-image-container picture { display: flex; justify-content: center; }

.product-image {
  width: 70%;
  height: auto;
  transition: transform 0.3s ease;
}

.product-image:hover { transform: scale(1.03); }

.guarantee-block {
  background: white;
  padding: 1rem 1.1rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow-color);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::after {
  content: '✓';
  position: absolute;
  right: 10px; top: 10px;
  font-size: 2rem;
  color: var(--border-color);
  line-height: 1;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  font-style: italic;
}

.guarantee-block p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-color);
}

/* feature-item: badge/pill style */
.features-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  background: var(--highlight-color);
  border-radius: 20px;
  border: 1px solid rgba(74,103,65,0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.feature-item:hover span { color: white; }
.feature-item:hover .feature-icon { background: rgba(255,255,255,0.2); }

.feature-item .feature-icon {
  width: 26px; height: 26px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--secondary-color);
  font-family: var(--alt-font);
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 3px 12px var(--shadow-color);
  font-family: var(--alt-font);
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--accent-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 16px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
  font-style: italic;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0.5rem 0;
  font-family: var(--alt-font);
  display: inline-block;
  padding: 0.3rem 0.7rem;
  background: var(--highlight-color);
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.product-description {
  font-size: 0.88rem;
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-color);
}

.product-description p { margin-bottom: 0.75rem; }

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  margin: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
  font-family: var(--main-font);
  font-style: italic;
  border: 1px solid rgba(74,103,65,0.25);
  box-shadow: 0 2px 8px var(--shadow-color);
}

.features-list {
  list-style: none;
  margin: 0.8rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  padding: 0.55rem 0.8rem;
  font-size: 0.86rem;
  border-bottom: 1px solid var(--divider-color);
  transition: padding-left 0.2s ease;
}

.features-list li:last-child { border-bottom: none; }

.features-list li:hover { padding-left: 1.1rem; }

.feature-check {
  width: 18px; height: 18px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.65rem;
}

/* advantages – icon cards horizontal */
.advantages-section {
  background: white;
  padding: 2rem 1.5rem;
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

.advantages-section h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-style: italic;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .advantages-grid { grid-template-columns: repeat(4, 1fr); }
}

.advantage-card {
  background: var(--light-color);
  padding: 1.1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 16px var(--shadow-color);
}

.advantage-icon {
  width: 52px; height: 52px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}

.advantage-card h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  font-weight: 700;
  font-style: italic;
}

.advantage-card p {
  font-size: 0.8rem;
  color: var(--text-color);
  line-height: 1.5;
}

/* testimonials */
.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 2.2rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  font-style: italic;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

.testimonial {
  background: rgba(255,255,255,0.07);
  padding: 1.1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s ease;
}

.testimonial:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.testimonial-icon {
  width: 38px; height: 38px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--main-font);
  color: white;
  font-style: italic;
}

.testimonial-city { font-size: 0.76rem; color: rgba(255,255,255,0.65); }

.testimonial p {
  line-height: 1.55;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.88);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.8rem 1.5rem;
  border-top: 3px solid var(--accent-color);
}

.footer-content {
  max-width: 1100px;
  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.9rem;
  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;
  transition: color 0.3s ease;
  font-size: 0.8rem;
}

.footer-nav a:hover { color: white; }

.footer-credit {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
  font-size: 0.74rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-credit a { color: var(--light-color); text-decoration: none; }