:root {
  --primary-color: #4A7C59;
  --secondary-color: #305C3E;
  --accent-color: #C0892B;
  --light-color: #EEF4F0;
  --dark-color: #1E2E22;
  --gradient-primary: linear-gradient(135deg, #4A7C59 0%, #305C3E 100%);
  --hover-color: #3A6147;
  --background-color: #F6F9F6;
  --text-color: #384840;
  --border-color: rgba(74, 124, 89, 0.18);
  --divider-color: rgba(48, 92, 62, 0.1);
  --shadow-color: rgba(48, 92, 62, 0.1);
  --highlight-color: #F2D57F;
  --main-font: 'Lora', serif;
  --alt-font: 'Lato', 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 75% 15%, rgba(74, 124, 89, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 25% 85%, rgba(192, 137, 43, 0.05) 0%, transparent 40%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 30px,
      rgba(74, 124, 89, 0.012) 30px,
      rgba(74, 124, 89, 0.012) 31px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 30px,
      rgba(74, 124, 89, 0.012) 30px,
      rgba(74, 124, 89, 0.012) 31px
    );
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* HEADER */
header {
  background: white;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
  border-bottom: 3px solid var(--primary-color);
}

.header-decor {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  display: none;
  gap: 6px;
  align-items: center;
}

.header-decor span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0.3;
}

.header-decor span:nth-child(2) {
  width: 12px;
  height: 12px;
  opacity: 0.5;
}

.header-decor span:nth-child(3) {
  width: 8px;
  height: 8px;
  opacity: 0.3;
}

@media (min-width: 768px) {
  .header-decor {
    display: flex;
  }
}

.container {
  max-width: 1020px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 1px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  border-radius: 4px;
  transform: rotate(10deg);
}

/* MAIN */
main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.8rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 45% 55%;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-image-container {
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 14px var(--shadow-color);
  border: 1px solid var(--border-color);
  padding: 1.2rem;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.guarantee-block {
  background: var(--dark-color);
  color: white;
  padding: 1.2rem;
  border-radius: 8px;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--highlight-color);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.guarantee-block p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* feature-item: horizontal strip style */
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.65rem 1rem;
  background: white;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 5px var(--shadow-color);
  transition: border-color 0.25s ease;
}

.feature-item:hover {
  border-color: var(--primary-color);
}

.feature-item .feature-icon {
  width: 34px;
  height: 34px;
  background: var(--light-color);
  border: 1.5px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--alt-font);
}

.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 3px 10px var(--shadow-color);
  font-family: var(--alt-font);
  letter-spacing: 0.5px;
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
}

/* PRODUCT RIGHT */
.product-right h1 {
  font-family: var(--main-font);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.price {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0.6rem 0;
  font-family: var(--alt-font);
}

.product-description {
  font-size: 0.88rem;
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-color);
}

.product-description p + p {
  margin-top: 0.7rem;
}

.highlight-text {
  background: var(--accent-color);
  color: white;
  padding: 0.9rem 1.2rem;
  border-radius: 6px;
  font-weight: 700;
  margin: 1rem 0;
  text-align: center;
  font-size: 0.92rem;
  box-shadow: 0 3px 10px rgba(192,137,43,0.2);
  font-family: var(--main-font);
  letter-spacing: 0.3px;
}

.features-list {
  list-style: none;
  margin: 0.6rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.7rem;
  background: var(--light-color);
  border-radius: 6px;
  font-size: 0.82rem;
  border: 1px solid var(--border-color);
  transition: background 0.2s ease;
}

.features-list li:hover {
  background: white;
}

.feature-check {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.7rem;
}

/* BENEFITS SECTION - horizontal timeline style */
.benefits-section {
  background: var(--light-color);
  padding: 2rem 1rem;
  border-top: 3px solid var(--primary-color);
}

.benefits-content {
  max-width: 1020px;
  margin: 0 auto;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.benefits-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

@media (min-width: 768px) {
  .benefits-timeline {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}

.timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 1rem 1.5rem;
}

@media (min-width: 768px) {
  .timeline-item {
    padding: 0 1.2rem;
  }
  .timeline-item::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 20px;
    font-size: 1.2rem;
    color: var(--primary-color);
    opacity: 0.5;
  }
  .timeline-item:last-child::after {
    display: none;
  }
}

.timeline-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--main-font);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  flex-shrink: 0;
}

.timeline-item h3 {
  font-family: var(--main-font);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--primary-color);
}

.timeline-item p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-color);
}

/* TESTIMONIALS */
.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 2rem 1rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--highlight-color);
  letter-spacing: 0.5px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1020px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255,255,255,0.07);
  padding: 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(242, 213, 127, 0.2);
  transition: transform 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.testimonial-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid var(--highlight-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.9rem;
  font-family: var(--main-font);
  color: var(--highlight-color);
}

.testimonial-location {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

.testimonial p {
  line-height: 1.6;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.85);
}

/* FOOTER */
footer {
  background: #111a13;
  color: white;
  padding: 1.5rem 1rem;
}

.footer-content {
  max-width: 1020px;
  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.8rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-content .logo {
  color: white;
}

.footer-content .logo-icon {
  background: var(--highlight-color);
  color: #1E2E22;
}

.footer-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.25s ease;
  font-size: 0.82rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  max-width: 1020px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}