:root {
  --primary-color: #B22B5B;
  --secondary-color: #8A1A42;
  --accent-color: #F2D4C9;
  --light-color: #FBF0EC;
  --dark-color: #2C0E18;
  --gradient-primary: linear-gradient(135deg, #D04070 0%, #B22B5B 100%);
  --hover-color: #6E1230;
  --background-color: #FDFAF9;
  --text-color: #2C0E18;
  --border-color: rgba(178,43,91,0.14);
  --divider-color: rgba(178,43,91,0.08);
  --shadow-color: rgba(44,14,24,0.1);
  --highlight-color: #E8792A;
  --main-font: 'Lora', serif;
  --alt-font: 'Open Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--alt-font);
  font-size: clamp(14px,4vw,16px);
  color: var(--text-color);
  background-color: var(--background-color);
  min-height: 100dvh;
  display: flex; flex-direction: column;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* PATTERN: radial soft bubbles */
.pattern-bg {
  background-color: var(--background-color);
  background-image:
    radial-gradient(ellipse at 10% 20%, rgba(178,43,91,0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 80%, rgba(242,212,201,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 55% 50%, rgba(178,43,91,0.03) 0%, transparent 65%);
}

/* HEADER */
.site-header {
  padding: 1.2rem 0;
  background: var(--dark-color);
  position: relative; overflow: hidden;
}
.header-deco { display: none; position: absolute; inset: 0; pointer-events: none; }
.header-deco::before {
  content: '';
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 90px; height: 90px; border-radius: 50%;
  background: radial-gradient(circle, rgba(178,43,91,0.1) 0%, transparent 70%);
}
.header-deco::after {
  content: '';
  position: absolute; right: 12%; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,212,201,0.07) 0%, transparent 70%);
}
@media (min-width: 768px) { .header-deco { display: block; } }

.header-inner { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; position: relative; z-index: 1; }

.logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.logo-icon { width: 38px; height: 38px; flex-shrink: 0; }
.logo-text { font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: clamp(18px,4vw,24px); color: #fff; }
.logo-text em { font-style: normal; color: var(--accent-color); }

/* MAIN */
main { flex: 1; }

.product-grid { display: grid; grid-template-columns: 1fr; width: 100%; }
@media (min-width: 768px) { .product-grid { grid-template-columns: 1fr 1fr; } }

/* LEFT: light */
.left-col {
  background: var(--light-color);
  padding: 2.25rem 1.75rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}
@media (min-width: 768px) { .left-col { padding: 2.75rem 2rem 2.75rem calc((100vw - 1120px)/2 + 1.5rem); } }

.product-image-wrap {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(44,14,24,0.1);
  padding: 2rem 1.25rem; text-align: center;
  position: relative; overflow: hidden;
}
.product-image-wrap::before { content: ''; position: absolute; bottom: -30px; right: -30px; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle, rgba(178,43,91,0.06) 0%, transparent 70%); pointer-events: none; }
.product-image-wrap picture, .product-image-wrap img { display: block; max-width: 100%; height: auto; max-height: 240px; object-fit: contain; margin: 0 auto; position: relative; z-index: 1; }

.guarantee-block {
  background: #fff; border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px var(--shadow-color);
  padding: 0.9rem 1.1rem;
  display: flex; align-items: flex-start; gap: 0.65rem;
}
.guarantee-icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--primary-color); margin-top: 2px; }
.guarantee-block p { font-family: var(--alt-font); font-weight: 700; font-size: 12.5px; color: var(--dark-color); line-height: 1.4; }
.guarantee-block span { display: block; font-weight: 400; font-size: 11.5px; color: rgba(44,14,24,0.55); margin-top: 3px; }

