:root {
  --primary-color: #1A5C3A;
  --secondary-color: #0E3D28;
  --accent-color: #F0A55A;
  --light-color: #E8F5EE;
  --dark-color: #081F14;
  --gradient-primary: linear-gradient(135deg, #2E8055 0%, #1A5C3A 100%);
  --hover-color: #0E3D28;
  --background-color: #FDFEF9;
  --text-color: #1A2D20;
  --border-color: rgba(26,92,58,0.15);
  --divider-color: rgba(26,92,58,0.08);
  --shadow-color: rgba(8,31,20,0.14);
  --highlight-color: #F0A55A;
  --highlight-bg: #FEF5E9;
  --main-font: 'Lora', serif;
  --alt-font: 'Lato', 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:var(--background-color);min-height:100dvh;display:flex;flex-direction:column;line-height:1.78;-webkit-font-smoothing:antialiased;}
.pattern-bg{background-color:var(--background-color);background-image:radial-gradient(circle at 15% 25%,rgba(26,92,58,0.07) 0%,transparent 32%),radial-gradient(circle at 85% 75%,rgba(240,165,90,0.07) 0%,transparent 28%);}
.site-header{padding:1.2rem 0;background:#fff;border-bottom:1px solid var(--border-color);box-shadow:0 2px 12px rgba(26,92,58,0.06);}
.header-inner{max-width:1080px;margin:0 auto;padding:0 1.5rem;display:flex;align-items:center;}
.logo{display:flex;align-items:center;gap:.65rem;text-decoration:none;}
.logo-icon{width:36px;height:36px;flex-shrink:0;}
.logo-text{font-family:var(--main-font);font-style:italic;font-weight:700;font-size:clamp(17px,4vw,22px);color:var(--dark-color);}
.logo-text em{font-style:normal;color:var(--accent-color);}
main{flex:1;}
.container{width:100%;max-width:1080px;margin:0 auto;padding:0 1.5rem;}
.product-section{padding:2.5rem 0;}
.product-grid{display:grid;grid-template-columns:1fr;gap:2rem;}
@media(min-width:768px){.product-grid{grid-template-columns:325px 1fr;gap:3.25rem;align-items:start;}}
.left-col{display:flex;flex-direction:column;gap:1rem;}
.image-wrap{background:#fff;border:1px solid var(--border-color);border-radius:24px;padding:1.75rem 1.25rem;text-align:center;box-shadow:0 20px 60px var(--shadow-color);}
.image-wrap picture,.image-wrap img{display:block;max-width:100%;height:auto;max-height:255px;object-fit:contain;margin:0 auto;}
.guarantee-block{background:var(--highlight-bg);border:1px solid rgba(240,165,90,0.3);border-radius:24px;padding:.95rem 1.1rem;display:flex;align-items:flex-start;gap:.65rem;box-shadow:0 8px 24px var(--shadow-color);}
.guarantee-icon{flex-shrink:0;width:22px;height:22px;color:var(--accent-color);margin-top:2px;}
.guarantee-block p{font-family:var(--main-font);font-style:italic;font-weight:700;font-size:13px;color:var(--dark-color);line-height:1.4;}
.guarantee-block span{display:block;font-family:var(--alt-font);font-style:normal;font-weight:400;font-size:11.5px;color:var(--text-color);margin-top:3px;}
.price-block{background:var(--gradient-primary);border-radius:24px;padding:1rem 1.25rem;display:flex;align-items:center;justify-content:space-between;gap:.75rem;flex-wrap:wrap;box-shadow:0 20px 60px rgba(26,92,58,.35);}
.price-row{display:flex;align-items:baseline;gap:.3rem;}
.price-sym{font-family:var(--main-font);font-weight:700;font-size:13px;color:rgba(255,255,255,.65);}
.price-amount{font-family:var(--main-font);font-style:italic;font-weight:700;font-size:clamp(22px,5vw,28px);color:#fff;line-height:1;}
.btn-cart{display:flex;align-items:center;justify-content:center;gap:.5rem;padding:.85rem 1.75rem;min-height:48px;background:var(--accent-color);color:var(--dark-color);font-family:var(--main-font);font-style:italic;font-weight:700;font-size:16px;text-decoration:none;border-radius:50px;box-shadow:0 6px 22px rgba(240,165,90,.4);transition:opacity .2s,transform .15s;}
.btn-cart:hover{opacity:.9;transform:translateY(-1px);}
.btn-cart svg{width:18px;height:18px;}
.info-col{display:flex;flex-direction:column;gap:1.2rem;}
.product-eyebrow{font-family:var(--alt-font);font-size:11px;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--primary-color);}
.info-col h1{font-family:var(--main-font);font-style:italic;font-weight:700;font-size:clamp(24px,5.5vw,40px);color:var(--dark-color);line-height:1.18;}
.info-col h1 span{font-style:normal;color:var(--primary-color);}
.product-description{font-family:var(--alt-font);font-size:clamp(14px,4vw,15px);line-height:1.88;color:var(--text-color);}
/* PILL-TAG benefit tags */
.features-label{font-family:var(--alt-font);font-size:10px;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--primary-color);margin-bottom:.75rem;}
.pill-tags{display:flex;flex-wrap:wrap;gap:.6rem;}
.pill-tag{display:flex;align-items:center;gap:.5rem;background:#fff;border:1.5px solid var(--border-color);border-radius:50px;padding:.6rem 1.1rem;box-shadow:0 8px 24px var(--shadow-color);font-family:var(--alt-font);font-size:13px;color:var(--text-color);transition:background .2s,border-color .2s;}
.pill-tag:hover{background:var(--light-color);border-color:var(--primary-color);}
.pill-tag svg{width:16px;height:16px;color:var(--primary-color);flex-shrink:0;}
.adv-label{font-family:var(--alt-font);font-size:10px;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--secondary-color);margin-bottom:.55rem;}
.adv-list{list-style:none;display:flex;flex-direction:column;gap:.45rem;}
.adv-list li{display:flex;align-items:flex-start;gap:.6rem;font-family:var(--alt-font);font-size:14px;color:var(--text-color);line-height:1.5;padding:.6rem .9rem;background:var(--light-color);border-radius:50px;}
.adv-list li svg{width:14px;height:14px;flex-shrink:0;margin-top:3px;color:var(--primary-color);}
.cta-highlight{background:var(--gradient-primary);border-radius:24px;padding:1.25rem 1.6rem;text-align:center;box-shadow:0 20px 60px rgba(26,92,58,.35);}
.cta-highlight strong{display:block;font-family:var(--main-font);font-style:italic;font-weight:700;font-size:clamp(15px,4vw,19px);color:#fff;line-height:1.4;}
.cta-highlight strong em{font-style:normal;color:var(--accent-color);}
.testimonials-section{background:var(--dark-color);padding:2.75rem 0;}
.section-title{text-align:center;margin-bottom:1.75rem;}
.section-title h2{font-family:var(--main-font);font-style:italic;font-weight:700;font-size:clamp(18px,4vw,25px);color:#fff;}
.section-title h2 em{font-style:normal;color:var(--accent-color);}
.section-title-bar{width:40px;height:3px;background:var(--gradient-primary);border-radius:50px;margin:.55rem auto 0;}
.testimonials-grid{display:grid;grid-template-columns:1fr;gap:1rem;max-width:1080px;margin:0 auto;padding:0 1.5rem;}
@media(min-width:768px){.testimonials-grid{grid-template-columns:repeat(2,1fr);}}
.testimonial-card{background:rgba(255,255,255,.07);border:1px solid rgba(240,165,90,.18);border-radius:24px;padding:1.4rem;}
.t-header{display:flex;align-items:center;gap:.65rem;margin-bottom:.55rem;}
.t-avatar{width:42px;height:42px;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:14px;color:#fff;box-shadow:0 6px 20px rgba(26,92,58,.4);}
.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:var(--accent-color);}
.t-stars{display:flex;gap:2px;margin-bottom:.5rem;}
.t-stars svg{width:14px;height:14px;fill:var(--accent-color);}
.t-text{font-family:var(--alt-font);font-size:13.5px;color:rgba(255,255,255,.75);line-height:1.65;}
.site-footer{background:#fff;border-top:1px solid var(--border-color);}
.footer-inner{max-width:1080px;margin:0 auto;padding:1.15rem 1.5rem 1rem;display:flex;flex-direction:column;align-items:center;gap:.9rem;}
@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:var(--dark-color);}
.footer-logo-text em{font-style:normal;color:var(--primary-color);}
.footer-nav{display:flex;flex-direction:column;align-items:center;gap:.45rem;}
@media(min-width:768px){.footer-nav{flex-direction:row;gap:1.5rem;}}
.footer-nav a{font-size:12px;color:var(--text-color);text-decoration:none;transition:color .2s;}
.footer-nav a:hover{color:var(--primary-color);}
.footer-copyright{border-top:1px solid var(--divider-color);padding:.6rem 1.5rem;text-align:center;font-size:11px;color:#8A9A8E;max-width:1080px;margin:0 auto;width:100%;}