/* bold-editorial + rounded + dramatic + accent-bar + gradient
   #2D5C7F / #F4D03F / #0C0F24 / #F5F5F5
   reviews: horizontal with left accent bar + name·date inline */

:root {
    --a: #2D5C7F;
    --y: #F4D03F;
    --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; border-bottom: 5px solid var(--y); }
.header-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.header-title {
    font-size: clamp(15px, 3.5vw, 20px);
    font-weight: 900; color: #fff;
    text-transform: uppercase; letter-spacing: .05em; line-height: 1.2;
}

/* 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: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    overflow: hidden;
    margin-bottom: 48px;
    transition: box-shadow .3s;
}
.product-section:hover { box-shadow: 0 28px 72px rgba(0,0,0,0.25); }
@media (min-width: 768px) { .product-section { grid-template-columns: 1fr 1fr; } }

/* GALLERY */
.gallery-block { padding: 24px; border-bottom: 1px solid #edf0f3; }
@media (min-width: 768px) { .gallery-block { border-bottom: none; border-right: 1px solid #edf0f3; } }

.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: #f0f5fa; border-radius: 8px;
    border: 1px solid #d8e4ec;
    min-height: 250px; 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: 8px; justify-content: center; }
.tl { cursor: pointer; border: 2px solid transparent; border-radius: 6px; overflow: hidden; display: block; transition: border-color .2s; }
.tl:hover { border-color: var(--a); }
.tl img { width: 56px; height: 56px; 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); box-shadow: 0 0 0 3px rgba(45,92,127,.2); }

/* PRODUCT INFO */
.product-info { padding: 32px 28px; display: flex; flex-direction: column; justify-content: flex-start; }

.flavor-tag {
    font-size: 11px; font-weight: 700; letter-spacing: .16em; color: var(--a);
    text-transform: uppercase; margin-bottom: 12px;
}

.product-title {
    font-size: clamp(20px, 4.5vw, 30px);
    font-weight: 900; color: var(--d); line-height: 1.2; margin-bottom: 14px;
    letter-spacing: -.02em;
}

.accent-rule { width: 56px; height: 5px; background: var(--y); border-radius: 4px; margin-bottom: 18px; }

.cert-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.cert {
    font-size: 11px; font-weight: 700; color: var(--d);
    background: var(--y); padding: 3px 10px; border-radius: 6px;
}

/* FEAT BLOCKS 2-col grid */
.feat-blocks {
    display: grid; grid-template-columns: 1fr;
    gap: 12px; margin-bottom: 20px;
}
@media (min-width: 480px) { .feat-blocks { grid-template-columns: 1fr 1fr; } }

.fb {
    background: #f5f8fc; border-radius: 10px; padding: 12px 14px;
    font-size: clamp(13px, 3.5vw, 13.5px); line-height: 1.55; color: #444;
    border-left: 3px solid var(--a);
}
.fb-label { font-size: 9px; font-weight: 900; letter-spacing: .16em; color: var(--a); text-transform: uppercase; margin-bottom: 5px; }

.kw-note { font-size: 13px; color: #555; background: #eef3f8; border-left: 3px solid var(--a); padding: 10px 14px; border-radius: 0 8px 8px 0; }

/* CTA gradient */
.cta-wrap { text-align: center; margin-bottom: 52px; }
.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--a) 0%, #1a3a52 100%);
    color: #fff; font-weight: 900;
    font-size: clamp(14px, 4vw, 17px);
    text-transform: uppercase; letter-spacing: .1em;
    padding: 16px 52px; min-height: 44px;
    border-radius: 8px; text-decoration: none;
    box-shadow: 0 20px 60px rgba(45,92,127,.3);
    transition: all .25s ease;
}
.cta-btn:hover {
    background: linear-gradient(135deg, #1a3a52 0%, var(--d) 100%);
    box-shadow: 0 28px 72px rgba(45,92,127,.45);
    transform: translateY(-2px);
}
.cta-btn:active { transform: translateY(0); }

/* REVIEWS — left accent bar + inline name·date */
.reviews-section { max-width: 860px; margin: 0 auto; padding-bottom: 40px; }
.rev-title {
    font-size: clamp(22px, 5vw, 32px);
    font-weight: 900; color: var(--d); letter-spacing: -.02em; margin-bottom: 24px;
}

.reviews-list { display: flex; flex-direction: column; gap: 16px; }

.rev-item {
    display: flex; gap: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: box-shadow .25s, transform .2s;
}
.rev-item:hover { box-shadow: 0 8px 28px rgba(45,92,127,.15); transform: translateY(-1px); }

.rev-accent { width: 5px; background: var(--a); flex-shrink: 0; }

.rev-body { flex: 1; padding: 16px 18px; }

.rev-top { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 8px; }
.rev-ava { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid #d8e4ec; }

.rev-nameline { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 3px; }
.rev-name { font-weight: 700; font-size: 14px; color: var(--d); }
.rev-dot { color: #ccc; }
.rev-date { font-size: 12px; color: #aaa; }

.rev-starrow { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.stars { color: var(--y); font-size: 13px; font-weight: 700; filter: saturate(1.3); }
.rev-hl { font-weight: 600; font-size: 13px; color: #222; }

.rev-badge {
    display: inline-block; background: #eef3f8;
    color: #3a6080; border: 1px solid #c8d8e8;
    font-size: 11px; font-weight: 600;
    padding: 3px 10px; border-radius: 6px; margin-bottom: 10px; display: block;
}
.rev-text { font-size: clamp(13px, 3.5vw, 14px); color: #444; line-height: 1.65; }

/* FOOTER */
.site-footer { background: var(--d); padding: 30px 16px; border-top: 4px solid var(--a); }
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.fname { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.3); margin-bottom: 14px; 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(--y); }
.fsep { color: rgba(255,255,255,.12); display: none; }
@media (min-width: 768px) { .fsep { display: inline; } }