:root {
  --primary-color: #9B6B9E;
  --secondary-color: #E8D5E9;
  --accent-color: #6D4C6F;
  --light-color: #FAF7FB;
  --dark-color: #3C2A3D;
  --gradient-primary: linear-gradient(135deg, #9B6B9E 0%, #B484B7 100%);
  --hover-color: #AA7AAD;
  --background-color: #FFFCFE;
  --text-color: #4A3E4B;
  --border-color: rgba(155, 107, 158, 0.17);
  --divider-color: rgba(155, 107, 158, 0.09);
  --shadow-color: rgba(109, 76, 111, 0.11);
  --highlight-color: #C89CCB;
  --main-font: 'Raleway', sans-serif;
  --alt-font: 'Karla', 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 {
  background-image: 
    radial-gradient(circle at 30% 10%, rgba(139, 115, 85, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 70% 90%, rgba(217, 207, 194, 0.035) 0%, transparent 52%),
    repeating-linear-gradient(120deg, transparent, transparent 45px, rgba(139, 115, 85, 0.022) 45px, rgba(139, 115, 85, 0.022) 90px);
  background-size: 100% 100%, 100% 100%, 110px 110px;
  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;
  box-shadow: 0 2px 7px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 4%;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.26);
  border-radius: 10px;
  transform: translateY(-50%) rotate(-10deg);
  display: none;
}

.header-decoration::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  transform: translate(-50%, -50%) rotate(10deg);
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.76rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.72rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 0.88px;
}

.logo-icon {
  width: 43px;
  height: 43px;
  background: var(--highlight-color);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.38rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  transform: rotate(8deg);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.28rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 13px;
  box-shadow: 0 3px 11px var(--shadow-color);
  background: white;
  border: 1px solid var(--border-color);
}

.product-image-container picture {
  display: flex;
  justify-content: center;
}

.product-image {
  width: 100%;
  padding: 29px;
  height: auto;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .product-image {
    padding: 36px 40px;
  }
}

.product-image:hover {
  transform: scale(1.02);
}

.guarantee-block {
  background: linear-gradient(128deg, white 0%, var(--light-color) 100%);
  color: var(--text-color);
  padding: 1.48rem;
  border-radius: 13px;
  box-shadow: 0 3px 9px var(--shadow-color);
  border-left: 4px solid var(--primary-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.78rem;
  font-size: 0.99rem;
  font-weight: 700;
  letter-spacing: 0.48px;
}

.features-icons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

@media (min-width: 480px) {
  .features-icons {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 1rem;
  padding: 1.15rem 1.1rem;
  background: white;
  border-radius: 13px;
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-item:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 15px var(--shadow-color);
  border-color: var(--primary-color);
}

.feature-item .feature-icon {
  width: 46px;
  height: 46px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--main-font);
  letter-spacing: 0.38px;
  line-height: 1.45;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 1.12rem 2rem;
  border: none;
  border-radius: 13px;
  font-size: 0.99rem;
  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.68px;
}

.cart-button:hover {
  background: linear-gradient(125deg, 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.32rem;
  color: var(--primary-color);
  margin-bottom: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.82px;
}

.price {
  font-size: 1.82rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.02rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.95rem;
  margin-bottom: 1.52rem;
  line-height: 1.82;
  color: var(--text-color);
}

.highlight-text {
  background: var(--highlight-color);
  color: white;
  padding: 1.32rem;
  border-radius: 13px;
  font-weight: 700;
  margin: 1.52rem 0;
  text-align: center;
  font-size: 1.02rem;
  box-shadow: 0 3px 10px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.62px;
}

.features-list {
  list-style: none;
  margin: 1.52rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.98rem;
  margin-bottom: 0.98rem;
  padding: 1.08rem;
  background: white;
  border-radius: 13px;
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.features-list li:hover {
  transform: translateY(-2px) translateX(2px);
  box-shadow: 0 5px 13px var(--shadow-color);
  border-color: var(--primary-color);
}

.feature-check {
  width: 23px;
  height: 23px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.76rem;
}

.benefits-section {
  background: linear-gradient(170deg, white 0%, var(--light-color) 100%);
  padding: 3.1rem 1.5rem;
  position: relative;
  border-top: 1px solid var(--divider-color);
}

.benefits-content {
  max-width: 1150px;
  margin: 0 auto;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.92rem;
  font-weight: 700;
  margin-bottom: 2.35rem;
  letter-spacing: 0.72px;
  color: var(--primary-color);
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.85rem;
  margin-top: 2.05rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.benefit-card {
  background: white;
  padding: 0;
  border-radius: 13px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: 0 3px 11px var(--shadow-color);
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 7px 20px var(--shadow-color);
  border-color: var(--primary-color);
}

.benefit-icon {
  width: 100%;
  height: 70px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 1.08rem;
  font-weight: 700;
  margin: 1.2rem 1.5rem 0.82rem 1.5rem;
  letter-spacing: 0.52px;
  color: var(--accent-color);
}

.benefit-card p {
  font-size: 0.91rem;
  line-height: 1.78;
  color: var(--text-color);
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 3.1rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.25rem;
  font-size: 1.92rem;
  font-weight: 700;
  letter-spacing: 0.72px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.62rem;
  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.62rem;
  border-radius: 13px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.02rem;
  margin-bottom: 1.02rem;
}

.testimonial-icon {
  width: 47px;
  height: 47px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.38rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.02rem;
  font-family: var(--main-font);
  letter-spacing: 0.52px;
}

.testimonial p {
  line-height: 1.78;
  font-size: 0.91rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.02rem 1.5rem;
}

.footer-content {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.52rem;
  align-items: center;
  padding-bottom: 1.52rem;
}

@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.02rem;
  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.86rem;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.52rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.81rem;
  max-width: 1150px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}