:root {
  --primary-color: #7A3550;
  --secondary-color: #5C1F38;
  --accent-color: #B06080;
  --light-color: #FAF0F4;
  --dark-color: #2E1020;
  --gradient-primary: linear-gradient(135deg, #7A3550 0%, #5C1F38 100%);
  --hover-color: #673044;
  --background-color: #FDFAFE;
  --text-color: #3E2030;
  --border-color: rgba(122, 53, 80, 0.17);
  --divider-color: rgba(92, 31, 56, 0.10);
  --shadow-color: rgba(92, 31, 56, 0.09);
  --highlight-color: #B87333;
  --main-font: 'Lora', 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);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
  background-color: var(--background-color);
}

/* Pattern BG — diamond mesh grid */
.pattern-bg {
  background-image:
    radial-gradient(ellipse at 70% 15%, rgba(176, 96, 128, 0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 25% 85%, rgba(122, 53, 80, 0.05) 0%, transparent 40%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(122, 53, 80, 0.03) 30px,
      rgba(122, 53, 80, 0.03) 31px
    ),
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 30px,
      rgba(122, 53, 80, 0.03) 30px,
      rgba(122, 53, 80, 0.03) 31px
    );
  position: fixed;
  inset: 0;
  z-index: -1;
}

/* HEADER */
header {
  background: #fff;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px var(--shadow-color);
  border-bottom: 2px solid var(--accent-color);
}

.header-deco-wave {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background:
    radial-gradient(ellipse at 100% 50%, rgba(176, 96, 128, 0.1) 0%, transparent 60%);
  display: none;
}

.header-deco-dot1 {
  position: absolute;
  top: 12px;
  right: 50px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(122, 53, 80, 0.2);
  display: none;
}

.header-deco-dot2 {
  position: absolute;
  bottom: 10px;
  right: 90px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(176, 96, 128, 0.25);
  display: none;
}

@media (min-width: 768px) {
  .header-deco-wave,
  .header-deco-dot1,
  .header-deco-dot2 {
    display: block;
  }
}

.container {
  max-width: 1050px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.4rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.8px;
  width: fit-content;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-color);
  border-radius: 8px 0 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
}

/* MAIN */
main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.6rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

/* LEFT */
.product-left {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product-image-container {
  background: white;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 10px var(--shadow-color);
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.product-image {
  width: 100%;
  padding: 18px;
  height: auto;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .product-image {
    padding: 18px 36px;
  }
}

.guarantee-block {
  background: var(--light-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  color: var(--text-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--accent-color);
  border-radius: 10px 0 0 10px;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 0.4rem;
}

.guarantee-block p {
  font-size: 0.81rem;
  line-height: 1.55;
}

/* Features icons — tall vertical cards */
.features-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.65rem 0.1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.25s ease;
}

.feature-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px var(--shadow-color);
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--light-color);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.feature-item span {
  font-size: 0.57rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--main-font);
  letter-spacing: 0.2px;
}

.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 0.85rem 1.4rem;
  border-radius: 10px 0 10px 0;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
  text-align: center;
  font-family: var(--main-font);
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: all 0.25s ease;
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 14px var(--shadow-color);
}

/* RIGHT */
.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.8px;
  margin-bottom: 0.6rem;
  line-height: 1.15;
}

.price {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--highlight-color);
  margin: 0.6rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--text-color);
  margin-bottom: 0.9rem;
}

.product-description p + p {
  margin-top: 0.55rem;
}

.highlight-text {
  background: var(--light-color);
  color: var(--primary-color);
  border: 2px solid var(--accent-color);
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  font-size: 0.87rem;
  font-family: var(--main-font);
  letter-spacing: 0.3px;
  margin: 0.9rem 0;
}

.features-list {
  list-style: none;
  margin: 0.9rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.55rem;
  padding: 0.65rem 0.8rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-size: 0.82rem;
  transition: all 0.25s ease;
}

.features-list li:hover {
  background: var(--light-color);
  border-color: var(--accent-color);
}

.feature-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.68rem;
}

/* BENEFITS SECTION — icon + title + text horizontal rows */
.benefits-section {
  background: var(--primary-color);
  color: white;
  padding: 2rem 1.2rem;
}

.benefits-content {
  max-width: 1050px;
  margin: 0 auto;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 0.5rem;
  text-align: center;
  color: white;
}

.benefits-content > p {
  font-size: 0.84rem;
  opacity: 0.88;
  margin-bottom: 1.5rem;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 1rem 0.9rem;
  transition: all 0.25s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.16);
}

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-card-text h3 {
  font-family: var(--main-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 0.25rem;
  color: #FDD9E5;
}

.benefit-card-text p {
  font-size: 0.77rem;
  opacity: 0.87;
  line-height: 1.5;
}

/* TESTIMONIALS */
.testimonials {
  background: #F3EBF0;
  padding: 2rem 1.2rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  margin-bottom: 1.4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  max-width: 1050px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  border-radius: 10px;
  padding: 1rem;
  border-top: 3px solid var(--accent-color);
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: transform 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
}

.testimonial-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--light-color);
  border: 2px solid var(--accent-color);
  border-radius: 8px 0 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.testimonial-name {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--primary-color);
  letter-spacing: 0.2px;
}

.testimonial-location {
  font-size: 0.73rem;
  color: var(--text-color);
  opacity: 0.75;
}

.testimonial p {
  font-size: 0.81rem;
  line-height: 1.6;
  color: var(--text-color);
}

/* FOOTER */
footer {
  background: var(--dark-color);
  color: white;
  padding: 1.4rem 1.2rem;
}

.footer-content {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-bottom: 0.9rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-content .logo {
  color: #FDD9E5;
}

.footer-content .logo-icon {
  background: rgba(253, 217, 229, 0.12);
  border: 1px solid rgba(253, 217, 229, 0.22);
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  color: rgba(253, 217, 229, 0.68);
  text-decoration: none;
  font-size: 0.77rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.73rem;
  max-width: 1050px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}