:root {
  --primary-color: #6A1E9C;
  --secondary-color: #4B1461;
  --accent-color: #9B59B6;
  --light-color: #F1A9B8;
  --dark-color: #0C0F24;
  --gradient-primary: linear-gradient(135deg, #6A1E9C 0%, #4B1461 100%);
  --hover-color: #7D2AB3;
  --background-color: #F5F5F5;
  --text-color: #4B5563;
  --border-color: rgba(155, 89, 182, 0.2);
  --divider-color: rgba(75, 20, 97, 0.1);
  --shadow-color: rgba(106, 30, 156, 0.12);
  --highlight-color: #F79C92;
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Open Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

.pattern-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.04;
  background-image: 
    linear-gradient(0deg, transparent 24%, var(--primary-color) 25%, var(--primary-color) 26%, transparent 27%, transparent 74%, var(--primary-color) 75%, var(--primary-color) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, var(--primary-color) 25%, var(--primary-color) 26%, transparent 27%, transparent 74%, var(--primary-color) 75%, var(--primary-color) 76%, transparent 77%, transparent);
  background-size: 55px 55px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  box-shadow: 0 3px 12px var(--shadow-color);
}

header .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #ffffff;
  font-family: var(--main-font);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.9;
}

.logo-icon {
  font-size: 1.65rem;
  background: rgba(255, 255, 255, 0.14);
  padding: 0.38rem;
  border-radius: 7px;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.6rem 0;
}

main .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: start;
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

.product-image {
  width: 100%;
  display: block;
  border-radius: 9px;
  box-shadow: 0 5px 16px var(--shadow-color);
  display: flex;
  justify-content: center;
  background: #ffffff;
  padding: 1.15rem;
}

.product-image img {
  width: 63%;
  height: auto;
  display: block;
}

.guarantee-block {
  background: linear-gradient(135deg, #ffffff 0%, var(--light-color) 100%);
  border-left: 3px solid var(--accent-color);
  padding: 1.05rem;
  border-radius: 7px;
  box-shadow: 0 3px 11px var(--shadow-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  font-size: 1.02rem;
  color: var(--primary-color);
  margin-bottom: 0.48rem;
  font-weight: 700;
}

.guarantee-block p {
  color: var(--text-color);
  font-size: 0.86rem;
  line-height: 1.5;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  text-align: left;
  background-color: #ffffff;
  padding: 0.88rem;
  border-radius: 7px;
  box-shadow: 0 2px 9px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 13px var(--shadow-color);
}

.feature-icon {
  font-size: 1.85rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--primary-color);
}

.cart-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: #ffffff;
  text-decoration: none;
  padding: 0.88rem 1.95rem;
  border-radius: 7px;
  font-family: var(--main-font);
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  text-align: center;
  box-shadow: 0 4px 11px var(--shadow-color);
  transition: all 0.3s ease;
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.25rem;
  color: var(--primary-color);
  margin-bottom: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.9px;
}

.price {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.08rem;
  font-family: var(--main-font);
}

.product-description {
  margin-bottom: 1.08rem;
  line-height: 1.62;
}

.product-description p {
  margin-bottom: 0.78rem;
  color: var(--text-color);
  font-size: 0.9rem;
}

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 0.88rem 1.08rem;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.96rem;
  text-align: center;
  margin-bottom: 1.08rem;
  box-shadow: 0 3px 11px rgba(247, 156, 146, 0.3);
  border: 2px solid rgba(106, 30, 156, 0.12);
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.63rem;
  margin-bottom: 0.68rem;
  padding: 0.48rem;
  background-color: rgba(255, 255, 255, 0.55);
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.features-list li:hover {
  background-color: rgba(255, 255, 255, 0.88);
}

.feature-check {
  color: var(--accent-color);
  font-size: 0.98rem;
  font-weight: 700;
  flex-shrink: 0;
}

.benefits-banner {
  background: var(--gradient-primary);
  padding: 2.6rem 0;
  margin-top: 1.5rem;
}

.benefits-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.benefits-banner h2 {
  font-family: var(--main-font);
  font-size: 1.95rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.55px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.benefit-card {
  background-color: rgba(255, 255, 255, 0.97);
  padding: 1.4rem;
  border-radius: 9px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.19);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.benefit-content h3 {
  font-family: var(--main-font);
  font-size: 1.08rem;
  color: var(--primary-color);
  margin-bottom: 0.48rem;
  font-weight: 700;
}

.benefit-content p {
  color: var(--text-color);
  font-size: 0.85rem;
  line-height: 1.5;
}

.testimonials {
  background-color: var(--light-color);
  padding: 2.6rem 0;
  margin-top: 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  font-size: 1.95rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1.75rem;
  font-weight: 700;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.testimonial {
  background-color: #ffffff;
  padding: 1.25rem;
  border-radius: 9px;
  box-shadow: 0 3px 13px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 17px var(--shadow-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.78rem;
  margin-bottom: 0.88rem;
}

.testimonial-icon {
  font-size: 2.3rem;
  color: var(--accent-color);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--primary-color);
  font-family: var(--main-font);
}

.testimonial p {
  color: var(--text-color);
  line-height: 1.6;
  font-size: 0.85rem;
  font-style: italic;
}

footer {
  background-color: var(--dark-color);
  color: rgba(255, 255, 255, 0.85);
  padding: 1.85rem 0 1.08rem;
  margin-top: auto;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.08rem;
}

footer .logo {
  color: #ffffff;
}

.footer-nav {
  display: flex;
  list-style: none;
  gap: 1.45rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.85rem;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-credit {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.08rem 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: #ffffff;
}

@media (max-width: 968px) {
  .product-section {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .product-right h1 {
    font-size: 1.95rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 1.35rem;
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0.73rem;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .features-icons {
    grid-template-columns: 1fr;
  }

  .product-right h1 {
    font-size: 1.75rem;
  }

  .price {
    font-size: 1.45rem;
  }

  .benefits-banner h2,
  .testimonials h2 {
    font-size: 1.65rem;
  }
}