:root {
  --primary-color: #6A4C7C;
  --secondary-color: #845A94;
  --accent-color: #9B6FAB;
  --light-color: #F3EDF8;
  --dark-color: #2E1A3A;
  --gradient-primary: linear-gradient(135deg, #6A4C7C 0%, #845A94 100%);
  --hover-color: #573C66;
  --background-color: #FAF7FC;
  --text-color: #3A2448;
  --border-color: rgba(106, 76, 124, 0.14);
  --shadow-color: rgba(46, 26, 58, 0.09);
  --highlight-color: #E8D5F0;
  --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 — diagonal stripes */
.pattern-bg {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(106, 76, 124, 0.035) 18px,
    rgba(106, 76, 124, 0.035) 19px
  );
  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: -30px;
    width: 110px; height: 110px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.15;
  }
  header::after {
    display: block;
    right: 220px; top: 8px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--highlight-color);
    opacity: 0.18;
  }
}

.container {
  max-width: 970px;
  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;
  letter-spacing: 0.03em;
  width: fit-content;
}
.logo-icon {
  width: 34px; height: 34px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.25);
}

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: 16px;
  box-shadow: 0 4px 18px var(--shadow-color);
  background: white;
  padding: 1.3rem;
  border: 1px solid var(--border-color);
  text-align: center;
}
.product-image-container picture { display: flex; justify-content: center; }
.product-image {
  width: 50%;
  height: auto;
  transition: transform 0.3s ease;
}
.product-image:hover { transform: scale(1.04); }

.guarantee-block {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 1rem 1.1rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px var(--shadow-color);
  border: 1px solid rgba(106,76,124,0.18);
}
.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--dark-color);
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.guarantee-block p { font-size: 0.83rem; line-height: 1.5; color: var(--text-color); }

/* feature-items — tags/chips in a flex-wrap row */
.features-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  background: white;
  border-radius: 50px;
  box-shadow: 0 2px 6px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.feature-item:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}
.feature-item:hover .feature-icon { background: rgba(255,255,255,0.2); }
.feature-item:hover span:last-child { color: white; }
.feature-item .feature-icon {
  width: 26px; height: 26px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: background 0.3s;
}
.feature-item span:last-child {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--alt-font);
  white-space: nowrap;
  transition: color 0.3s;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.82rem 1.7rem;
  border: none;
  border-radius: 10px;
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 3px 10px var(--shadow-color);
  font-family: var(--main-font);
}
.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 14px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.85rem;
  color: var(--primary-color);
  margin-bottom: 0.65rem;
  font-weight: 600;
  line-height: 1.2;
}
.price {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0.7rem 0;
  font-family: var(--main-font);
}
.product-description {
  font-size: 0.88rem;
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-color);
}
.highlight-text {
  background: var(--gradient-primary);
  color: white;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  font-weight: 600;
  margin: 1rem 0;
  text-align: center;
  font-size: 0.91rem;
  font-family: var(--main-font);
}

.features-list {
  list-style: none;
  margin: 1rem 0;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
  padding: 0.7rem 0.9rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px var(--shadow-color);
  border: 1px solid var(--border-color);
  font-size: 0.86rem;
  transition: all 0.3s ease;
}
.features-list li:hover {
  border-color: var(--primary-color);
  transform: translateX(3px);
}
.feature-check {
  width: 18px; height: 18px;
  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 block — horizontal steps */
.promo-block {
  background: var(--primary-color);
  padding: 2.2rem 1.5rem;
}
.promo-block h2 {
  font-family: var(--main-font);
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1.7rem;
  color: white;
  font-weight: 600;
}
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  max-width: 970px;
  margin: 0 auto;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .promo-grid { grid-template-columns: repeat(3, 1fr); }
}
.promo-card {
  background: rgba(255,255,255,0.08);
  padding: 1.3rem 1.1rem;
  text-align: center;
  transition: background 0.3s ease;
}
.promo-card:hover { background: rgba(255,255,255,0.14); }
.promo-card-icon {
  font-size: 1.7rem;
  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.4rem;
}
.promo-card p { font-size: 0.82rem; color: rgba(255,255,255,0.88); line-height: 1.55; }

/* 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: 970px;
  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(232,213,240,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.1rem;
  color: var(--dark-color);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
  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.87); }

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: 970px;
  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.75);
  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.5);
  font-size: 0.79rem;
  max-width: 970px;
  margin: 0 auto;
}
.footer-credit a { color: var(--highlight-color); text-decoration: none; }