:root {
  --primary-color: #B22B5B;
  --secondary-color: #9C1C66;
  --accent-color: #F1A9B8;
  --light-color: #FFF0F3;
  --dark-color: #4A0E2C;
  --gradient-primary: linear-gradient(135deg, #B22B5B 0%, #9C1C66 100%);
  --hover-color: #C73B6B;
  --background-color: #FFFBFC;
  --text-color: #4B5563;
  --border-color: rgba(178, 43, 91, 0.2);
  --divider-color: rgba(156, 28, 102, 0.1);
  --shadow-color: rgba(156, 28, 102, 0.1);
  --highlight-color: #F7DC6F;
  --main-font: 'Lora', serif;
  --alt-font: 'Poppins', 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: 
    radial-gradient(circle at 10% 20%, rgba(178, 43, 91, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(241, 169, 184, 0.05) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(178, 43, 91, 0.015) 50px, rgba(178, 43, 91, 0.015) 100px);
  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;
  bottom: -30px;
  right: 8%;
  width: 90px;
  height: 90px;
  background: rgba(241, 169, 184, 0.15);
  border-radius: 30% 70% 70% 30%;
  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.6rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--highlight-color);
  border-radius: 20% 80% 80% 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 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.2rem;
}

.product-image-wrapper {
  position: relative;
}

.product-image {
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 14px var(--shadow-color);
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: translateY(-2px);
}

.guarantee-block {
  background: var(--light-color);
  padding: 1.1rem;
  border-radius: 8px;
  border-bottom: 3px solid var(--accent-color);
  box-shadow: 0 2px 8px var(--shadow-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.guarantee-block p {
  font-size: 0.85rem;
  line-height: 1.5;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px var(--shadow-color);
  transition: all 0.3s ease;
  border-left: 3px solid var(--accent-color);
}

.feature-item:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.feature-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-color);
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.85rem 1.6rem;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 3px 8px var(--shadow-color);
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0.9rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  line-height: 1.65;
  color: var(--text-color);
}

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 0.9rem;
  border-radius: 6px;
  font-weight: 600;
  margin: 1.2rem 0;
  text-align: center;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.features-list {
  list-style: none;
  margin: 1.2rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  padding: 0.6rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 6px var(--shadow-color);
  transition: transform 0.3s ease;
  font-size: 0.85rem;
}

.features-list li:hover {
  transform: translateX(3px);
}

.feature-check {
  width: 20px;
  height: 20px;
  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.8rem;
}

.benefits-section {
  background: var(--dark-color);
  color: white;
  padding: 2.2rem 1rem;
}

.benefits-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}

@media (min-width: 768px) {
  .benefits-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.3rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 3px solid var(--highlight-color);
}

.benefit-box-icon {
  width: 48px;
  height: 48px;
  background: var(--highlight-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--dark-color);
}

.benefit-box h3 {
  font-family: var(--main-font);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.2px;
}

.benefit-box p {
  line-height: 1.55;
  font-size: 0.85rem;
}

.testimonials {
  background: var(--light-color);
  color: var(--text-color);
  padding: 2.2rem 1rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--primary-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  padding: 1.2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow-color);
  border-left: 3px solid var(--accent-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.testimonial-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-color);
}

.testimonial p {
  line-height: 1.55;
  font-size: 0.85rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.8rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  padding-bottom: 0.9rem;
}

@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: 0.9rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.8rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}