:root {
  --primary-color: #6B5B95;
  --secondary-color: #8B7BAC;
  --accent-color: #9D8CBB;
  --light-color: #F5F3F8;
  --dark-color: #3D3350;
  --gradient-primary: linear-gradient(135deg, #6B5B95 0%, #8B7BAC 100%);
  --hover-color: #5A4A84;
  --background-color: #FCFBFD;
  --text-color: #4D4360;
  --border-color: rgba(107, 91, 149, 0.2);
  --shadow-color: rgba(61, 51, 80, 0.12);
  --highlight-color: #C7A86D;
  --main-font: 'Poppins', sans-serif;
  --alt-font: 'Inter', 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: 
    linear-gradient(135deg, rgba(107, 91, 149, 0.03) 25%, transparent 25%),
    linear-gradient(225deg, rgba(107, 91, 149, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, rgba(139, 123, 172, 0.03) 25%, transparent 25%),
    linear-gradient(315deg, rgba(139, 123, 172, 0.03) 25%, transparent 25%);
  background-size: 80px 80px;
  background-position: 0 0, 40px 0, 40px -40px, 0 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  background: var(--primary-color);
  padding: 1.2rem 0;
  position: relative;
  box-shadow: 0 2px 5px var(--shadow-color);
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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;
  border-radius: 14px;
  box-shadow: 0 4px 16px var(--shadow-color);
  background: white;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.product-image-container picture {
  display: flex;
  justify-content: center;
}

.product-image {
  width: 50%;
  height: auto;
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.03);
}

.guarantee-block {
  background: var(--secondary-color);
  color: white;
  padding: 1.3rem;
  border-radius: 12px;
  box-shadow: 0 3px 12px var(--shadow-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: white;
  margin-bottom: 0.6rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.guarantee-block p {
  font-size: 0.88rem;
  line-height: 1.5;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .features-icons {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
  padding: 1.2rem 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 9px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: 0 5px 14px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-color);
  font-family: var(--main-font);
  line-height: 1.4;
}

.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 3px 11px var(--shadow-color);
  font-family: var(--main-font);
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 14px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.price {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.92rem;
  margin-bottom: 1.4rem;
  line-height: 1.7;
  color: var(--text-color);
}

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 1.1rem;
  border-radius: 12px;
  font-weight: 500;
  margin: 1.4rem 0;
  text-align: center;
  font-size: 0.98rem;
  box-shadow: 0 3px 9px rgba(199, 168, 109, 0.25);
  font-family: var(--main-font);
}

.features-list {
  list-style: none;
  margin: 1.4rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
  padding: 0.9rem 1.1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 7px var(--shadow-color);
  transition: all 0.3s ease;
  border-left: 3px solid var(--primary-color);
}

.features-list li:hover {
  transform: translateX(3px);
  box-shadow: 0 3px 10px var(--shadow-color);
}

.feature-check {
  width: 22px;
  height: 22px;
  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.83rem;
}

.benefits-section {
  background: var(--light-color);
  padding: 3rem 1.5rem;
  margin: 0;
}

.benefits-section h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.2rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1150px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.benefit-card {
  background: white;
  padding: 1.6rem 1.5rem;
  border-radius: 14px;
  box-shadow: 0 3px 12px var(--shadow-color);
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 16px var(--shadow-color);
  border-color: var(--accent-color);
}

.benefit-icon {
  width: 54px;
  height: 54px;
  background: var(--accent-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-family: var(--main-font);
  font-size: 1.12rem;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.benefit-content p {
  line-height: 1.6;
  color: var(--text-color);
  font-size: 0.91rem;
}

.advantages-section {
  background: white;
  padding: 3rem 1.5rem;
  margin: 0;
}

.advantages-section h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.2rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
}

.advantages-container {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .advantages-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.advantage-item {
  background: var(--light-color);
  padding: 1.7rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: all 0.3s ease;
  border-bottom: 3px solid var(--primary-color);
}

.advantage-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 14px var(--shadow-color);
}

.advantage-icon {
  width: 58px;
  height: 58px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.1rem;
}

.advantage-item h3 {
  font-family: var(--main-font);
  font-size: 1.08rem;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.advantage-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-color);
}

.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 3rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.2rem;
  font-size: 2rem;
  font-weight: 600;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.07);
  padding: 1.3rem;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.testimonial-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.98rem;
  font-family: var(--main-font);
}

.testimonial p {
  line-height: 1.6;
  font-size: 0.92rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.2rem 1.5rem;
}

.footer-content {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 1.5rem;
}

@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.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  max-width: 1150px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}