:root {
  --primary-color: #9C1C66;
  --secondary-color: #B22B5B;
  --accent-color: #F1A9B8;
  --light-color: #FCF0F3;
  --dark-color: #4B1461;
  --gradient-primary: linear-gradient(135deg, #9C1C66 0%, #B22B5B 100%);
  --background-color: #FFF8FA;
  --text-color: #3A3A3A;
  --border-color: rgba(241, 169, 184, 0.3);
  --shadow-color: rgba(156, 28, 102, 0.14);
  --main-font: 'Montserrat', 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.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
  direction: rtl;
}

.pattern-bg {
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(241, 169, 184, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(156, 28, 102, 0.04) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent 0px, transparent 40px, rgba(241, 169, 184, 0.02) 40px, rgba(241, 169, 184, 0.02) 80px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  box-shadow: 0 3px 12px var(--shadow-color);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
}

.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;
  text-align: center;
  background: linear-gradient(135deg, rgba(241, 169, 184, 0.1) 0%, rgba(255, 255, 255, 0.5) 100%);
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px var(--shadow-color);
  border: 2px solid var(--border-color);
}

.product-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.guarantee-block {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 14px var(--shadow-color);
  border-top: 4px solid var(--accent-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.guarantee-block p {
  font-size: 0.92rem;
  line-height: 1.75;
}

.product-features {
  background: white;
  padding: 1.6rem;
  border-radius: 10px;
  box-shadow: 0 4px 14px var(--shadow-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem;
  background: var(--light-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-box:hover {
  transform: translateX(-4px);
  border-color: var(--accent-color);
  background: white;
}

.feature-box .feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-box span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-color);
}

.order-button {
  background: var(--gradient-primary);
  color: white;
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-family: var(--main-font);
  box-shadow: 0 5px 15px var(--shadow-color);
}

.order-button:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.6rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.price-tag {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 1rem 0;
  font-family: var(--main-font);
}

.product-info {
  font-size: 0.98rem;
  margin-bottom: 1.6rem;
  line-height: 1.8;
  color: var(--text-color);
}

.product-info p {
  margin-bottom: 1rem;
}

.cta-message {
  background: var(--gradient-primary);
  color: white;
  padding: 1.3rem;
  border-radius: 10px;
  font-weight: 700;
  margin: 1.6rem 0;
  text-align: center;
  font-size: 1.08rem;
  font-family: var(--main-font);
  box-shadow: 0 4px 14px var(--shadow-color);
}

.benefits-list {
  list-style: none;
  margin: 1.6rem 0;
  display: grid;
  gap: 0.9rem;
}

.benefits-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefits-list li:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
  box-shadow: 0 5px 15px var(--shadow-color);
}

.check-mark {
  width: 26px;
  height: 26px;
  background: var(--gradient-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 2px;
}

.advantages-section {
  background: var(--light-color);
  padding: 3rem 1.2rem;
  margin: 2rem 0;
}

.advantages-container {
  max-width: 1100px;
  margin: 0 auto;
}

.advantages-section h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.8rem;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.advantage-item {
  padding: 2rem 1.6rem;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: start;
  gap: 1.2rem;
}

.advantage-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 8px 20px var(--shadow-color);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
}

.advantage-item h3 {
  font-family: var(--main-font);
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  color: var(--primary-color);
  font-weight: 700;
}

.advantage-item p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-color);
}

.reviews-section {
  background: var(--background-color);
  padding: 3rem 1.2rem;
}

.reviews-section h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.8rem;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.reviews-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .reviews-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review-card {
  background: white;
  padding: 1.8rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 14px var(--shadow-color);
  border-right: 5px solid var(--accent-color);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px var(--shadow-color);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.reviewer-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.reviewer-name {
  font-weight: 700;
  font-size: 1.08rem;
  font-family: var(--main-font);
  color: var(--primary-color);
}

.review-card p {
  line-height: 1.8;
  font-size: 0.94rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2rem 1.2rem;
}

.footer-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 1.2rem;
}

@media (min-width: 768px) {
  .footer-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-links {
    justify-content: flex-end;
  }
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-bottom a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}