:root {
  --primary-color: #7B2D42;
  --secondary-color: #5C1E30;
  --accent-color: #C0566E;
  --light-color: #F9EEF1;
  --dark-color: #2E0F1A;
  --gradient-primary: linear-gradient(135deg, #5C1E30 0%, #C0566E 100%);
  --hover-color: #471626;
  --background-color: #FDF5F7;
  --text-color: #2E1820;
  --border-color: rgba(123, 45, 66, 0.16);
  --divider-color: rgba(192, 86, 110, 0.1);
  --shadow-color: rgba(92, 30, 48, 0.1);
  --highlight-color: #F0A55A;
  --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-color: var(--background-color);
  background-image:
    radial-gradient(circle at 10% 80%, rgba(192, 86, 110, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(123, 45, 66, 0.05) 0%, transparent 40%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 18px,
      rgba(123, 45, 66, 0.018) 18px,
      rgba(123, 45, 66, 0.018) 19px
    );
  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: 50%;
  right: 4%;
  display: none;
  transform: translateY(-50%);
  gap: 8px;
  align-items: center;
}

.header-decoration span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.header-decoration span:nth-child(2) {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.15);
}

.header-decoration span:nth-child(3) {
  width: 6px;
  height: 6px;
}

@media (min-width: 768px) {
  .header-decoration {
    display: flex;
  }
}

.container {
  max-width: 1020px;
  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: 34px;
  height: 34px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-color);
}

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: 1rem;
}

/* Image wrapper with diagonal corner accent */
.product-image-wrapper {
  position: relative;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.product-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 0 0 12px 0;
  opacity: 0.25;
  z-index: -1;
}

.product-image {
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
  display: block;
}

.product-image:hover {
  transform: scale(1.02);
}

/* Guarantee with top accent bar */
.guarantee-block {
  background: white;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border-top: 3px solid var(--accent-color);
  box-shadow: 0 3px 8px var(--shadow-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.guarantee-block p {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text-color);
}

/* feature-items as numbered steps */
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  counter-reset: feature-counter;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  counter-increment: feature-counter;
  position: relative;
}

.feature-item:hover {
  box-shadow: 0 4px 10px var(--shadow-color);
  border-color: var(--accent-color);
  background: var(--light-color);
}

.feature-item .feature-icon {
  width: 40px;
  height: 40px;
  background: var(--light-color);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--primary-color);
}

.feature-item span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.35;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: 50px;
  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 4px 14px var(--shadow-color);
  font-family: var(--alt-font);
  letter-spacing: 0.04em;
  width: 100%;
}

.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: 1.85rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
}

.price {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0.8rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.86rem;
  margin-bottom: 0.85rem;
  line-height: 1.75;
  color: var(--text-color);
}

.highlight-text {
  background: linear-gradient(135deg, var(--highlight-color) 0%, #E8943A 100%);
  color: #2E0F1A;
  padding: 0.9rem 1.1rem;
  border-radius: 50px;
  font-weight: 700;
  margin: 0.9rem 0;
  text-align: center;
  font-size: 0.88rem;
  box-shadow: 0 3px 10px rgba(240, 165, 90, 0.3);
  font-family: var(--main-font);
}

.features-list {
  list-style: none;
  margin: 0.9rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
  padding: 0.6rem 0.9rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px var(--shadow-color);
  font-size: 0.83rem;
  border-right: 3px solid var(--accent-color);
  transition: all 0.25s ease;
}

.features-list li:hover {
  background: var(--light-color);
  transform: translateX(-2px);
}

.feature-check {
  width: 18px;
  height: 18px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 0.1rem;
}

/* Benefits — timeline-style vertical list on light bg */
.benefits-section {
  background: var(--background-color);
  color: var(--text-color);
  padding: 2.3rem 1rem;
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.benefits-section h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.8rem;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary-color);
}

.benefits-content {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

.benefits-content::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

@media (min-width: 768px) {
  .benefits-content {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  .benefits-content::before {
    display: none;
  }
}

/* Timeline card style */
.benefit-box {
  background: white;
  padding: 1.1rem 1.1rem 1.1rem 4rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px var(--shadow-color);
  position: relative;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .benefit-box {
    padding: 1.1rem 1.1rem 1.1rem 1.1rem;
    margin-bottom: 0;
  }
}

.benefit-box:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
  box-shadow: 0 4px 14px var(--shadow-color);
}

.benefit-box-icon {
  width: 46px;
  height: 46px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  position: absolute;
  left: -0px;
  top: 50%;
  transform: translateY(-50%);
  left: 0.7rem;
  z-index: 1;
}

@media (min-width: 768px) {
  .benefit-box-icon {
    position: static;
    transform: none;
    margin-bottom: 0.7rem;
  }
}

.benefit-box h3 {
  font-family: var(--main-font);
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--primary-color);
  font-weight: 700;
}

.benefit-box p {
  line-height: 1.6;
  font-size: 0.83rem;
  color: var(--text-color);
}

.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.6rem;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  max-width: 1020px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  padding: 1.1rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 3rem;
  color: var(--border-color);
  font-family: var(--main-font);
  line-height: 1;
}

.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-color);
  border-color: var(--accent-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.testimonial-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary-color);
  font-family: var(--main-font);
}

.testimonial p {
  line-height: 1.65;
  font-size: 0.84rem;
  color: var(--text-color);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.5rem 1rem;
}

.footer-content {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  padding-bottom: 0.8rem;
}

@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-end; }
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.81rem;
}

.footer-nav a:hover { color: var(--highlight-color); }

.footer-credit {
  text-align: center;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.77rem;
  max-width: 1020px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}