* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: #F5F5F5; color: #0C0F24; font-family: 'Plus Jakarta Sans', sans-serif; }

/* Header */
.editorial-header { background: #0C0F24; padding: 2rem 0; color: #FFF; }
.header-h1 { font-size: clamp(22px, 5vw, 36px); font-weight: 800; text-align: center; }

/* Product Grid */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .product-grid { grid-template-columns: 1fr 1fr; } }

/* Gallery */
.gallery-wrapper { position: relative; width: 100%; overflow: hidden; border-radius: 8px; }
.hidden-radio { display: none; }
.slides { display: flex; transition: transform 0.5s ease-in-out; width: 100%; }
.slide { min-width: 100%;
    display: flex;
    justify-content: center;}
.dots { display: flex; justify-content: center; gap: 10px; margin-top: 15px; }
.dots label { width: 24px; height: 24px; background: #B3D0D9; border-radius: 50%; cursor: pointer; }

/* Сектор связки инпутов со слайдами */
#s1:checked ~ .slides { transform: translateX(0%); }
#s2:checked ~ .slides { transform: translateX(-100%); }
#s3:checked ~ .slides { transform: translateX(-200%); }
#s4:checked ~ .slides { transform: translateX(-300%); }

/* Info */
.category-pill { background: #2ECC71; color: #FFF; padding: 4px 12px; border-radius: 4px; font-weight: 700; font-size: 12px; }
.title-h2 { font-size: clamp(24px, 5vw, 40px); font-weight: 800; margin: 15px 0; line-height: 1.1; }
.highlight-lead { font-size: 18px; font-weight: 700; color: #2C7FB2; margin-bottom: 20px; }
.description-text p { margin-bottom: 15px; color: #4B5563; }

/* CTA */
.cta-btn { background: #2ECC71; color: #FFF; padding: 18px 40px; font-weight: 700; text-transform: uppercase; border-radius: 4px; display: inline-block; text-decoration: none; }

/* Reviews */
.reviews-section { border-top: 2px solid #0C0F24; padding-top: 40px; }
.reviews-title { font-size: 24px; font-weight: 800; margin-bottom: 30px; }
.review-item { display: flex; gap: 20px; margin-bottom: 40px; }
.author-info img { width: 50px; height: 50px; border-radius: 50%; }
.name { font-weight: 700; display: block; }
.verified { color: #059669; font-size: 12px; }
.stars { color: #F59E0B; }
.rev-title { font-weight: 700; margin-bottom: 5px; }
.date, .specs { font-size: 12px; color: #6B7280; }

/* Footer */
.editorial-footer { background: #0C0F24; color: #FFF; padding: 40px 0; }
.footer-links a { display: block; margin-bottom: 10px; color: #B3D0D9; }
.footer-links {
    display: flex;
    gap: 15px;
}