:root {
  --primary-color: #7D2E3E;
  --secondary-color: #A63D52;
  --accent-color: #C0566A;
  --light-color: #FAF0F2;
  --dark-color: #3A1520;
  --gradient-primary: linear-gradient(135deg, #7D2E3E 0%, #A63D52 100%);
  --hover-color: #651E2E;
  --background-color: #FDFAFB;
  --text-color: #4A2530;
  --border-color: rgba(125, 46, 62, 0.13);
  --shadow-color: rgba(58, 21, 32, 0.09);
  --highlight-color: #F2D4C9;
  --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 - scattered dots clusters */
.pattern-bg {
  background-image:
    radial-gradient(circle, rgba(125,46,62,0.07) 1px, transparent 1px),
    radial-gradient(circle, rgba(125,46,62,0.04) 1px, transparent 1px);
  background-size: 22px 22px, 11px 11px;
  background-position: 0 0, 11px 11px;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}

header {
  background: var(--dark-color);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
}

header::before,
header::after {
  content: '';
  position: absolute;
  display: none;
}
@media (min-width: 768px) {
  header::before {
    display: block;
    right: 40px; top: 50%;
    transform: translateY(-50%);
    width: 55px; height: 55px;
    border: 2px solid rgba(242,212,201,0.18);
    border-radius: 50%;
  }
  header::after {
    display: block;
    right: 110px; top: 50%;
    transform: translateY(-50%);
    width: 30px; height: 30px;
    border: 2px solid rgba(242,212,201,0.12);
    border-radius: 50%;
  }
}

.container {
  max-width: 1060px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 34px; height: 34px;
  background: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  transform: rotate(10deg);
}

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.1rem;
}

.product-image-container {
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow-color);
  background: white;
  padding: 1.3rem;
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
}
.product-image-container::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 0 0 12px 12px;
}
.product-image-container picture { display: flex; justify-content: center; }
.product-image {
  width: 54%;
  height: auto;
  transition: transform 0.3s ease;
}
.product-image:hover { transform: scale(1.04); }

.guarantee-block {
  background: var(--gradient-primary);
  color: white;
  padding: 1.1rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 3px 12px var(--shadow-color);
  position: relative;
  overflow: hidden;
}
.guarantee-block::before {
  content: '✦';
  position: absolute;
  right: 12px; top: 8px;
  font-size: 2rem;
  opacity: 0.1;
}
.guarantee-block h3 {
  font-family: var(--main-font);
  color: white;
  margin-bottom: 0.4rem;
  font-size: 0.93rem;
  font-weight: 600;
}
.guarantee-block p { font-size: 0.83rem; line-height: 1.5; opacity: 0.92; }

/* feature-items as numbered steps */
.features-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.8rem 0.9rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 7px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  border-bottom: 3px solid var(--primary-color);
}
.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-color);
}
.feature-item .feature-icon {
  width: 34px; height: 34px;
  background: var(--light-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--primary-color);
}
.feature-item span {
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--alt-font);
  line-height: 1.25;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.82rem 1.6rem;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 12px rgba(125,46,62,0.25);
  font-family: var(--alt-font);
  letter-spacing: 0.03em;
}
.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(125,46,62,0.3);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.85rem;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
}
.price {
  font-size: 1.95rem;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0.7rem 0;
  font-family: var(--main-font);
}
.product-description {
  font-size: 0.87rem;
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-color);
}
.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  font-weight: 600;
  margin: 1rem 0;
  text-align: center;
  font-size: 0.91rem;
  font-family: var(--main-font);
  border-left: 4px solid var(--primary-color);
}

.features-list {
  list-style: none;
  margin: 1rem 0;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  padding: 0.7rem 0.9rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px var(--shadow-color);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.features-list li:hover { box-shadow: 0 3px 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.72rem;
}

/* Full-width benefits - split layout with icon row */
.promo-block {
  background: var(--primary-color);
  color: white;
  padding: 2.4rem 1.5rem;
}
.promo-block h2 {
  font-family: var(--main-font);
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 0.55rem;
  font-weight: 600;
}
.promo-subtitle {
  text-align: center;
  font-size: 0.88rem;
  opacity: 0.85;
  margin-bottom: 1.8rem;
  font-family: var(--alt-font);
}
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1060px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .promo-grid { grid-template-columns: repeat(4, 1fr); }
}
.promo-card {
  padding: 1.2rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: background 0.3s ease;
}
.promo-card:last-child { border-right: none; }
@media (max-width: 767px) {
  .promo-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .promo-card:last-child { border-bottom: none; }
}
.promo-card:hover { background: rgba(255,255,255,0.06); }
.promo-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  display: block;
}
.promo-card h3 {
  font-family: var(--main-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--highlight-color);
  margin-bottom: 0.35rem;
}
.promo-card p { font-size: 0.81rem; opacity: 0.87; line-height: 1.5; }

/* Testimonials */
.testimonials {
  background: var(--dark-color);
  padding: 2.2rem 1.5rem;
}
.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.7rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: white;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1060px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
.testimonial {
  background: rgba(255,255,255,0.07);
  padding: 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(242,212,201,0.15);
  transition: transform 0.3s ease;
}
.testimonial:hover { transform: translateY(-2px); }
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
}
.testimonial-icon {
  width: 38px; height: 38px;
  background: var(--highlight-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--dark-color);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--main-font);
  color: var(--highlight-color);
}
.testimonial p { line-height: 1.55; font-size: 0.85rem; color: rgba(255,255,255,0.86); }

/* Footer */
footer {
  background: var(--dark-color);
  color: white;
  padding: 1.7rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-content {
  max-width: 1060px;
  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.85rem;
  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;
  transition: color 0.3s;
  font-size: 0.83rem;
}
.footer-nav a:hover { color: var(--highlight-color); }
.footer-credit {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.48);
  font-size: 0.79rem;
  max-width: 1060px;
  margin: 0 auto;
}
.footer-credit a { color: var(--highlight-color); text-decoration: none; }