.features-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.feature-item {
  background: #fff; border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 16px rgba(44,14,24,0.06);
  padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 0.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item:hover { box-shadow: 0 12px 32px rgba(44,14,24,0.12); transform: translateY(-2px); }
.feature-icon-wrap { width: 44px; height: 44px; border-radius: 50%; background: var(--light-color); border: 1px solid var(--border-color); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.feature-icon-wrap svg { width: 21px; height: 21px; color: var(--primary-color); }
.feature-item span { font-family: var(--alt-font); font-size: 13px; font-weight: 600; color: var(--text-color); line-height: 1.3; }

.btn-cart {
  display: flex; align-items: center; justify-content: center; gap: 0.55rem;
  width: 100%; min-height: 48px; padding: 0.95rem 1.5rem;
  background: var(--primary-color); color: #fff;
  font-family: var(--alt-font); font-weight: 700; font-size: 14px;
  text-decoration: none; border-radius: 50px; border: none;
  box-shadow: 0 20px 60px rgba(178,43,91,0.32);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.btn-cart:hover { background: var(--hover-color); box-shadow: 0 28px 72px rgba(178,43,91,0.42); transform: translateY(-2px); }
.btn-cart svg { width: 17px; height: 17px; }

/* RIGHT: dark */
.right-col {
  background: var(--dark-color);
  padding: 2.25rem 1.75rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}
@media (min-width: 768px) { .right-col { padding: 2.75rem calc((100vw - 1120px)/2 + 1.5rem) 2.75rem 2rem; } }

.product-eyebrow { font-family: var(--alt-font); font-size: 10.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-color); }

.right-col h1 { font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: clamp(28px,5vw,44px); color: #fff; line-height: 1.1; }
.right-col h1 em { font-style: normal; color: var(--accent-color); }

.price-block { display: flex; align-items: baseline; gap: 0.4rem; padding: 0.75rem 0; border-top: 1px solid rgba(242,212,201,0.2); border-bottom: 1px solid rgba(242,212,201,0.2); }
.price-amount { font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: clamp(26px,4.5vw,38px); color: var(--accent-color); line-height: 1; }
.price-currency { font-family: var(--alt-font); font-weight: 700; font-size: 13px; color: rgba(255,255,255,0.45); }

.product-description { font-family: var(--alt-font); font-size: clamp(13px,3.8vw,14px); line-height: 1.8; color: rgba(255,255,255,0.72); }

.cta-highlight {
  background: rgba(242,212,201,0.12); border: 1px solid rgba(242,212,201,0.25); border-radius: 24px; padding: 1rem 1.2rem; position: relative; overflow: hidden;
}
.cta-highlight::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent-color); border-radius: 24px 0 0 24px; }
.cta-highlight strong { display: block; font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: clamp(13.5px,3.8vw,15.5px); color: #fff; line-height: 1.45; }
.cta-highlight strong em { font-style: normal; color: var(--accent-color); }

/* BAND */
.benefits-band { background: var(--background-color); padding: 2.5rem 0; border-top: 1px solid var(--border-color); }
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.band-header { text-align: center; margin-bottom: 1.5rem; }
.band-header h2 { font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: clamp(17px,4vw,24px); color: var(--dark-color); }
.band-header h2 em { font-style: normal; color: var(--primary-color); }
.band-header p { font-family: var(--alt-font); font-size: 12.5px; color: rgba(44,14,24,0.5); margin-top: 0.35rem; }

.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 0.85rem; }
@media (min-width: 580px) { .benefits-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .benefits-grid { grid-template-columns: repeat(4,1fr); } }

.benefit-card { background: #fff; border: 1px solid var(--border-color); border-radius: 24px; padding: 1.2rem 1rem; box-shadow: 0 4px 20px var(--shadow-color); text-align: center; transition: box-shadow 0.2s, transform 0.2s; }
.benefit-card:hover { box-shadow: 0 20px 60px rgba(44,14,24,0.13); transform: translateY(-3px); }
.benefit-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--light-color); border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.7rem; }
.benefit-icon svg { width: 24px; height: 24px; color: var(--primary-color); }
.benefit-card h3 { font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: 13.5px; color: var(--dark-color); margin-bottom: 0.3rem; }
.benefit-card p { font-family: var(--alt-font); font-size: 11.5px; color: rgba(44,14,24,0.55); line-height: 1.55; }

/* TESTIMONIALS */
.testimonials-section { background: var(--dark-color); padding: 2.5rem 0; }
.section-title { text-align: center; margin-bottom: 1.5rem; }
.section-title h2 { font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: clamp(17px,4vw,23px); color: #fff; }
.section-title-bar { width: 34px; height: 2px; background: var(--accent-color); border-radius: 2px; margin: 0.5rem auto 0; }

.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2,1fr); } }

.testimonial-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(178,43,91,0.2); border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18); padding: 1.2rem; position: relative; overflow: hidden;
  transition: background 0.2s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.09); }
.testimonial-card::after { content: '"'; position: absolute; bottom: -0.5rem; right: 0.8rem; font-size: 60px; font-family: Georgia, serif; color: rgba(178,43,91,0.1); line-height: 1; pointer-events: none; }
.t-header { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.5rem; }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: 13px; color: #fff; }
.t-name { font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: 13.5px; color: #fff; }
.t-loc { font-family: var(--alt-font); font-size: 11px; color: rgba(242,212,201,0.7); }
.t-stars { display: flex; gap: 2px; margin-bottom: 0.45rem; }
.t-stars svg { width: 13px; height: 13px; fill: var(--accent-color); }
.t-text { font-family: var(--alt-font); font-size: 12.5px; color: rgba(255,255,255,0.7); line-height: 1.65; font-style: italic; position: relative; z-index: 1; }

/* FOOTER */
.site-footer { background: var(--dark-color); border-top: 1px solid rgba(178,43,91,0.2); }
.footer-inner { max-width: 1120px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; } }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.footer-logo-icon { width: 26px; height: 26px; }
.footer-logo-text { font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: 16px; color: #fff; }
.footer-logo-text em { font-style: normal; color: var(--accent-color); }
.footer-nav { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
@media (min-width: 768px) { .footer-nav { flex-direction: row; gap: 1.3rem; } }
.footer-nav a { font-family: var(--alt-font); font-size: 11.5px; color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--accent-color); }
.footer-copyright { border-top: 1px solid rgba(255,255,255,0.07); padding: 0.55rem 1.5rem; text-align: center; font-family: var(--alt-font); font-size: 11px; color: rgba(255,255,255,0.22); max-width: 1120px; margin: 0 auto; width: 100%; }