:root {
  --primary-color: #6B3A2A;
  --secondary-color: #8B5E3C;
  --accent-color: #C4845A;
  --light-color: #FDF5EE;
  --dark-color: #3B1F13;
  --gradient-primary: linear-gradient(135deg, #6B3A2A 0%, #8B5E3C 100%);
  --hover-color: #5A2F21;
  --background-color: #FAF6F1;
  --text-color: #3D2B1F;
  --border-color: rgba(196, 132, 90, 0.3);
  --shadow-color: rgba(107, 58, 42, 0.12);
  --highlight-color: #F0A55A;
  --main-font: 'Lora', serif;
  --alt-font: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Pattern BG: concentric circles / dots */
.pattern-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.04;
  background-image:
    radial-gradient(circle, var(--primary-color) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== HEADER ===== */
header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  box-shadow: 0 2px 8px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.header-decor {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.12;
  pointer-events: none;
}

.header-decor .leaf {
  width: 36px;
  height: 60px;
  border-radius: 0 60% 0 60%;
  background: #ffffff;
  transform: rotate(-20deg);
}

.header-decor .leaf.sm {
  width: 24px;
  height: 42px;
  transform: rotate(15deg);
}

header .container {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #ffffff;
  font-family: var(--main-font);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-icon {
  font-size: 1.7rem;
}

/* ===== MAIN ===== */
main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

main .container {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2.2rem;
  align-items: start;
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-image {
  width: 100%;
  display: flex;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 14px var(--shadow-color);
  padding: 1.5rem 1rem;
  border: 1px solid var(--border-color);
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.guarantee-block {
  background: linear-gradient(135deg, #fff8f2 0%, #fff3e8 100%);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 2px 8px var(--shadow-color);
  position: relative;
}

.guarantee-block::before {
  content: '🛡';
  position: absolute;
  top: -14px;
  left: 14px;
  font-size: 1.5rem;
  background: #ffffff;
  padding: 0 4px;
  border-radius: 50%;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  font-size: 0.98rem;
  color: var(--primary-color);
  margin-bottom: 0.45rem;
  font-weight: 700;
  margin-top: 0.3rem;
}

.guarantee-block p {
  font-size: 0.85rem;
  color: var(--text-color);
  line-height: 1.5;
}

/* Feature items — horizontal pill rows */
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 0.6rem 1rem;
  box-shadow: 0 1px 5px var(--shadow-color);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-item:hover {
  box-shadow: 0 3px 10px var(--shadow-color);
  transform: translateX(3px);
}

.feature-icon-wrap {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--primary-color);
}

.cart-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: #ffffff;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  font-family: var(--alt-font);
  font-size: 0.97rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
  box-shadow: 0 3px 12px var(--shadow-color);
  transition: all 0.3s ease;
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
}

/* Right column */
.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.3rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.price {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-family: var(--alt-font);
}

.product-description {
  margin-bottom: 1rem;
}

.product-description p {
  margin-bottom: 0.85rem;
  color: var(--text-color);
  font-size: 0.91rem;
  line-height: 1.7;
}

.highlight-text {
  background-color: var(--highlight-color);
  color: #3B1F13;
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(240, 165, 90, 0.5);
  box-shadow: 0 2px 8px rgba(240, 165, 90, 0.25);
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
  padding: 0.55rem 0.85rem;
  background: rgba(255,255,255,0.8);
  border-radius: 6px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.features-list li:hover {
  background: #ffffff;
}

.feature-check {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== BENEFITS SECTION — numbered steps timeline ===== */
.benefits-section {
  background-color: var(--dark-color);
  padding: 2.8rem 0;
  margin-top: 1.5rem;
}

.benefits-inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.85rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2.2rem;
  font-weight: 700;
}

.benefits-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.benefits-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255,255,255,0.2);
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #ffffff;
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.timeline-step h3 {
  font-family: var(--main-font);
  font-size: 0.88rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.timeline-step p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.45;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background-color: var(--light-color);
  padding: 3rem 0;
}

.testimonials h2 {
  font-family: var(--main-font);
  font-size: 1.9rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.testimonials-grid {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.testimonial {
  background: #ffffff;
  padding: 1.3rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--shadow-color);
  border-bottom: 3px solid var(--accent-color);
  transition: transform 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.testimonial-icon {
  font-size: 2.1rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--primary-color);
  font-family: var(--main-font);
}

.testimonial-city {
  font-size: 0.78rem;
  color: var(--accent-color);
}

.testimonial p {
  color: var(--text-color);
  line-height: 1.65;
  font-size: 0.87rem;
  font-style: italic;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--dark-color);
  color: rgba(255,255,255,0.8);
  padding: 1.8rem 0 1rem;
}

.footer-content {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

footer .logo {
  color: #ffffff;
  font-size: 1.3rem;
}

.footer-nav {
  display: flex;
  list-style: none;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-nav a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}

.footer-credit a:hover {
  color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .product-section {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .benefits-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .benefits-timeline::before {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0.65rem;
    align-items: center;
  }

  .header-decor {
    display: none;
  }
}

@media (max-width: 640px) {
  .product-right h1 {
    font-size: 1.9rem;
  }

  .price {
    font-size: 1.55rem;
  }

  .benefits-timeline {
    grid-template-columns: 1fr;
  }
}