:root {
  --primary-color: #5A9F77;
  --secondary-color: #3E7256;
  --accent-color: #C0E0B1;
  --light-color: #EDF7F1;
  --dark-color: #1F3328;
  --gradient-primary: linear-gradient(135deg, #5A9F77 0%, #3E7256 100%);
  --hover-color: #4D8F68;
  --background-color: #F8FCF9;
  --text-color: #253328;
  --border-color: rgba(90, 159, 119, 0.18);
  --divider-color: rgba(90, 159, 119, 0.12);
  --shadow-color: rgba(62, 114, 86, 0.10);
  --highlight-color: #F7DC6F;
  --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 - subtle hexagon mesh via SVG-like CSS */
.pattern-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--background-color);
  background-image:
    linear-gradient(60deg, rgba(90,159,119,0.04) 25%, transparent 25%, transparent 75%, rgba(90,159,119,0.04) 75%),
    linear-gradient(120deg, rgba(90,159,119,0.04) 25%, transparent 25%, transparent 75%, rgba(90,159,119,0.04) 75%);
  background-size: 30px 52px;
}

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: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  gap: 10px;
}

.header-deco span {
  display: block;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  transform: rotate(45deg);
}

@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.65rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  font-style: italic;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: rgba(247, 220, 111, 0.2);
  border: 1.5px solid rgba(247, 220, 111, 0.45);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-style: normal;
  flex-shrink: 0;
}

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: 42% 1fr;
  }
}

/* LEFT */
.product-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-image-container {
  background: white;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 14px var(--shadow-color);
  padding: 18px 22px;
  display: flex;
  justify-content: center;
}

.product-image-container picture {
  display: flex;
  justify-content: center;
}

.product-img {
  width: 70%;
  height: auto;
  transition: transform 0.3s ease;
}

.product-img:hover {
  transform: scale(1.03);
}

.guarantee-block {
  background: white;
  border-top: 3px solid var(--primary-color);
  padding: 0.9rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.35rem;
  font-style: italic;
}

.guarantee-block p {
  font-size: 0.82rem;
  color: var(--text-color);
  line-height: 1.5;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.85rem 0.5rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: all 0.25s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-item span {
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--text-color);
  font-family: var(--alt-font);
  line-height: 1.3;
}

.cart-button {
  display: block;
  text-align: center;
  background: var(--gradient-primary);
  color: white;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  font-family: var(--main-font);
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  text-decoration: none;
  box-shadow: 0 3px 12px var(--shadow-color);
  transition: all 0.25s ease;
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 16px var(--shadow-color);
}

/* RIGHT */
.product-right {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.95rem;
  font-weight: 700;
  color: var(--primary-color);
  font-style: italic;
  line-height: 1.2;
}

.price-tag {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  font-family: var(--alt-font);
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.4rem 1.1rem;
  border-radius: 6px;
}

.product-description {
  font-size: 0.87rem;
  line-height: 1.65;
  color: var(--text-color);
}

.product-description p {
  margin-bottom: 0.65rem;
}

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  font-family: var(--main-font);
  font-size: 0.9rem;
  font-weight: 700;
  font-style: italic;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(247, 220, 111, 0.3);
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.6rem 0.85rem;
  background: white;
  border-radius: 7px;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 5px var(--shadow-color);
  font-size: 0.84rem;
  transition: all 0.2s ease;
}

.features-list li:hover {
  border-color: var(--primary-color);
  transform: translateX(3px);
}

.feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  min-width: 17px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 1px;
}

/* Mid banner */
.mid-banner {
  background: var(--dark-color);
  padding: 2.2rem 1.5rem;
}

.mid-banner .inner {
  max-width: 1100px;
  margin: 0 auto;
}

.mid-banner h2 {
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  color: white;
  text-align: center;
  margin-bottom: 1.4rem;
}

.mid-banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

@media (min-width: 560px) {
  .mid-banner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .mid-banner-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mid-banner-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(192, 224, 177, 0.18);
  border-radius: 8px;
  padding: 1rem 0.9rem;
  text-align: center;
  transition: background 0.2s ease;
}

.mid-banner-item:hover {
  background: rgba(255,255,255,0.11);
}

.mid-banner-item .icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.5rem;
}

.mid-banner-item h3 {
  font-family: var(--main-font);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.3rem;
}

.mid-banner-item p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
}

/* Testimonials */
.testimonials {
  background: var(--light-color);
  padding: 2.5rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 1rem 1.1rem;
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: all 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
  border-color: var(--primary-color);
}

.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: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-color);
  font-style: italic;
}

.testimonial-city {
  font-size: 0.75rem;
  color: #7f8c8d;
}

.testimonial p {
  font-size: 0.83rem;
  line-height: 1.6;
  color: var(--text-color);
}

/* Footer */
footer {
  background: var(--dark-color);
  color: white;
  padding: 1.5rem 1rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  text-decoration: none;
  font-family: var(--main-font);
  font-weight: 700;
  font-style: italic;
  font-size: 1.1rem;
}

.footer-logo .logo-icon {
  background: rgba(247,220,111,0.15);
  border-color: rgba(247,220,111,0.35);
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  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;
  font-size: 0.78rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-credit {
  max-width: 1100px;
  margin: 0.9rem auto 0;
  text-align: center;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.45);
}

.footer-credit a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}