:root {
  --primary-color: #8B4A2F;
  --secondary-color: #5E2D18;
  --accent-color: #C07848;
  --light-color: #FBF3ED;
  --dark-color: #2A1509;
  --gradient-primary: linear-gradient(135deg, #8B4A2F 0%, #5E2D18 100%);
  --hover-color: #6D3520;
  --background-color: #FDF8F4;
  --text-color: #3D2B1F;
  --border-color: rgba(139, 74, 47, 0.14);
  --divider-color: rgba(94, 45, 24, 0.08);
  --shadow-color: rgba(94, 45, 24, 0.09);
  --highlight-color: #E8C49A;
  --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 {
  background-image:
    repeating-linear-gradient(
      30deg,
      transparent,
      transparent 40px,
      rgba(139, 74, 47, 0.018) 40px,
      rgba(139, 74, 47, 0.018) 41px
    ),
    repeating-linear-gradient(
      150deg,
      transparent,
      transparent 40px,
      rgba(139, 74, 47, 0.012) 40px,
      rgba(139, 74, 47, 0.012) 41px
    ),
    radial-gradient(circle at 90% 5%, rgba(232, 196, 154, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 5% 95%, rgba(139, 74, 47, 0.06) 0%, transparent 45%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* HEADER */
header {
  background: white;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 6px var(--shadow-color);
  border-bottom: 2px solid var(--accent-color);
}

.header-decor {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 160px;
  pointer-events: none;
  display: none;
}

.header-decor-arc {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--highlight-color);
  transform: translateY(-50%);
  opacity: 0.5;
}

.header-decor-arc-sm {
  position: absolute;
  top: 50%;
  right: 44px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  transform: translateY(-50%);
  opacity: 0.25;
}

@media (min-width: 768px) {
  .header-decor { display: block; }
}

.container {
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 1px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  border-radius: 6px 0 6px 0;
  flex-shrink: 0;
}

/* MAIN */
main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.6rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.product-image-container {
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 14px var(--shadow-color);
  border: 1px solid var(--border-color);
  padding: 0.9rem;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.guarantee-block {
  background: var(--light-color);
  padding: 1rem 1.1rem;
  border-radius: 8px;
  border: 1px dashed var(--accent-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.guarantee-block p {
  font-size: 0.83rem;
  line-height: 1.6;
  color: var(--text-color);
}

/* FEATURES ICONS — 2-col grid cards with colored top bar */
.features-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.7rem 0.8rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 1px 5px var(--shadow-color);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--accent-color);
  transition: box-shadow 0.22s ease;
}

.feature-item:hover {
  box-shadow: 0 4px 12px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 32px;
  height: 32px;
  background: var(--light-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--alt-font);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 0.85rem 1.4rem;
  border: none;
  border-radius: 6px;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 3px 8px var(--shadow-color);
  font-family: var(--alt-font);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-1px);
}

/* PRODUCT RIGHT */
.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.9rem;
  color: var(--primary-color);
  margin-bottom: 0.55rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0.55rem 0;
  font-family: var(--alt-font);
}

.product-description {
  font-size: 0.86rem;
  margin-bottom: 0.9rem;
  line-height: 1.68;
  color: var(--text-color);
}

.product-description p + p {
  margin-top: 0.55rem;
}

.highlight-text {
  background: var(--primary-color);
  color: white;
  padding: 0.9rem 1.1rem;
  border-radius: 6px;
  font-weight: 700;
  margin: 0.9rem 0;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 3px 8px var(--shadow-color);
  font-family: var(--alt-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* FEATURES LIST — tag/badge style */
.features-list {
  list-style: none;
  margin: 0.7rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  background: var(--light-color);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  font-size: 0.82rem;
  color: var(--text-color);
  transition: background 0.2s ease;
}

.features-list li:hover {
  background: var(--highlight-color);
}

.feature-check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.65rem;
}

/* PROMO BLOCK — timeline/step style */
.promo-block {
  background: var(--dark-color);
  color: white;
  padding: 2rem 1rem;
}

.promo-block-inner {
  max-width: 980px;
  margin: 0 auto;
}

.promo-block h2 {
  font-family: var(--main-font);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  text-align: center;
  letter-spacing: 1px;
  color: var(--highlight-color);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

@media (min-width: 768px) {
  .promo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.promo-card {
  background: rgba(255,255,255,0.05);
  padding: 1rem 1.1rem;
  border-radius: 6px;
  border: 1px solid rgba(232, 196, 154, 0.15);
  position: relative;
  text-align: center;
}

.promo-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  font-family: var(--alt-font);
}

.promo-card h3 {
  font-family: var(--main-font);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--highlight-color);
  letter-spacing: 0.3px;
}

.promo-card p {
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
}

/* TESTIMONIALS */
.testimonials {
  background: #F0E6DC;
  color: var(--text-color);
  padding: 2rem 1rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.4rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  padding: 1.1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: transform 0.22s ease;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 6px;
  right: 14px;
  font-size: 2.5rem;
  color: var(--highlight-color);
  font-family: var(--main-font);
  line-height: 1;
  opacity: 0.6;
}

.testimonial:hover {
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.testimonial-icon {
  width: 36px;
  height: 36px;
  background: var(--light-color);
  border: 1.5px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--main-font);
  color: var(--primary-color);
  letter-spacing: 0.3px;
}

.testimonial-location {
  font-size: 0.76rem;
  color: var(--text-color);
  opacity: 0.7;
}

.testimonial p {
  line-height: 1.6;
  font-size: 0.83rem;
}

/* FOOTER */
footer {
  background: var(--dark-color);
  color: white;
  padding: 1.4rem 1rem;
}

.footer-content {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  padding-bottom: 0.9rem;
}

@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.7rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav { justify-content: flex-end; }
}

.footer-content .logo { color: white; }
.footer-content .logo-icon {
  background: white;
  color: var(--dark-color);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.22s ease;
  font-size: 0.8rem;
}

.footer-nav a:hover { color: var(--highlight-color); }

.footer-credit {
  text-align: center;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
  max-width: 980px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}