:root {
  --primary-color: #6A1E9C;
  --secondary-color: #8B3DB8;
  --accent-color: #9F59C4;
  --light-color: #F9F4FC;
  --dark-color: #2D0A3D;
  --gradient-primary: linear-gradient(135deg, #8B3DB8 0%, #6A1E9C 100%);
  --hover-color: #7A2AA8;
  --background-color: #FEFCFF;
  --text-color: #4D3A56;
  --border-color: rgba(106, 30, 156, 0.18);
  --divider-color: rgba(106, 30, 156, 0.1);
  --shadow-color: rgba(106, 30, 156, 0.16);
  --highlight-color: #C0E0B1;
  --main-font: 'Roboto Condensed', 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);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
  background-color: var(--background-color);
  direction: rtl;
}

.pattern-bg {
  background-image: 
    linear-gradient(135deg, rgba(106, 30, 156, 0.02) 25%, transparent 25%),
    linear-gradient(225deg, rgba(106, 30, 156, 0.02) 25%, transparent 25%),
    linear-gradient(45deg, rgba(106, 30, 156, 0.02) 25%, transparent 25%),
    linear-gradient(315deg, rgba(106, 30, 156, 0.02) 25%, transparent 25%);
  background-size: 60px 60px;
  background-position: 0 0, 30px 0, 30px -30px, 0px 30px;
  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 5px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  left: 7%;
  width: 38px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: translateY(-50%);
  display: none;
}

.header-decoration::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1100px;
  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.6rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

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.3rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 14px;
  box-shadow: 0 3px 12px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.product-image {
  width: 100%;
  padding: 25px;
  height: auto;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .product-image {
    padding: 30px 40px;
  }
}

.product-image:hover {
  transform: scale(1.03);
}

.guarantee-block {
  background: white;
  color: var(--text-color);
  padding: 1.4rem;
  border-radius: 14px;
  box-shadow: 0 3px 12px var(--shadow-color);
  border: 1px solid var(--border-color);
  border-right: 5px solid var(--primary-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-size: 1rem;
  font-weight: 600;
}

.guarantee-block p {
  font-size: 0.88rem;
  line-height: 1.5;
}

.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: white;
  border-radius: 14px;
  box-shadow: 0 3px 12px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-item:hover {
  transform: translateX(-5px);
  box-shadow: 0 4px 16px var(--shadow-color);
  border-color: var(--accent-color);
}

.feature-item .feature-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px var(--shadow-color);
}

.feature-item span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--main-font);
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 14px;
  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 4px 12px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.5px;
}

.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.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.2rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
  color: var(--text-color);
}

.product-description p {
  margin-bottom: 1rem;
}

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 1.3rem;
  border-radius: 14px;
  font-weight: 600;
  margin: 1.5rem 0;
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 3px 10px rgba(192, 224, 177, 0.4);
  font-family: var(--main-font);
}

.features-list {
  list-style: none;
  margin: 1.5rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 14px;
  box-shadow: 0 3px 12px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.features-list li:hover {
  transform: translateX(-4px);
  box-shadow: 0 4px 14px var(--shadow-color);
  border-color: var(--accent-color);
}

.feature-check {
  width: 24px;
  height: 24px;
  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.8rem;
}

.benefits-section {
  padding: 2.5rem 1.2rem;
  background: linear-gradient(to bottom, var(--light-color) 0%, white 100%);
  border-top: 1px solid var(--border-color);
}

.benefits-content {
  max-width: 1100px;
  margin: 0 auto;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 2.2rem;
  text-align: center;
  color: var(--primary-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  opacity: 0.08;
  border-radius: 0 14px 0 100%;
}

.benefit-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 18px var(--shadow-color);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 54px;
  height: 54px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 3px 10px var(--shadow-color);
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--dark-color);
}

.benefit-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-color);
}

.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 2.5rem 1.2rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.4rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.testimonial:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--main-font);
}

.testimonial p {
  line-height: 1.6;
  font-size: 0.87rem;
  opacity: 0.92;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2rem 1.2rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  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: 1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-start;
  }
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.85rem;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}