/* minimalist + pill + subtle + accent-bar + outlined
   #86B3D1 / #F0A55A / #0C0F24 / #F5F5F5
   reviews: feature-style pill cards */

:root {
    --a: #86B3D1;
    --o: #F0A55A;
    --d: #0C0F24;
    --bg: #F5F5F5;
}

* { 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 accent-bar */
.site-header { background: var(--a); padding: 22px 16px; }
.header-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.header-title { font-size: clamp(16px, 3.5vw, 22px); font-weight: 600; color: #fff; line-height: 1.3; }

/* MAIN */
.site-main { max-width: 1200px; margin: 0 auto; padding: 36px 16px 52px; }

/* PRODUCT SECTION mobile-first */
.product-section {
    display: grid; grid-template-columns: 1fr;
    background: #fff; border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden; margin-bottom: 44px;
}
@media (min-width: 768px) { .product-section { grid-template-columns: 1fr 1fr; } }

/* GALLERY */
.gallery-block { padding: 24px; }
.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: #f4f8fb;
    min-height: 240px; display: flex; align-items: center; justify-content: center;
    padding: 14px; margin-bottom: 14px;
}

#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: 10px; justify-content: center; }
.tl { cursor: pointer; border-radius: 50px; border: 2px solid transparent; overflow: hidden; display: block; transition: border-color .2s; }
.tl:hover { border-color: var(--a); }
.tl img { width: 54px; height: 54px; object-fit: cover; display: block; border-radius: 50px; }
#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: 28px 24px; display: flex; flex-direction: column; justify-content: flex-start; }

.overline { font-size: 10px; font-weight: 700; letter-spacing: .15em; color: var(--a); text-transform: uppercase; margin-bottom: 12px; }

.product-title { font-size: clamp(16px, 3.8vw, 22px); font-weight: 600; color: var(--d); line-height: 1.35; margin-bottom: 22px; }

.feat-list { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 18px; }
.feat { display: flex; flex-direction: column; padding: 11px 0; border-bottom: 1px solid #eef2f5; font-size: clamp(13px, 3.5vw, 14px); line-height: 1.6; color: #444; }
.feat:last-child { border-bottom: none; }
.fl { font-size: 10px; font-weight: 700; color: var(--a); text-transform: uppercase; letter-spacing: .14em; margin-bottom: 4px; }

.kw-note { font-size: 13px; color: #555; background: #f0f6fa; border-radius: 50px; padding: 10px 18px; border-left: 2px solid var(--a); }

/* CTA outlined */
.cta-wrap { text-align: center; margin-bottom: 52px; }
.cta-btn {
    display: inline-block; background: transparent;
    color: var(--d); font-weight: 700;
    font-size: clamp(14px, 4vw, 16px);
    text-transform: uppercase; letter-spacing: .08em;
    padding: 15px 52px; min-height: 44px;
    border: 2px solid var(--d); border-radius: 50px; text-decoration: none;
    transition: all .2s;
}
.cta-btn:hover { background: var(--d); color: var(--o); }
.cta-btn:active { opacity: .9; }

/* REVIEWS — feature-style pill cards */
.reviews-section { max-width: 800px; margin: 0 auto; padding-bottom: 40px; }
.rev-title { font-size: clamp(18px, 4vw, 24px); font-weight: 600; color: var(--d); margin-bottom: 22px; }

.reviews-list { display: flex; flex-direction: column; gap: 14px; }

.rev-card {
    background: #fff; border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 18px 22px;
}

.rev-top { display: flex; gap: 12px; align-items: center; margin-bottom: 8px; }
.rev-ava { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.rev-name { font-weight: 700; font-size: 14px; color: var(--d); margin-bottom: 2px; }
.rev-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.stars { color: var(--o); font-size: 13px; font-weight: 700; }
.rev-hl { font-weight: 600; font-size: 13px; color: #222; }
.rev-date { font-size: 12px; color: #bbb; margin-bottom: 6px; }
.rev-badge { display: inline-block; background: #f0f6fa; color: #3a6080; font-size: 11px; font-weight: 600; padding: 3px 12px; border-radius: 50px; margin-bottom: 10px; }
.rev-text { font-size: clamp(13px, 3.5vw, 14px); color: #444; line-height: 1.65; }
.rev-text + .rev-text { margin-top: 6px; }

/* FOOTER */
.site-footer { background: var(--d); padding: 28px 16px; }
.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(--o); }
.fsep { color: rgba(255,255,255,.12); display: none; }
@media (min-width: 768px) { .fsep { display: inline; } }