:root {
  --primary-color: #6B4C7A;
  --secondary-color: #4A3556;
  --accent-color: #9B7EAE;
  --light-color: #F2EDF5;
  --dark-color: #2A1B33;
  --gradient-primary: linear-gradient(135deg, #6B4C7A 0%, #4A3556 100%);
  --hover-color: #5A3F67;
  --background-color: #FAF8FC;
  --text-color: #3A2E42;
  --border-color: rgba(107, 76, 122, 0.2);
  --divider-color: rgba(74, 53, 86, 0.1);
  --shadow-color: rgba(74, 53, 86, 0.11);
  --highlight-color: #C9A8D4;
  --main-font: 'Poppins', 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: 
    repeating-radial-gradient(circle at 0 0, transparent 0, var(--background-color) 10px),
    repeating-linear-gradient(rgba(155, 126, 174, 0.03), rgba(155, 126, 174, 0.03) 1px, transparent 1px, transparent 2px);
  background-size: 40px 40px, 20px 20px;
  background-position: 0 0, 10px 10px;
  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: -40%;
  right: 8%;
  width: 110px;
  height: 110px;
  border: 2px solid rgba(201, 168, 212, 0.2);
  border-radius: 25px;
  transform: rotate(15deg);
  display: none;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1050px;
  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.4rem;
  font-weight: bold;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--highlight-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transform: rotate(-5deg);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 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-wrapper {
  position: relative;
  padding: 1.2rem;
  border-radius: 18px;
  background: white;
  box-shadow: 0 4px 16px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.product-image {
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.02);
}

.guarantee-block {
  background: white;
  padding: 1.4rem;
  border-radius: 12px;
  border: 2px solid var(--accent-color);
  box-shadow: 0 3px 12px var(--shadow-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.guarantee-block p {
  font-size: 0.87rem;
  line-height: 1.5;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.9rem 0.5rem;
  background: linear-gradient(135deg, white 0%, var(--light-color) 100%);
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-item:hover {
  border-color: var(--accent-color);
  transform: scale(1.05);
  box-shadow: 0 4px 14px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.3;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 3px 12px var(--shadow-color);
}

.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: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-color);
  margin: 1rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--text-color);
}

.highlight-text {
  background: linear-gradient(135deg, var(--highlight-color) 0%, #E0C9E8 100%);
  color: var(--dark-color);
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  margin: 1.5rem 0;
  text-align: center;
  font-size: 0.93rem;
  box-shadow: 0 3px 12px var(--shadow-color);
  border: 2px solid var(--accent-color);
}

.features-list {
  list-style: none;
  margin: 1.5rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
  padding: 0.7rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent-color);
  font-size: 0.88rem;
}

.features-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 3px 12px var(--shadow-color);
}

.feature-check {
  width: 20px;
  height: 20px;
  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.7rem;
}

.benefits-section {
  background: var(--gradient-primary);
  color: white;
  padding: 3rem 1rem;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(201, 168, 212, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(155, 126, 174, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.benefits-section h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 1;
}

.benefits-content {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .benefits-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-box {
  background: rgba(255, 255, 255, 0.12);
  padding: 1.4rem;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-5px);
  border-color: var(--highlight-color);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.benefit-box-icon {
  width: 48px;
  height: 48px;
  background: var(--highlight-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 0.7rem;
  color: var(--dark-color);
}

.benefit-box h3 {
  font-family: var(--main-font);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.benefit-box p {
  line-height: 1.5;
  font-size: 0.85rem;
  opacity: 0.92;
}

.testimonials {
  background: var(--light-color);
  color: var(--text-color);
  padding: 3rem 1rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1050px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  padding: 1.4rem;
  border-radius: 12px;
  box-shadow: 0 3px 12px var(--shadow-color);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 18px var(--shadow-color);
  border-color: var(--accent-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.testimonial-icon {
  width: 42px;
  height: 42px;
  background: var(--highlight-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--dark-color);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: bold;
  font-size: 0.98rem;
  color: var(--primary-color);
}

.testimonial p {
  line-height: 1.5;
  font-size: 0.87rem;
  color: var(--text-color);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2rem 1rem;
}

.footer-content {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 1.2rem;
}

@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.2rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.82rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  max-width: 1050px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}