/* soft-organic + rounded + dramatic + accent-bar + solid
   #4B1461 / #F0A55A / #1D2A3C / #F5F5F5
   reviews: cards with colored top border + large decorative quote */

:root {
    --a: #4B1461;
    --o: #F0A55A;
    --d: #1D2A3C;
    --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: 18px 16px 24px; border-bottom: 5px solid var(--o); }
.header-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.header-super { font-size: 10px; font-weight: 700; letter-spacing: .2em; color: rgba(255,255,255,.5); text-transform: uppercase; margin-bottom: 8px; display: block; }
.header-title { font-size: clamp(16px, 3.8vw, 23px); font-weight: 700; color: #fff; line-height: 1.2; }

/* MAIN */
.site-main { max-width: 1200px; margin: 0 auto; padding: 32px 16px 52px; }

/* PRODUCT SECTION mobile-first */
.product-section {
    display: grid; grid-template-columns: 1fr;
    background: #fff; border-radius: 22px;
    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; }
.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: linear-gradient(145deg, #f8f0fc, #fdf5ec);
    border-radius: 16px;
    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: 10px; border: 2px solid transparent; 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(75,20,97,.2); }

/* PRODUCT INFO */
.product-info { padding: 28px 24px; display: flex; flex-direction: column; justify-content: center; }

.spec-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.sp { font-size: 11px; font-weight: 700; color: var(--a); background: #f3e8f9; border: 1px solid #dcc8ec; padding: 4px 12px; border-radius: 10px; }

.product-title { font-size: clamp(16px, 3.8vw, 22px); font-weight: 700; color: var(--d); line-height: 1.3; margin-bottom: 20px; }

.feat-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.feat {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: clamp(13px, 3.5vw, 14px); line-height: 1.6; color: #444;
    background: #faf5fc; border-radius: 12px; padding: 11px 14px;
}
.fn {
    font-size: 10px; font-weight: 900; color: #fff; background: var(--a);
    min-width: 24px; height: 24px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.kw-note { font-size: 13px; color: #555; background: linear-gradient(135deg, #f3e8f9, #fdf5ec); border-radius: 12px; padding: 11px 16px; border-left: 3px solid var(--a); }

/* CTA solid */
.cta-wrap { text-align: center; margin-bottom: 52px; }
.cta-btn {
    display: inline-block; background: var(--a);
    color: #fff; font-weight: 700;
    font-size: clamp(14px, 4vw, 17px);
    text-transform: uppercase; letter-spacing: .08em;
    padding: 16px 52px; min-height: 44px;
    border-radius: 10px; text-decoration: none;
    box-shadow: 0 20px 60px rgba(75,20,97,.4);
    transition: all .25s ease;
}
.cta-btn:hover { background: #2d0840; box-shadow: 0 28px 72px rgba(75,20,97,.55); transform: translateY(-2px); }
.cta-btn:active { transform: translateY(0); }

/* REVIEWS — cards with colored top border + large decorative quote */
.reviews-section { max-width: 860px; margin: 0 auto; padding-bottom: 40px; }
.rev-title { font-size: clamp(20px, 4vw, 28px); font-weight: 700; color: var(--d); margin-bottom: 24px; }

.reviews-list { display: flex; flex-direction: column; gap: 18px; }

.rev-card {
    border-radius: 16px; overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border-top: 5px solid var(--a);
    display: flex; gap: 0;
    transition: box-shadow .25s, transform .2s;
}
.rev-card:hover { box-shadow: 0 8px 28px rgba(75,20,97,.2); transform: translateY(-2px); }

.rc-deco {
    font-family: Georgia, serif; font-size: 80px; font-weight: 900; line-height: .9;
    color: var(--o); opacity: .25;
    padding: 16px 4px 0 14px; flex-shrink: 0; align-self: flex-start;
}

.rc-body { flex: 1; padding: 16px 18px 18px 4px; }

.rc-top { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 8px; }
.rc-ava { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid #dcc8ec; }
.rc-name { font-weight: 700; font-size: 14px; color: var(--d); margin-bottom: 2px; }
.stars { display: block; color: var(--o); font-size: 13px; font-weight: 700; filter: saturate(1.3); margin-bottom: 2px; }
.rc-hl { font-weight: 600; font-size: 13px; color: #333; }
.rc-date { font-size: 12px; color: #bbb; margin-bottom: 6px; }
.rc-badge { display: inline-block; background: #f3e8f9; color: #6030a0; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 6px; margin-bottom: 10px; }
.rc-text { font-size: clamp(13px, 3.5vw, 14px); color: #444; line-height: 1.7; margin-bottom: 8px; }
.rc-text:last-child { margin-bottom: 0; }

/* 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; 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; } }