:root {
  --primary-color: #B22B5B;
  --secondary-color: #8A1040;
  --accent-color: #F2D4C9;
  --light-color: #FDF0EC;
  --dark-color: #2D0A18;
  --gradient-primary: linear-gradient(135deg, #D4476B 0%, #B22B5B 100%);
  --hover-color: #6A0828;
  --background-color: #FDFAF9;
  --text-color: #2D0A18;
  --border-color: rgba(178,43,91,0.13);
  --divider-color: rgba(178,43,91,0.07);
  --shadow-color: rgba(45,10,24,0.1);
  --highlight-color: #8A1040;
  --main-font: 'Lora', serif;
  --alt-font: 'Poppins', 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;overflow-x:hidden;
}
.pattern-bg{
  background-color:var(--background-color);
  background-image:
    radial-gradient(ellipse 100px 50px at 15% 20%,rgba(178,43,91,0.04) 0%,transparent 100%),
    radial-gradient(ellipse 140px 70px at 85% 75%,rgba(242,212,201,0.07) 0%,transparent 100%),
    radial-gradient(circle,rgba(178,43,91,0.03) 1px,transparent 1px);
  background-size:100% 100%,100% 100%,28px 28px;
}

/* HEADER */
.site-header{
  background:var(--dark-color);padding:1rem 0;
  position:relative;overflow:hidden;
  border-bottom:3px solid var(--primary-color);
}
.header-blob1{display:none;position:absolute;right:-60px;top:-50px;width:220px;height:180px;border-radius:60% 40% 50% 70%/50% 60% 40% 50%;background:rgba(178,43,91,0.1);pointer-events:none}
.header-blob2{display:none;position:absolute;right:160px;bottom:-40px;width:140px;height:120px;border-radius:40% 60% 70% 30%/60% 30% 70% 40%;background:rgba(242,212,201,0.05);pointer-events:none}
@media(min-width:768px){.header-blob1,.header-blob2{display:block}}
.header-inner{max-width:1250px;margin:0 auto;padding:0 1.5rem;display:flex;align-items:center;position:relative;z-index:1}
.logo{display:flex;align-items:center;gap:.65rem;text-decoration:none}
.logo-icon{width:42px;height:42px;flex-shrink:0}
.logo-text{font-family:var(--main-font);font-style:italic;font-weight:700;font-size:clamp(18px,4vw,25px);color:#fff}
.logo-text em{font-style:normal;color:var(--accent-color)}

main{flex:1;display:flex;flex-direction:column}
.product-section{flex:1;padding:1.75rem 0;display:flex;flex-direction:column}
.container{width:100%;max-width:1250px;margin:0 auto;padding:0 1.5rem}

.product-grid{display:grid;grid-template-columns:1fr;gap:2rem}
@media(min-width:768px){.product-grid{grid-template-columns:380px 1fr;align-items:start}}

/* LEFT */
.left-col{display:flex;flex-direction:column;gap:1rem}
.product-card{
  background:#fff;border-radius:32px;
  border:1px solid var(--border-color);
  box-shadow:0 20px 60px rgba(45,10,24,0.13);overflow:hidden;
}
.product-image-wrap{
  background:var(--light-color);padding:2rem 1.5rem;text-align:center;
  border-bottom:1px solid var(--border-color);
}
.product-image-wrap picture,.product-image-wrap img{display:block;max-width:100%;height:auto;max-height:230px;object-fit:contain;margin:0 auto;filter:drop-shadow(0 12px 28px rgba(178,43,91,0.2))}
.card-price{padding:.9rem 1.25rem;display:flex;align-items:center;justify-content:space-between;gap:.75rem;flex-wrap:wrap}
.price-amount{font-family:var(--main-font);font-style:italic;font-weight:700;font-size:clamp(22px,4vw,30px);color:var(--primary-color)}
.btn-cart{
  display:flex;align-items:center;gap:.45rem;min-height:46px;padding:.7rem 1.5rem;
  background:var(--primary-color);color:#fff;font-family:var(--alt-font);font-weight:600;font-size:14px;
  border-radius:50px;text-decoration:none;border:none;
  box-shadow:0 6px 20px rgba(178,43,91,0.35);
  transition:background .2s,box-shadow .2s,transform .15s;
}
.btn-cart:hover{background:var(--hover-color);transform:translateY(-2px);box-shadow:0 10px 30px rgba(178,43,91,0.45)}
.btn-cart svg{width:16px;height:16px}

.guarantee-block{
  background:var(--light-color);border-radius:20px;border:1px solid var(--border-color);
  padding:.85rem 1.1rem;display:flex;align-items:flex-start;gap:.6rem;
  box-shadow:0 2px 12px rgba(45,10,24,0.07);
}
.guarantee-block svg{flex-shrink:0;width:18px;height:18px;color:var(--primary-color);margin-top:3px}
.guarantee-block p{font-family:var(--alt-font);font-weight:600;font-size:12.5px;color:var(--dark-color);line-height:1.4}
.guarantee-block span{display:block;font-weight:400;font-size:11px;color:rgba(45,10,24,.55);margin-top:2px}

.features-circles{display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem}
.feat-circle{
  background:#fff;border-radius:20px;border:1px solid var(--border-color);
  padding:.9rem .75rem;text-align:center;
  box-shadow:0 2px 12px rgba(45,10,24,0.07);
  display:flex;flex-direction:column;align-items:center;gap:.4rem;
  transition:box-shadow .2s,transform .2s;
}
.feat-circle:hover{box-shadow:0 8px 28px rgba(178,43,91,0.15);transform:translateY(-2px)}
.fc-icon{width:48px;height:48px;border-radius:50%;background:var(--gradient-primary);display:flex;align-items:center;justify-content:center;box-shadow:0 6px 18px rgba(178,43,91,0.3)}
.fc-icon svg{width:22px;height:22px;color:#fff}
.fc-title{font-family:var(--alt-font);font-weight:600;font-size:11.5px;color:var(--dark-color);line-height:1.3}
.fc-desc{font-family:var(--alt-font);font-size:10px;color:rgba(45,10,24,.5);line-height:1.35}

/* RIGHT */
.right-col{display:flex;flex-direction:column;gap:1.1rem}
.product-eyebrow{font-family:var(--alt-font);font-size:10px;font-weight:600;letter-spacing:.22em;text-transform:uppercase;color:var(--primary-color)}
.product-title{font-family:var(--main-font);font-style:italic;font-weight:700;font-size:clamp(28px,5.5vw,46px);color:var(--dark-color);line-height:1}
.product-title em{font-style:normal;color:var(--primary-color)}
.product-desc{font-family:var(--alt-font);font-size:clamp(13.5px,3.5vw,15px);color:rgba(45,10,24,.74);line-height:1.85}
.cta-banner{
  background:var(--gradient-primary);border-radius:20px;
  padding:1.25rem 1.5rem;
  box-shadow:0 12px 40px rgba(178,43,91,0.3);
}
.cta-banner strong{display:block;font-family:var(--main-font);font-style:italic;font-weight:700;font-size:clamp(15px,3.5vw,20px);color:#fff;line-height:1.3}
.cta-banner span{display:block;font-family:var(--alt-font);font-size:12px;color:rgba(255,255,255,.65);margin-top:.4rem}

/* TESTIMONIALS */
.testimonials-section{background:var(--light-color);padding:2rem 0;border-top:1px solid var(--border-color);margin-top:1.75rem}
.t-section-head{text-align:center;margin-bottom:1.25rem}
.t-section-head h2{font-family:var(--main-font);font-style:italic;font-weight:700;font-size:clamp(17px,4vw,24px);color:var(--dark-color)}
.t-section-head h2 em{font-style:normal;color:var(--primary-color)}
.t-bar{width:36px;height:3px;background:var(--primary-color);border-radius:50px;margin:.4rem auto 0}
.t-grid{display:grid;grid-template-columns:1fr;gap:.85rem}
@media(min-width:640px){.t-grid{grid-template-columns:repeat(2,1fr)}}
.t-card{
  background:#fff;border-radius:20px;border:1px solid var(--border-color);
  box-shadow:0 4px 20px rgba(45,10,24,0.08);padding:1.2rem;
}
.t-header{display:flex;align-items:center;gap:.65rem;margin-bottom:.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(--alt-font);font-weight:700;font-size:13px;color:#fff}
.t-name{font-family:var(--alt-font);font-weight:600;font-size:13px;color:var(--dark-color)}
.t-loc{font-family:var(--alt-font);font-size:11px;color:var(--primary-color)}
.t-stars{display:flex;gap:2px;margin-bottom:.4rem}
.t-stars svg{width:13px;height:13px;fill:var(--primary-color)}
.t-text{font-family:var(--alt-font);font-size:12.5px;color:rgba(45,10,24,.7);line-height:1.65;font-style:italic}

/* FOOTER */
.site-footer{background:var(--dark-color);border-top:3px solid var(--primary-color)}
.footer-inner{max-width:1250px;margin:0 auto;padding:1rem 1.5rem;display:flex;flex-direction:column;align-items:center;gap:.8rem}
@media(min-width:768px){.footer-inner{flex-direction:row;justify-content:space-between;align-items:center}}
.footer-logo{display:flex;align-items:center;gap:.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:17px;color:#fff}
.footer-logo-text em{font-style:normal;color:var(--accent-color)}
.footer-nav{display:flex;flex-direction:column;align-items:center;gap:.4rem}
@media(min-width:768px){.footer-nav{flex-direction:row;gap:1.4rem}}
.footer-nav a{font-family:var(--alt-font);font-size:11.5px;color:rgba(255,255,255,.42);text-decoration:none;transition:color .2s}
.footer-nav a:hover{color:var(--accent-color)}
.footer-copyright{border-top:1px solid rgba(255,255,255,.07);padding:.5rem 1.5rem;text-align:center;font-family:var(--alt-font);font-size:11px;color:rgba(255,255,255,.22);max-width:1250px;margin:0 auto;width:100%}