:root {
  --primary-color: #6A1E9C;
  --secondary-color: #4B1461;
  --accent-color: #B22B5B;
  --light-color: #ECF1F1;
  --dark-color: #261E6B;
  --gradient-primary: linear-gradient(135deg, #1e739c 0%, #4B1461 100%);
  --hover-color: #7D25B3;
  --background-color: #FAFAFA;
  --text-color: #333333;
  --border-color: rgba(106, 30, 156, 0.2);
  --divider-color: rgba(75, 20, 97, 0.1);
  --shadow-color: rgba(106, 30, 156, 0.12);
  --highlight-color: #F4D03F;
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Roboto', 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: 
    linear-gradient(135deg, rgba(106, 30, 156, 0.03) 25%, transparent 25%),
    linear-gradient(225deg, rgba(106, 30, 156, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, rgba(178, 43, 91, 0.02) 25%, transparent 25%),
    linear-gradient(315deg, rgba(178, 43, 91, 0.02) 25%, transparent 25%);
  background-position: 0 0, 40px 0, 40px -40px, 0px 40px;
  background-size: 80px 80px;
  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: -30%;
  right: 8%;
  width: 160px;
  height: 160px;
  background: rgba(244, 208, 63, 0.1);
  transform: rotate(45deg);
  display: none;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.55rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--highlight-color);
  border-radius: 50% 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.1rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.6rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}

.product-image-wrapper {
  position: relative;
}

.product-image {
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 18px var(--shadow-color);
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: translateY(-4px);
}

.guarantee-block {
  background: white;
  padding: 1.45rem;
  border-radius: 10px;
  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.55rem;
  font-size: 1.03rem;
}

.guarantee-block p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.95rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 12px var(--shadow-color);
  transition: all 0.3s ease;
  border-bottom: 3px solid var(--accent-color);
}

.feature-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  font-size: 1.45rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.3;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.95rem 1.9rem;
  border: none;
  border-radius: 10px;
  font-size: 1.03rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 14px 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 18px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.45rem;
  color: var(--primary-color);
  margin-bottom: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.price {
  font-size: 2.05rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.05rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.95rem;
  margin-bottom: 1.55rem;
  line-height: 1.7;
  color: var(--text-color);
}

.product-description p {
  margin-bottom: 0.95rem;
}

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 1.15rem;
  border-radius: 10px;
  font-weight: 600;
  margin: 1.55rem 0;
  text-align: center;
  font-size: 1.03rem;
  box-shadow: 0 3px 14px var(--shadow-color);
}

.features-list {
  list-style: none;
  margin: 1.55rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.85rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--shadow-color);
  transition: transform 0.3s ease;
  font-size: 0.9rem;
  border-left: 3px solid var(--accent-color);
}

.features-list li:hover {
  transform: translateX(5px);
}

.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: white;
  padding: 2.7rem 1rem;
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

.benefits-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .benefits-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-box {
  background: var(--light-color);
  padding: 1.7rem;
  border-radius: 12px;
  text-align: left;
  border-left: 5px solid var(--accent-color);
  box-shadow: 0 3px 14px var(--shadow-color);
  transition: all 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 18px var(--shadow-color);
}

.benefit-box-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 0.95rem;
  color: white;
}

.benefit-box h3 {
  font-family: var(--main-font);
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  color: var(--primary-color);
  letter-spacing: 0.3px;
}

.benefit-box p {
  line-height: 1.6;
  font-size: 0.9rem;
  color: var(--text-color);
}

.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 3.1rem 1rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.2rem;
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: 0.45px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.45rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.07);
  padding: 1.45rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 1.05rem;
}

.testimonial-icon {
  width: 47px;
  height: 47px;
  background: var(--highlight-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--dark-color);
}

.testimonial-name {
  font-weight: 600;
  font-size: 1.01rem;
}

.testimonial p {
  line-height: 1.6;
  font-size: 0.9rem;
}

footer {
  background: var(--primary-color);
  color: white;
  padding: 2.05rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.45rem;
  align-items: center;
  padding-bottom: 1.05rem;
}

@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.05rem;
  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.85rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}