:root { --red: #ca1625; --white: #FFFFFF; --dark: #1D3557; --gray: #F8F9FA; }
body { margin: 0; font-family: 'Montserrat', sans-serif; background: var(--white); color: var(--dark); }
.app { max-width: 500px; margin: 0 auto; padding: 20px; }

.header { text-align: center; padding: 20px 0; }
.logo-wrapper { width: 140px; height: 140px; margin: 0 auto; border-radius: 70%; overflow: hidden; border: 3px solid var(--red); }
.logo-img { width: 100%; height: 100%; object-fit: cover; }
.brand-name { color: var(--red); text-transform: uppercase; font-weight: 700; margin-top: 15px; }

.btn-info-top { background: none; border: 2px solid var(--red); color: var(--red); padding: 10px 20px; border-radius: 25px; font-weight: 700; margin-top: 15px; cursor: pointer; }

.section-title { font-size: 1.2rem; font-weight: 700; color: var(--red); margin: 30px 0 15px; text-align: center; }
.category-label { text-align: center; margin-bottom: 10px; font-size: 1.1rem; }

.product-card { background: var(--gray); border-radius: 25px; padding: 20px; margin-bottom: 30px; }
.prod-img { width: 100%; border-radius: 15px; margin-bottom: 15px; }
.btn-buy { background: var(--red); color: white; border: 1px solid #ffffff; padding: 15px; border-radius: 12px; width: 100%; font-size: 1rem; font-weight: 700; margin-bottom: 10px; cursor: pointer; }

.btn-faq-trigger { width: 100%; background: var(--dark); color: #ffffff; border: none; padding: 18px; border-radius: 15px; font-weight: 700; cursor: pointer; }

/* МОДАЛКИ И СКРОЛЛ */
.modal { display: none; position: fixed; z-index: 1000; left:0; top:0; width:100%; height:100%; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); }
.modal-content { background: white; margin: 10% auto; padding: 25px; width: 85%; border-radius: 25px; max-height: 80vh; position: relative; display: flex; flex-direction: column; }
.scroll-area { overflow-y: auto; padding-right: 10px; }
.scroll-area::-webkit-scrollbar { width: 5px; }
.scroll-area::-webkit-scrollbar-thumb { background: var(--red); border-radius: 10px; }

.close { position: absolute; right: 20px; top: 15px; font-size: 28px; cursor: pointer; color: #aaa; }

.scroll-area h2, .scroll-area h3 { color: var(--red); margin-bottom: 15px; }
.scroll-area p { margin-bottom: 15px; line-height: 1.6; font-size: 0.95rem; }

.faq-banner { width: 100%; height: 640px; object-fit: cover; border-radius: 15px; margin-bottom: 20px; display: block;}
.faq-item { margin-bottom: 20px; }
.faq-q { font-weight: 700; color: var(--red); }
.faq-a { font-size: 0.9rem; }

.input-field { margin-bottom: 15px; }
.input-field label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 5px; }
.input-field input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 10px; box-sizing: border-box; }
.input-field small { font-size: 0.75rem; color: #888; }
.btn-send { width: 100%; background: var(--red); color: white; border: none; padding: 15px; border-radius: 12px; font-weight: 700; cursor: pointer; }

.footer { text-align: center; padding: 30px 0; font-size: 0.8rem; color: #aaa; }