/* bold-editorial + sharp + flat + logo-left + solid
   #5A9F77 / #F2D4C9 / #0C0F24 / #ECF1F1
   reviews: minimalist top-rule, large name, clean */

:root { --a:#5A9F77; --p:#F2D4C9; --d:#0C0F24; --bg:#ECF1F1; --brd:#cdd8d0; }
* { box-sizing:border-box; margin:0; padding:0; }
body { font-family:'Inter',sans-serif; background:var(--bg); color:#1a1a1a; font-size:clamp(14px,4vw,16px); -webkit-font-smoothing:antialiased; }

/* HEADER logo-left */
.site-header { background:#fff; padding:0 24px; border-bottom:3px solid var(--a); box-shadow:none; border-bottom-style:solid; }
.header-inner { max-width:1200px; margin:0 auto; height:66px; display:flex; align-items:center; }
.hlogo { display:flex; align-items:center; gap:0; flex-wrap:wrap; }
.hlogo-brand { font-size:clamp(18px,4vw,24px); font-weight:900; color:var(--a); letter-spacing:-.02em; }
.hlogo-sep { display:block; width:2px; height:28px; background:var(--brd); margin:0 14px; }
.hlogo-name { font-size:clamp(12px,2.8vw,15px); color:#777; font-weight:400; }

/* MAIN */
.site-main { max-width:1200px; margin:0 auto; padding:32px 16px 52px; }

/* PRODUCT SECTION */
.product-section { display:grid; grid-template-columns:1fr; background:#fff; border:1px solid var(--brd); margin-bottom:44px; }
@media(min-width:768px){.product-section{grid-template-columns:1fr 1fr;}}

/* GALLERY */
.gallery-block { padding:22px; border-bottom:1px solid var(--brd); }
@media(min-width:768px){.gallery-block{border-bottom:none;border-right:1px solid var(--brd);}}
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
.gimg { display:none; max-width:100%; height:auto; width:100%; object-fit:contain; animation:fi .3s ease; }
@keyframes fi{from{opacity:0}to{opacity:1}}
.main-img-wrap { background:#f0f5f2; border:1px solid var(--brd); min-height:240px; display:flex; align-items:center; justify-content:center; padding:12px; margin-bottom:12px; }
#i1:checked~.main-img-wrap .g1{display:block}#i2:checked~.main-img-wrap .g2{display:block}#i3:checked~.main-img-wrap .g3{display:block}#i4:checked~.main-img-wrap .g4{display:block}
.thumbs { display:flex; gap:7px; justify-content:center; }
.tl { cursor:pointer; border:2px solid transparent; display:block; transition:border-color .2s; }
.tl:hover{border-color:var(--a);}
.tl img { width:52px; height:52px; object-fit:cover; display:block; }
#i1:checked~.thumbs label[for="i1"],#i2:checked~.thumbs label[for="i2"],#i3:checked~.thumbs label[for="i3"],#i4:checked~.thumbs label[for="i4"]{border-color:var(--a);}

/* PRODUCT INFO */
.product-info { padding:26px 24px; display:flex; flex-direction:column; }
.pi-kicker { font-size:10px; font-weight:700; letter-spacing:.18em; color:var(--a); text-transform:uppercase; margin-bottom:12px; }
.product-title { font-size:clamp(16px,3.8vw,24px); font-weight:900; color:var(--d); line-height:1.2; margin-bottom:14px; letter-spacing:-.02em; }
.accent-bar { width:44px; height:4px; background:var(--a); margin-bottom:20px; }
.feat-list { list-style:none; display:flex; flex-direction:column; gap:0; margin-bottom:18px; border-top:1px solid #e8eee9; }
.feat { padding:11px 0; border-bottom:1px solid #e8eee9; font-size:clamp(13px,3.5vw,14px); line-height:1.6; color:#444; }
.feat:last-child{border-bottom:none;}
.kw-note { font-size:13px; color:#555; background:#f0f5f2; border-left:4px solid var(--a); padding:10px 14px; }

/* CTA solid */
.cta-wrap { text-align:center; margin-bottom:48px; }
.cta-btn { display:inline-block; background:var(--a); color:#fff; font-weight:900; font-size:clamp(14px,4vw,16px); text-transform:uppercase; letter-spacing:.1em; padding:16px 52px; min-height:44px; text-decoration:none; transition:all .2s; }
.cta-btn:hover{background:#3a7a55;box-shadow:0 4px 18px rgba(90,159,119,.5);transform:translateY(-1px);}
.cta-btn:active{transform:translateY(0);}

/* REVIEWS — minimalist: top-line, large name, clean */
.reviews-section { max-width:780px; margin:0 auto; padding-bottom:40px; }
.rev-title { font-size:clamp(22px,5vw,32px); font-weight:900; color:var(--d); margin-bottom:28px; letter-spacing:-.02em; }
.reviews-list { display:flex; flex-direction:column; }
.rev-item { padding:22px 0; border-top:2px solid var(--a); }
.rev-item:first-child{border-top:none;padding-top:0;}
.rev-divider { height:1px; background:#dde6df; }
.rev-top { display:flex; gap:14px; align-items:flex-start; margin-bottom:8px; }
.rev-ava { width:44px; height:44px; border-radius:50%; object-fit:cover; flex-shrink:0; border:2px solid var(--a); }
.rev-name { font-weight:900; font-size:18px; color:var(--d); margin-bottom:3px; letter-spacing:-.02em; }
.stars { display:block; color:var(--p); font-size:14px; font-weight:700; filter:saturate(1.5) brightness(.85); margin-bottom:2px; }
.rev-hl { font-weight:600; font-size:13px; color:#333; }
.rev-date { font-size:12px; color:#bbb; margin-bottom:5px; }
.rev-badge { display:block; font-size:11px; color:#999; margin-bottom:8px; }
.rev-text { font-size:clamp(13px,3.5vw,14px); color:#444; line-height:1.7; margin-bottom:8px; }
.rev-text:last-of-type{margin-bottom:0;}

/* FOOTER */
.site-footer { background:var(--d); padding:28px 16px; border-top:4px solid var(--a); }
.footer-inner { max-width:1200px; margin:0 auto; text-align:center; }
.fname { font-size:12px; color:rgba(255,255,255,.3); margin-bottom:14px; font-weight:600; text-transform:uppercase; letter-spacing:.05em; }
.fnav { display:flex; flex-direction:column; align-items:center; gap:8px; }
@media(min-width:768px){.fnav{flex-direction:row;justify-content:center;gap:16px;}}
.flink { color:rgba(255,255,255,.4); font-size:11px; text-transform:uppercase; letter-spacing:.08em; font-weight:600; text-decoration:none; transition:color .2s; }
.flink:hover{color:var(--p);}
.fsep { color:rgba(255,255,255,.12); display:none; }
@media(min-width:768px){.fsep{display:inline;}}