:root {
  --primary-color: #7A4560;
  --secondary-color: #5C3148;
  --accent-color: #A86080;
  --light-color: #FAF0F5;
  --dark-color: #25101C;
  --gradient-primary: linear-gradient(135deg, #7A4560 0%, #A86080 50%, #C49070 100%);
  --hover-color: #3E1E30;
  --background-color: #FDF8FA;
  --text-color: #2A1220;
  --border-color: rgba(122, 69, 96, 0.14);
  --divider-color: rgba(168, 96, 128, 0.1);
  --shadow-color: rgba(122, 69, 96, 0.1);
  --highlight-color: #F2D4C9;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Open Sans', 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);
  background-color: var(--background-color);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
}

.pattern-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background-color: var(--background-color);
  background-image:
    radial-gradient(circle at 80% 20%, rgba(168, 96, 128, 0.06) 0%, transparent 35%),
    radial-gradient(circle at 20% 80%, rgba(122, 69, 96, 0.05) 0%, transparent 35%),
    repeating-linear-gradient(135deg, transparent, transparent 44px, rgba(122, 69, 96, 0.016) 44px, rgba(122, 69, 96, 0.016) 45px);
}

header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
}

.header-decoration {
  position: absolute;
  top: 50%; right: 4%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.header-decoration span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
}

.header-decoration span:nth-child(1) { width: 44px; }
.header-decoration span:nth-child(2) { width: 30px; opacity: 0.6; }
.header-decoration span:nth-child(3) { width: 50px; }
.header-decoration span:nth-child(4) { width: 20px; opacity: 0.5; }
.header-decoration span:nth-child(5) { width: 36px; opacity: 0.7; }

@media (min-width: 768px) {
  .header-decoration { display: flex; }
}

.container {
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 0.05em;
}

.logo-icon {
  width: 33px; height: 33px;
  background: rgba(255,255,255,0.93);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.8rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  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-wrapper {
  background: white;
  padding: 1.2rem;
  border-radius: 10px;
  box-shadow: 0 3px 14px var(--shadow-color);
  border: 1px solid var(--border-color);
  text-align: center;
}

.product-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto;
}

.product-image:hover { transform: scale(1.02); }

.guarantee-block {
  background: var(--light-color);
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.guarantee-block p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-color);
}

/* feature-items: горизонтальные плитки в 3 колонки */
.features-icons {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
  padding: 0.6rem 0.4rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 4px var(--shadow-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--accent-color);
  background: var(--light-color);
  transform: translateY(-2px);
}

.feature-item .feature-icon {
  width: 36px; height: 36px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.feature-item span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--main-font);
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.85rem 1.8rem;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  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);
  letter-spacing: 0.06em;
  width: 100%;
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 16px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0.02em;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0.7rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
  line-height: 1.75;
  color: var(--text-color);
}

.highlight-text {
  background: var(--gradient-primary);
  color: white;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  margin: 0.8rem 0;
  text-align: center;
  font-size: 0.87rem;
  box-shadow: 0 2px 8px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.03em;
}

.features-list {
  list-style: none;
  margin: 0.8rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.55rem 0.8rem;
  background: white;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 4px var(--shadow-color);
  font-size: 0.82rem;
  transition: all 0.3s ease;
}

.features-list li:hover {
  border-color: var(--accent-color);
  background: var(--light-color);
}

.feature-check {
  width: 17px; height: 17px;
  background: var(--gradient-primary);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.6rem;
  margin-top: 0.1rem;
}

/* Benefits: большие цифры-статистика */
.benefits-strip {
  background: var(--light-color);
  padding: 2rem 1rem;
  border-top: 3px solid;
  border-image: var(--gradient-primary) 1;
}

.benefits-strip h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.03em;
}

.benefits-stats {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

@media (min-width: 768px) {
  .benefits-stats { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  background: white;
  border-radius: 8px;
  padding: 1rem 0.8rem;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 4px 14px var(--shadow-color);
}

.stat-icon {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-family: var(--main-font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.stat-desc {
  font-size: 0.77rem;
  color: var(--text-color);
  line-height: 1.45;
}

/* Testimonials */
.testimonials {
  background: var(--dark-color);
  padding: 2rem 1rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--light-color);
  letter-spacing: 0.04em;
}

.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: rgba(250, 240, 245, 0.07);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(250, 240, 245, 0.1);
  border-left: 3px solid var(--accent-color);
  transition: all 0.3s ease;
}

.testimonial:hover {
  background: rgba(250, 240, 245, 0.11);
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}

.testimonial-icon {
  width: 36px; height: 36px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--highlight-color);
  font-family: var(--main-font);
  letter-spacing: 0.03em;
}

.testimonial p {
  line-height: 1.6;
  font-size: 0.81rem;
  color: rgba(250, 240, 245, 0.87);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.4rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-content {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  padding-bottom: 0.7rem;
}

@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.9rem;
  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 ease;
  font-size: 0.79rem;
}

.footer-nav a:hover { color: var(--highlight-color); }

.footer-credit {
  text-align: center;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.48);
  font-size: 0.75rem;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}