:root {
  --primary-color: #3A6B4A;
  --secondary-color: #C0D9C8;
  --accent-color: #254D35;
  --light-color: #EFF6F1;
  --dark-color: #172B20;
  --gradient-primary: linear-gradient(135deg, #3A6B4A 0%, #4D8260 100%);
  --hover-color: #2D5539;
  --background-color: #F5F9F6;
  --text-color: #253D2C;
  --border-color: rgba(58, 107, 74, 0.15);
  --divider-color: rgba(58, 107, 74, 0.08);
  --shadow-color: rgba(23, 43, 32, 0.1);
  --highlight-color: #7A6235;
  --main-font: 'Oswald', sans-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: organic leaf-like shapes via clip-path pseudo + soft blobs */
.pattern-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background-color: var(--background-color);
}

.pattern-bg::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(192, 217, 200, 0.3) 0%, transparent 70%);
  border-radius: 62% 38% 70% 30% / 45% 55% 45% 55%;
}

.pattern-bg::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(58, 107, 74, 0.08) 0%, transparent 70%);
  border-radius: 38% 62% 30% 70% / 55% 45% 55% 45%;
}

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;
  gap: 12px;
  align-items: center;
}

.header-deco span {
  display: block;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.header-deco span:nth-child(1) { width: 36px; height: 36px; }
.header-deco span:nth-child(2) { width: 20px; height: 20px; background: rgba(255,255,255,0.07); }
.header-deco span:nth-child(3) { width: 12px; height: 12px; background: rgba(255,255,255,0.05); }

@media (min-width: 768px) { .header-deco { display: flex; } }

.container {
  max-width: 1020px;
  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.6rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 2px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transform: rotate(45deg);
}

.logo-icon span {
  display: block;
  transform: rotate(-45deg);
}

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: 18px;
  background: white;
  border: 2px solid var(--secondary-color);
  box-shadow: 0 4px 14px var(--shadow-color);
  overflow: hidden;
}

.product-image-container picture {
  display: flex;
  justify-content: center;
  width: 100%;
}

.product-image {
  width: 60%;
  height: auto;
  padding: 22px;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.product-image:hover { transform: scale(1.02); }

.guarantee-block {
  background: var(--light-color);
  padding: 1.1rem 1.2rem;
  border-radius: 12px;
  border: 1px solid var(--secondary-color);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.guarantee-block-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}

.guarantee-block p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-color);
}

/* Feature items: pill-shaped tags layout */
.features-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  background: white;
  border-radius: 50px;
  box-shadow: 0 2px 6px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: var(--light-color);
  border-color: var(--primary-color);
}

.feature-item .feature-icon {
  font-size: 1rem;
  line-height: 1;
}

.feature-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--alt-font);
  white-space: nowrap;
}

.cart-button {
  background: var(--highlight-color);
  color: white;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 10px;
  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(122, 98, 53, 0.28);
  font-family: var(--main-font);
  letter-spacing: 0.8px;
}

.cart-button:hover {
  background: #5e4a25;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(122, 98, 53, 0.35);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.8px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--highlight-color);
  margin: 0.7rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.86rem;
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.product-description p + p { margin-top: 0.75rem; }

.highlight-text {
  background: var(--primary-color);
  color: white;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  font-weight: 700;
  margin: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
  font-family: var(--main-font);
  letter-spacing: 0.6px;
  position: relative;
  overflow: hidden;
}

.highlight-text::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 100%;
  background: rgba(255,255,255,0.06);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.features-list {
  list-style: none;
  margin: 1rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px var(--shadow-color);
  transition: all 0.3s ease;
  border-right: 3px solid var(--secondary-color);
}

.features-list li:hover {
  border-right-color: var(--primary-color);
  transform: translateX(-2px);
}

.feature-check {
  width: 20px;
  height: 20px;
  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.63rem;
  margin-top: 1px;
}

.features-list li span:last-child {
  font-size: 0.84rem;
  line-height: 1.5;
}

/* Benefits: two-row layout with icon left + dividers */
.benefits-section {
  background: linear-gradient(160deg, var(--light-color) 0%, var(--secondary-color) 100%);
  padding: 2.5rem 1.5rem;
}

.benefits-content {
  max-width: 1020px;
  margin: 0 auto;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  color: var(--accent-color);
  text-align: center;
  letter-spacing: 1px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  border-bottom: 1px solid rgba(58, 107, 74, 0.15);
  transition: background 0.3s ease;
}

.benefit-card:hover {
  background: rgba(255,255,255,0.55);
}

@media (min-width: 768px) {
  .benefit-card:nth-child(odd) { border-right: 1px solid rgba(58, 107, 74, 0.15); }
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.benefit-content { flex: 1; }

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--accent-color);
  letter-spacing: 0.4px;
}

.benefit-card p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-color);
}

.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 2.5rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.8rem;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 0.8px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.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.05);
  padding: 1.2rem 1.3rem;
  border-radius: 12px;
  border-left: 3px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.testimonial:hover { transform: translateY(-2px); }

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.testimonial-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--main-font);
  color: var(--secondary-color);
  letter-spacing: 0.4px;
}

.testimonial p {
  line-height: 1.7;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.78);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.5rem;
  border-top: 1px solid rgba(192, 217, 200, 0.1);
}

.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-nav a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.79rem;
}

.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.38);
  font-size: 0.75rem;
  max-width: 1020px;
  margin: 0 auto;
}

.footer-credit a { color: rgba(255,255,255,0.62); text-decoration: none; }
.footer-logo { color: white; }