:root {
  --primary-color: #630E76;
  --secondary-color: #4B1461;
  --accent-color: #9C1C66;
  --light-color: #F5F5F5;
  --dark-color: #261E6B;
  --gradient-primary: linear-gradient(135deg, #630E76 0%, #4B1461 100%);
  --hover-color: #7A1289;
  --background-color: #FDFBFF;
  --text-color: #3A3A3A;
  --border-color: rgba(99, 14, 118, 0.2);
  --divider-color: rgba(75, 20, 97, 0.1);
  --shadow-color: rgba(99, 14, 118, 0.12);
  --highlight-color: #F2D4C9;
  --main-font: 'Montserrat', 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 {
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(99, 14, 118, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(156, 28, 102, 0.04) 0%, transparent 50%),
    repeating-linear-gradient(90deg, transparent 0px, transparent 60px, rgba(99, 14, 118, 0.02) 60px, rgba(99, 14, 118, 0.02) 61px),
    repeating-linear-gradient(0deg, transparent 0px, transparent 60px, rgba(156, 28, 102, 0.02) 60px, rgba(156, 28, 102, 0.02) 61px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
}

.header-decoration {
  position: absolute;
  top: -35%;
  right: 5%;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(242, 212, 201, 0.15);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: none;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--highlight-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.2rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.8rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.product-image-wrapper {
  position: relative;
}

.product-image {
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px var(--shadow-color);
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.02);
}

.guarantee-block {
  background: var(--light-color);
  padding: 1.5rem;
  border-radius: 10px;
  border-top: 4px solid var(--accent-color);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.guarantee-block p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.features-icons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow-color);
  transition: all 0.3s ease;
  border-left: 3px solid var(--accent-color);
}

.feature-item:hover {
  transform: translateX(5px);
  box-shadow: 0 3px 14px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.9rem;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 12px var(--shadow-color);
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.price {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.1rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--text-color);
}

.product-description p {
  margin-bottom: 0.9rem;
}

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 1.1rem;
  border-radius: 8px;
  font-weight: 600;
  margin: 1.5rem 0;
  text-align: center;
  font-size: 1.05rem;
  box-shadow: 0 3px 12px var(--shadow-color);
}

.features-list {
  list-style: none;
  margin: 1.5rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  padding: 0.8rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow-color);
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.features-list li:hover {
  transform: translateX(4px);
}

.feature-check {
  width: 24px;
  height: 24px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.benefits-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 2.8rem 1rem;
}

.benefits-content {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

@media (min-width: 768px) {
  .benefits-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.6rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.benefit-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.benefit-box-icon {
  width: 58px;
  height: 58px;
  background: var(--highlight-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 0.9rem;
  color: var(--primary-color);
}

.benefit-box h3 {
  font-family: var(--main-font);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.3px;
}

.benefit-box p {
  line-height: 1.6;
  font-size: 0.88rem;
  opacity: 0.95;
}

.testimonials {
  background: var(--secondary-color);
  color: white;
  padding: 3.2rem 1rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.3rem;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1150px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.testimonial-icon {
  width: 48px;
  height: 48px;
  background: var(--highlight-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.testimonial-name {
  font-weight: 600;
  font-size: 1.02rem;
}

.testimonial p {
  line-height: 1.6;
  font-size: 0.9rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.1rem 1rem;
}

.footer-content {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 1.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: 1.1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.85rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  max-width: 1150px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}