:root {
  --primary-color: #A03050;
  --secondary-color: #B84060;
  --accent-color: #7A4A55;
  --light-color: #F5DDD8;
  --dark-color: #3A1A22;
  --gradient-primary: linear-gradient(135deg, #A03050 0%, #B84060 100%);
  --hover-color: #882840;
  --background-color: #FAF7F6;
  --text-color: #2E2020;
  --border-color: rgba(160, 48, 80, 0.16);
  --divider-color: rgba(160, 48, 80, 0.08);
  --shadow-color: rgba(160, 48, 80, 0.10);
  --highlight-color: #E8A0A0;
  --main-font: 'Roboto Condensed', sans-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 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image:
    radial-gradient(circle at 80% 10%, rgba(245, 221, 216, 0.45) 0%, transparent 38%),
    radial-gradient(circle at 20% 90%, rgba(160, 48, 80, 0.06) 0%, transparent 38%),
    repeating-linear-gradient(
      -30deg,
      transparent,
      transparent 40px,
      rgba(245, 221, 216, 0.10) 40px,
      rgba(245, 221, 216, 0.10) 41px
    );
}

header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 55px;
  height: 55px;
  background: rgba(245, 221, 216, 0.12);
  border-radius: 4px;
  transform: translateY(-50%) rotate(15deg);
  display: none;
}

.header-decoration::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid rgba(245, 221, 216, 0.2);
  border-radius: 2px;
}

.header-decoration-2 {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 18px;
  height: 18px;
  background: rgba(245, 221, 216, 0.15);
  border-radius: 50%;
  display: none;
}

@media (min-width: 768px) {
  .header-decoration,
  .header-decoration-2 {
    display: block;
  }
}

.container {
  max-width: 1050px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.55rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: rgba(245, 221, 216, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 2px solid rgba(245, 221, 216, 0.35);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-image-container {
  position: relative;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px var(--shadow-color);
  transition: transform 0.3s ease;
  display: block;
}

.product-image:hover {
  transform: translateY(-4px);
}

.guarantee-block {
  background: white;
  color: var(--text-color);
  padding: 1.5rem 1.6rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px var(--shadow-color);
  border-left: 5px solid var(--primary-color);
  position: relative;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.guarantee-block p {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--text-color);
}

/* feature-items — горизонтальные плашки с иконкой слева */
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-item:hover {
  transform: translateX(5px);
  border-color: var(--primary-color);
}

.feature-item .feature-icon {
  width: 44px;
  height: 44px;
  background: var(--light-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--main-font);
  letter-spacing: 0.02em;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 1.1rem 2.5rem;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 5px 16px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.3rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0.9rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.91rem;
  margin-bottom: 1.4rem;
  line-height: 1.85;
  color: var(--text-color);
}

.product-description p + p {
  margin-top: 0.8rem;
}

.highlight-text {
  background: linear-gradient(135deg, #A03050 0%, #C04868 100%);
  color: white;
  padding: 1.2rem 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  margin: 1.4rem 0;
  text-align: center;
  font-size: 0.98rem;
  box-shadow: 0 5px 16px rgba(160, 48, 80, 0.28);
  font-family: var(--main-font);
  letter-spacing: 0.03em;
  border: 2px solid rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
}

.features-list {
  list-style: none;
  margin: 1.4rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
  padding: 0.9rem 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--light-color);
  font-size: 0.88rem;
}

.features-list li:hover {
  box-shadow: 0 4px 14px var(--shadow-color);
  border-bottom-color: var(--primary-color);
}

.feature-check {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.72rem;
  margin-top: 1px;
}

/* MID BLOCK — горизонтальный список преимуществ с разделителями */
.mid-block {
  background: var(--light-color);
  padding: 3rem 1.5rem;
}

.mid-block-inner {
  max-width: 1050px;
  margin: 0 auto;
}

.mid-block h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.2rem;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mid-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .mid-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mid-card {
  padding: 1.8rem 1.4rem;
  text-align: center;
  border-right: 1px solid rgba(160, 48, 80, 0.15);
  border-bottom: 1px solid rgba(160, 48, 80, 0.15);
  transition: background 0.3s ease;
}

@media (min-width: 768px) {
  .mid-card:last-child {
    border-right: none;
  }
  .mid-card {
    border-bottom: none;
  }
}

.mid-card:hover {
  background: rgba(160, 48, 80, 0.05);
}

.mid-card-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.mid-card h3 {
  font-family: var(--main-font);
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.02em;
}

.mid-card p {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-color);
}

/* TESTIMONIALS */
.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 3.5rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  max-width: 1050px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.6rem;
  border-radius: 12px;
  border-top: 3px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-icon {
  width: 44px;
  height: 44px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.98rem;
  font-family: var(--main-font);
  letter-spacing: 0.02em;
}

.testimonial-location {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.testimonial p {
  line-height: 1.75;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.88);
}

/* FOOTER */
footer {
  background: var(--primary-color);
  color: white;
  padding: 2rem 1.5rem;
}

.footer-content {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: center;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

@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: 1.1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.84rem;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  max-width: 1050px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}