:root {
  --primary-color: #7A3B2E;
  --secondary-color: #A05040;
  --accent-color: #C07060;
  --light-color: #FAF0ED;
  --dark-color: #3A1A12;
  --gradient-primary: linear-gradient(135deg, #7A3B2E 0%, #A05040 100%);
  --hover-color: #612E23;
  --background-color: #FDF7F5;
  --text-color: #3B2520;
  --border-color: rgba(122, 59, 46, 0.14);
  --divider-color: rgba(122, 59, 46, 0.07);
  --shadow-color: rgba(122, 59, 46, 0.10);
  --highlight-color: #C0E0B1;
  --main-font: 'Lora', 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 BG — concentric arcs + scattered dots */
.pattern-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image:
    radial-gradient(ellipse at 0% 50%, rgba(160, 80, 64, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(122, 59, 46, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 10%, rgba(160, 80, 64, 0.04) 0%, transparent 30%),
    repeating-radial-gradient(
      ellipse at 50% 50%,
      transparent 0px,
      transparent 60px,
      rgba(122, 59, 46, 0.03) 60px,
      rgba(122, 59, 46, 0.03) 61px
    );
}

/* HEADER */
header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.header-deco-arc {
  position: absolute;
  top: -10px;
  right: 6%;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: none;
}

.header-deco-arc2 {
  position: absolute;
  top: 5px;
  right: 10%;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: none;
}

.header-deco-triangle {
  position: absolute;
  bottom: 8px;
  right: 16%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 16px solid rgba(255, 255, 255, 0.08);
  display: none;
}

@media (min-width: 768px) {
  .header-deco-arc,
  .header-deco-arc2,
  .header-deco-triangle {
    display: block;
  }
}

.container {
  max-width: 1020px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 0.03em;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transform: rotate(-8deg);
}

/* MAIN */
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.3rem;
}

.product-image-container {
  position: relative;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 22px var(--shadow-color);
  display: block;
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: translateY(-3px);
}

/* GUARANTEE — ribbon-style top bar */
.guarantee-block {
  background: white;
  padding: 1.3rem 1.4rem 1.3rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 3px 12px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 0 0 10px 10px;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 0.97rem;
  font-weight: 700;
}

.guarantee-block p {
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--text-color);
}

/* FEATURE ITEMS — numbered badge style */
.features-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.feature-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.9rem 0.9rem 0.9rem 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow-color);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--primary-color);
  transition: all 0.3s ease;
  overflow: hidden;
}

.feature-item:hover {
  box-shadow: 0 4px 14px var(--shadow-color);
  transform: translateY(-2px);
}

.feature-item .feature-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.feature-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-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: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 4px 14px var(--shadow-color);
  font-family: var(--alt-font);
  letter-spacing: 0.04em;
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--shadow-color);
}

/* PRODUCT RIGHT */
.product-right h1 {
  font-family: var(--main-font);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.price {
  font-size: 1.95rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0.8rem 0;
  font-family: var(--alt-font);
}

.product-description {
  font-size: 0.89rem;
  margin-bottom: 1.2rem;
  line-height: 1.85;
  color: var(--text-color);
}

.product-description p + p {
  margin-top: 0.7rem;
}

.highlight-text {
  background: linear-gradient(135deg, #5A8A4A 0%, #72A85A 100%);
  color: white;
  padding: 1.1rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  margin: 1.2rem 0;
  text-align: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(90, 138, 74, 0.22);
  font-family: var(--alt-font);
  letter-spacing: 0.02em;
  border-left: 4px solid rgba(255, 255, 255, 0.4);
}

/* FEATURES LIST — icon + title + short text */
.features-list {
  list-style: none;
  margin: 1.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: var(--light-color);
  border-radius: 8px;
  font-size: 0.87rem;
  transition: all 0.3s ease;
  border-right: 3px solid var(--accent-color);
}

.features-list li:hover {
  background: white;
  box-shadow: 0 2px 10px var(--shadow-color);
}

.feature-check {
  width: 20px;
  height: 20px;
  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.68rem;
}

/* MID BLOCK — full-width stats/numbers banner */
.mid-block {
  background: var(--light-color);
  color: var(--text-color);
  padding: 3rem 1.5rem;
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
}

.mid-block-inner {
  max-width: 1020px;
  margin: 0 auto;
}

.mid-block h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
}

.mid-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .mid-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mid-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.8rem 1.4rem;
  border-right: 1px solid var(--border-color);
  transition: background 0.3s ease;
}

.mid-card:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .mid-card {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 1rem;
  }
  .mid-card:last-child {
    border-bottom: none;
  }
}

.mid-card:hover {
  background: white;
}

.mid-card-icon {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
}

.mid-card-number {
  font-family: var(--main-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.mid-card h3 {
  font-family: var(--alt-font);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-color);
  letter-spacing: 0.02em;
}

.mid-card p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #6B4F45;
}

/* TESTIMONIALS */
.testimonials {
  background: #2A1008;
  color: white;
  padding: 3rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  max-width: 1020px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.4rem;
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}

.testimonial-icon {
  width: 40px;
  height: 40px;
  background: var(--light-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.92rem;
  font-family: var(--main-font);
}

.testimonial-location {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.52);
}

.testimonial p {
  line-height: 1.7;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.83);
}

/* FOOTER */
footer {
  background: var(--dark-color);
  color: white;
  padding: 2rem 1.5rem;
}

.footer-content {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  align-items: center;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

@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.76);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.83rem;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.1rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.77rem;
  max-width: 1020px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}