:root {
  --primary-color: #D01257;
  --secondary-color: #AB0E86;
  --accent-color: #FB90B7;
  --light-color: #FFEBF3;
  --dark-color: #7A0B42;
  --gradient-primary: linear-gradient(135deg, #E01171 0%, #D01257 100%);
  --hover-color: #B00F4C;
  --background-color: #FFFCFD;
  --text-color: #52525B;
  --border-color: rgba(251, 144, 183, 0.3);
  --divider-color: rgba(208, 18, 87, 0.1);
  --shadow-color: rgba(171, 14, 134, 0.18);
  --highlight-color: #FFEB00;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Open Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  line-height: 1.65;
  position: relative;
}

.background-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: var(--background-color);
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(208, 18, 87, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(171, 14, 134, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(251, 144, 183, 0.04) 0%, transparent 55%);
  overflow: hidden;
}

.background-pattern::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: 
    radial-gradient(circle, rgba(224, 17, 113, 0.1) 0%, transparent 65%);
  top: -150px;
  right: -100px;
  border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  animation: pulse 18s ease-in-out infinite;
}

.background-pattern::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  background: 
    radial-gradient(circle, rgba(251, 144, 183, 0.08) 0%, transparent 70%);
  bottom: -120px;
  left: -90px;
  border-radius: 60% 40% 45% 55% / 55% 50% 50% 45%;
  animation: pulse 22s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { 
    transform: translate(0, 0) scale(1); 
    opacity: 1;
  }
  50% { 
    transform: translate(25px, 25px) scale(1.15); 
    opacity: 0.85;
  }
}

/* Header */
.header-section {
  background: linear-gradient(180deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  position: relative;
  z-index: 20;
  box-shadow: 0 2px 12px var(--shadow-color);
}

.logo-container {
  color: #FFFFFF;
}

.logo-icon {
  color: var(--accent-color);
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 2.5px;
}

.header-decoration {
  display: none;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

/* Main Content */
.container {
  max-width: 1300px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: 420px 1fr;
  }
}

.left-column,
.right-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-card {
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--border-color);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 4px 14px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px var(--shadow-color);
}

/* Product Image */
.product-image-card {
  text-align: center;
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(255, 235, 243, 0.7) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.product-image {
  width: 100%;
  max-width: 370px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Guarantee Card */
.guarantee-card {
  background: linear-gradient(135deg, rgba(251, 144, 183, 0.12) 0%, rgba(208, 18, 87, 0.08) 100%);
  border-color: var(--accent-color);
  border-width: 2.5px;
}

.guarantee-icon {
  text-align: center;
  margin-bottom: 1.25rem;
}

.guarantee-title {
  font-family: var(--main-font);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.guarantee-text {
  margin-bottom: 1.25rem;
  text-align: center;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.7;
}

.guarantee-list {
  list-style: none;
  padding: 0;
}

.guarantee-list li {
  padding: 0.65rem 0;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.96rem;
}

/* CTA Card */
.cta-card {
  background: var(--gradient-primary);
  border: none;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 5px 18px rgba(208, 18, 87, 0.4);
}

.cta-title {
  font-family: var(--main-font);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.price-container {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: var(--main-font);
  color: var(--highlight-color);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  background: #FFFFFF;
  color: var(--primary-color);
  padding: 1.15rem 3.5rem;
  border-radius: 60px;
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  font-family: var(--main-font);
  letter-spacing: 1.5px;
}

.cta-button:hover {
  background: var(--highlight-color);
  color: var(--dark-color);
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

/* Description Card */
.main-heading {
  font-family: var(--main-font);
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.description-text {
  margin-bottom: 1.15rem;
  color: var(--text-color);
  font-size: 1.04rem;
  line-height: 1.7;
}

/* Highlight Card */
.highlight-card {
  background: linear-gradient(135deg, var(--highlight-color) 0%, #FFF59D 100%);
  border: 3px solid var(--primary-color);
  box-shadow: 0 6px 26px rgba(255, 235, 0, 0.5);
}

.highlight-content {
  text-align: center;
}

.highlight-icon {
  margin: 0 auto 1.25rem;
  display: block;
}

.highlight-title {
  font-family: var(--main-font);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  line-height: 1.35;
}

.highlight-price {
  font-size: 1.5rem;
  color: var(--dark-color);
  font-weight: 700;
}

/* Features List */
.features-heading {
  font-family: var(--main-font);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.features-list {
  list-style: none;
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.15rem;
  padding: 0.9rem;
  background: rgba(251, 144, 183, 0.08);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.feature-item:hover {
  background: rgba(251, 144, 183, 0.15);
}

.feature-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* Big Features Section */
.features-section {
  margin-top: 3rem;
  position: relative;
  z-index: 10;
}

.section-title {
  font-family: var(--main-font);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.big-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .big-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .big-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.big-feature-card {
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--border-color);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 14px var(--shadow-color);
  transition: all 0.3s ease;
}

.big-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px var(--shadow-color);
  border-color: var(--accent-color);
}

.big-feature-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.big-feature-title {
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.big-feature-text {
  color: var(--text-color);
  font-size: 0.97rem;
  line-height: 1.65;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  padding: 3rem 1rem;
  margin: 3rem -1rem -2rem -1rem;
  position: relative;
  z-index: 10;
}

.testimonials-section .section-title {
  color: #FFFFFF;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid var(--accent-color);
  border-radius: 14px;
  padding: 1.85rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-icon {
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--main-font);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.testimonial-rating {
  color: var(--highlight-color);
  font-size: 1.15rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
  color: var(--text-color);
  font-style: italic;
  line-height: 1.7;
  font-size: 0.99rem;
}

/* Footer */
.footer-section {
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--dark-color) 100%);
  color: #FFFFFF;
  position: relative;
  z-index: 20;
  box-shadow: 0 -2px 12px var(--shadow-color);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #FFFFFF;
}

.footer-logo .logo-icon {
  color: var(--accent-color);
}

.footer-logo-text {
  font-family: var(--main-font);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 2.5px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-nav ul {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.footer-link {
  color: rgba(255, 255, 255, 0.87);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.96rem;
}

.footer-link:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.73);
}

.footer-bottom a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}