:root {
  --primary-color: #2C5F3A;
  --secondary-color: #4A8C5C;
  --accent-color: #5A9F77;
  --light-color: #C0E0B1;
  --dark-color: #183324;
  --gradient-primary: linear-gradient(135deg, #2C5F3A 0%, #4A8C5C 100%);
  --hover-color: #1E4429;
  --background-color: #F5FAF6;
  --text-color: #1E3528;
  --border-color: rgba(74, 140, 92, 0.2);
  --divider-color: rgba(44, 95, 58, 0.1);
  --shadow-color: rgba(24, 51, 36, 0.1);
  --highlight-color: #F2D57F;
  --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: organic leaf-like hexagonal tiles */
.pattern-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background-color: var(--background-color);
  background-image:
    radial-gradient(ellipse 60px 30px at 0% 50%, rgba(74,140,92,0.05) 0%, transparent 100%),
    repeating-linear-gradient(
      60deg,
      rgba(90, 159, 119, 0.04) 0px,
      rgba(90, 159, 119, 0.04) 1px,
      transparent 1px,
      transparent 28px
    ),
    repeating-linear-gradient(
      -60deg,
      rgba(44, 95, 58, 0.03) 0px,
      rgba(44, 95, 58, 0.03) 1px,
      transparent 1px,
      transparent 28px
    );
}

header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(192, 224, 177, 0.2);
  border-radius: 4px;
  transform: translateY(-50%) rotate(45deg);
}

.header-decoration::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 20px; height: 20px;
  background: rgba(192, 224, 177, 0.1);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
  .header-decoration { display: block; }
}

.container {
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transform: rotate(45deg);
}

.logo-icon span {
  display: block;
  transform: rotate(-45deg);
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
  width: 100%;
}

@media (min-width: 768px) {
  .product-section { grid-template-columns: 1fr 1fr; }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.product-image-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px var(--shadow-color);
  background: white;
  padding: 0.8rem;
  border: 2px solid var(--border-color);
}

.product-image-container picture {
  display: flex;
  justify-content: center;
}

.product-image {
  width: 60%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Guarantee block: full-color card with icon row */
.guarantee-block {
  background: var(--gradient-primary);
  color: white;
  border-radius: 10px;
  padding: 1.3rem 1.5rem;
  box-shadow: 0 3px 12px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::after {
  content: '✦';
  position: absolute;
  bottom: -8px; right: 12px;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.06);
  line-height: 1;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: white;
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
  font-weight: 700;
}

.guarantee-block p {
  font-size: 0.82rem;
  line-height: 1.55;
  opacity: 0.93;
}

/* Feature items: numbered badge style */
.features-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.7rem 0.9rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px var(--shadow-color);
  border: 1px solid var(--border-color);
  position: relative;
  transition: box-shadow 0.25s ease;
}

.feature-item:hover {
  box-shadow: 0 4px 14px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 50px; height: 50px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  font-size: 1.4rem;
  border: 3px solid var(--secondary-color);
}

.feature-item span {
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--alt-font);
  line-height: 1.3;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  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(--main-font);
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.1rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0.8rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
  color: var(--text-color);
}

.product-description p + p { margin-top: 0.8rem; }

.highlight-text {
  background: var(--highlight-color);
  color: #2A1E00;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  margin: 1.2rem 0;
  text-align: center;
  font-size: 0.95rem;
  font-family: var(--main-font);
  box-shadow: 0 3px 10px rgba(242, 213, 127, 0.4);
}

.features-list {
  list-style: none;
  margin: 1rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 5px var(--shadow-color);
  font-size: 0.86rem;
  border-right: 3px solid var(--accent-color);
  transition: transform 0.2s ease;
}

.features-list li:hover { transform: translateX(-2px); }

.feature-check {
  width: 20px; height: 20px; min-width: 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.65rem;
  margin-top: 1px;
}

/* Mid block: full-width with image-like stat cards */
.mid-block {
  background: #183324;
  color: white;
  padding: 2.5rem 1.5rem;
}

.mid-block-inner {
  max-width: 980px;
  margin: 0 auto;
}

.mid-block h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 0.6rem;
  font-size: 1.65rem;
  font-weight: 700;
}

.mid-subtitle {
  text-align: center;
  font-size: 0.88rem;
  opacity: 0.75;
  margin-bottom: 2rem;
}

.mid-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
}

@media (min-width: 640px) { .mid-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .mid-grid { grid-template-columns: repeat(4, 1fr); } }

.mid-card {
  background: rgba(255,255,255,0.05);
  padding: 1.6rem 1.2rem;
  text-align: center;
  transition: background 0.25s ease;
}

.mid-card:hover { background: rgba(255,255,255,0.1); }

.mid-card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.8rem;
}

.mid-card h3 {
  font-family: var(--main-font);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--light-color);
}

.mid-card p {
  font-size: 0.8rem;
  line-height: 1.55;
  opacity: 0.82;
}

/* Testimonials */
.testimonials {
  background: #F0F7F2;
  color: var(--text-color);
  padding: 2.5rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }

.testimonial {
  background: white;
  padding: 1.4rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: transform 0.25s ease;
}

.testimonial:hover { transform: translateY(-2px); }

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--divider-color);
}

.testimonial-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--main-font);
  color: var(--primary-color);
}

.testimonial-location {
  font-size: 0.77rem;
  color: var(--secondary-color);
}

.testimonial p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-color);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.8rem 1.5rem;
}

.footer-content {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  padding-bottom: 1.4rem;
}

@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: 1rem;
  justify-content: center;
}

@media (min-width: 768px) { .footer-nav { justify-content: flex-end; } }

.footer-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s ease;
  font-size: 0.8rem;
}

.footer-nav a:hover { color: var(--light-color); }

.footer-credit {
  text-align: center;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  max-width: 980px;
  margin: 0 auto;
}

.footer-credit a { color: var(--light-color); text-decoration: none; }