@charset "UTF-8";

/* ========================================
   ROOT ПЕРЕМЕННЫЕ
   ======================================== */
:root {
    --primary: #1575FF;
    --primary-dark: #0a5ad4;
    --primary-light: #e9f0ff;
    --secondary: #8b5cf6;
    --dark: #111827;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --border: #e5e7eb;
    --bg: #f5f7fb;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f97316;
    --danger: #ef4444;
    
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 20px 25px -12px rgba(21, 117, 255, 0.15);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --bottom-nav-height: 70px;
}

/* ========================================
   БАЗОВЫЕ СБРОСЫ И ТИПОГРАФИКА
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', 'Inter', sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: 2rem; margin-bottom: 1rem; }
h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 48px 0 24px 0;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 3px;
    background: var(--primary);
    border-radius: var(--radius-full);
}

/* ========================================
   HEADER
   ======================================== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
}

.logo a {
    background: linear-gradient(135deg, var(--primary) 0%, #0a2b5e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    font-weight: 500;
}

.nav-links a {
    color: var(--dark);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark);
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline {
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: var(--white);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Поисковая строка */
.search-bar {
    flex: 1;
    max-width: 400px;
    margin: 0 20px;
}

.search-bar form {
    display: flex;
    align-items: center;
    background: var(--bg);
    border-radius: var(--radius-full);
    padding: 0 16px;
    border: 1px solid var(--border);
}

.search-bar input {
    flex: 1;
    background: none;
    border: none;
    padding: 10px 0;
    font-size: 0.9rem;
    outline: none;
}

.search-bar button {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 8px;
}

/* ========================================
   HERO БЛОК
   ======================================== */
.hero {
    background: linear-gradient(135deg, #0a0f2a 0%, #1a1f3a 100%);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    margin: 40px 0;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ========================================
   КАРТОЧКИ ТОВАРОВ
   ======================================== */
.comics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.comic-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.comic-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.comic-cover {
    position: relative;
    width: 100%;
    height: 380px;
    background: var(--primary-light);
    background-size: cover;
    background-position: center;
}

.comic-info {
    padding: 16px;
}

.comic-title {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.comic-price {
    color: var(--primary);
    font-weight: 700;
    margin: 12px 0;
    font-size: 1.25rem;
}

.btn-add {
    background: var(--primary);
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: var(--radius-full);
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.btn-add:hover {
    background: var(--primary-dark);
}

/* Бейджи */
.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
}

.badge-hit { background: var(--warning); color: white; }
.badge-new { background: var(--success); color: white; }
.badge-exclusive { background: var(--primary); color: white; }
.badge-print { background: var(--gray); color: white; }
.badge-digital { background: var(--secondary); color: white; }

/* ========================================
   КОРЗИНА (слайд-аут)
   ======================================== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.cart-overlay.active {
    visibility: visible;
    opacity: 1;
}

.cart-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: 420px;
    max-width: 90vw;
    height: 100%;
    background: var(--white);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.cart-overlay.active .cart-sidebar {
    transform: translateX(0);
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.3rem;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    margin-bottom: 16px;
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.cart-item-qty button {
    background: var(--primary-light);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-full);
    font-weight: bold;
    cursor: pointer;
}

/* ========================================
   МОДАЛЬНОЕ ОКНО ВХОДА
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}

.modal-container {
    background: white;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-container::-webkit-scrollbar {
    display: none;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--gray);
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.modal-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--gray);
    position: relative;
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.phone-input {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0 12px;
}

.phone-code {
    font-weight: 600;
    color: var(--dark);
}

.phone-input input {
    flex: 1;
    border: none;
    padding: 14px 0;
    font-size: 1rem;
    outline: none;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
}

.input-hint {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 8px;
}

.btn-login {
    margin-top: 16px;
}

.btn-social {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
}

.btn-social.vk {
    background: #0077FF;
    color: white;
    border: none;
}

.btn-social.gosuslugi {
    background: #2D5F9E;
    color: white;
    border: none;
}

.modal-footer {
    text-align: center;
    margin-top: 24px;
}

.modal-footer a {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ========================================
   ВЫПАДАЮЩЕЕ МЕНЮ ПОЛЬЗОВАТЕЛЯ
   ======================================== */
.user-menu {
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    min-width: 200px;
    overflow: hidden;
}

.user-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--dark);
    text-decoration: none;
}

.user-menu a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.user-menu a:last-child {
    border-top: 1px solid var(--border);
    color: #ef4444;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark);
    color: var(--gray-light);
    padding: 48px 0 24px;
    margin-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: var(--gray-light);
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    margin-top: 32px;
    padding-top: 24px;
    text-align: center;
}

/* ========================================
   НИЖНЯЯ НАВИГАЦИЯ (только для мобильных)
   ======================================== */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 8px 16px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
}

.bottom-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--gray);
    font-size: 0.7rem;
    transition: color 0.2s;
    cursor: pointer;
    position: relative;
}

.bottom-nav-item i {
    font-size: 1.3rem;
}

.bottom-nav-item.active {
    color: var(--primary);
}

.bottom-nav-item span {
    font-size: 0.6rem;
}

.bottom-cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--primary);
    color: white;
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   МОБИЛЬНЫЙ ФИЛЬТР
   ======================================== */
.filter-btn {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 16px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.filter-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}

.filter-sidebar.open {
    transform: translateX(0);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
    font-size: 1.1rem;
}

.filter-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
}

.filter-content {
    padding: 20px;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
    color: var(--dark);
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.price-range {
    display: flex;
    gap: 12px;
}

.price-range input {
    width: 50%;
}

.filter-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.filter-actions button {
    flex: 1;
    padding: 12px;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.filter-reset {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--gray);
}

.filter-apply {
    background: var(--primary);
    color: white;
}

.filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.filter-overlay.active {
    visibility: visible;
    opacity: 1;
}

/* ========================================
   СТРАНИЦА ТОВАРА
   ======================================== */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin: 40px 0;
}

.product-cover {
    position: relative;
}

.product-cover img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: bold;
}

.product-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.price-old {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 0.9rem;
    margin-right: 8px;
}

.price-discount {
    color: var(--success);
    font-weight: 600;
}

.btn-add-large {
    background: var(--primary);
    border: none;
    width: 100%;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    margin: 24px 0;
}

.btn-add-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.subscription-offer {
    background: #fef3c7;
    padding: 16px;
    border-radius: var(--radius);
    color: #92400e;
}

/* ========================================
   СТРАНИЦА КОРЗИНЫ
   ======================================== */
.cart-table {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 24px 0;
}

.cart-table th, .cart-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.cart-table th {
    background: #f9fafb;
    font-weight: 700;
}

.qty-mod {
    background: var(--primary-light);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: bold;
}

.remove-item {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.6;
}

.checkout-form {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-row input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

/* ========================================
   СТРАНИЦА ПОДПИСКИ
   ======================================== */
.subscription-hero {
    background: linear-gradient(135deg, #0a0f2a 0%, #1a1f3a 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    margin: 40px 0;
    text-align: center;
    color: white;
}

.subscription-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.subscription-badge {
    background: rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 24px;
}

.subscription-hero h1 {
    color: white;
}

.subscription-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.subscription-price-block {
    margin-bottom: 24px;
}

.subscription-price-old {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.6;
    margin-right: 12px;
}

.subscription-price-current {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.subscription-period {
    font-size: 1rem;
    opacity: 0.7;
}

.subscription-note {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.feature-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray);
}

.pricing-comparison {
    margin: 60px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.comparison-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.comparison-card.premium {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
}

.comparison-card h3 {
    margin-bottom: 16px;
}

.comparison-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.comparison-card li {
    margin: 12px 0;
}

.subscription-faq {
    margin: 60px 0;
}

.faq-list {
    max-width: 800px;
    margin: 32px auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.faq-question {
    font-weight: 700;
    padding: 16px 0;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.2rem;
}

.faq-answer {
    display: none;
    padding-bottom: 16px;
    color: var(--gray);
    line-height: 1.6;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-item.active .faq-answer {
    display: block;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    margin: 32px 0;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.3s ease;
}

.carousel-card {
    flex: 0 0 260px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    z-index: 10;
}

.carousel-prev { left: -20px; }
.carousel-next { right: -20px; }

/* ========================================
   СТРАНИЦА БОНУСОВ (ИНФОРМАЦИОННАЯ)
   ======================================== */
.bonus-info-hero {
    background: linear-gradient(135deg, #0a0f2a 0%, #1a1f3a 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    margin: 40px 0;
    text-align: center;
    color: white;
}

.bonus-info-hero h1 {
    color: white;
    font-size: 2.5rem;
}

.bonus-levels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.bonus-level-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
}

.bonus-level-card .level {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.bonus-rules-list {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 40px 0;
}

.bonus-rules-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    list-style: none;
}

/* ========================================
   АДАПТИВ (мобильная версия)
   ======================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-inner {
        height: 50px;
    }
    
    .nav-links,
    .btn-outline {
        display: none;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .search-bar {
        max-width: none;
        margin: 0 12px;
    }
    
    .search-bar input {
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 40px 20px;
        margin: 20px 0;
        border-radius: var(--radius);
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin: 24px 0 16px 0;
    }
    
    .comics-grid {
        gap: 16px;
        margin: 24px 0;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .comic-cover {
        height: 220px;
    }
    
    .comic-title {
        font-size: 0.9rem;
    }
    
    .comic-price {
        font-size: 1rem;
    }
    
    .btn-add {
        padding: 8px;
        font-size: 0.8rem;
    }
    
    .bottom-nav {
        display: block;
    }
    
    .filter-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    main {
        padding-bottom: 80px;
    }
    
    .footer {
        margin-top: 40px;
        padding: 32px 0 20px;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .catalog-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 16px 0;
    }
    
    .catalog-header h2 {
        margin: 0;
    }
    
    .catalog-header button {
        background: var(--primary-light);
        padding: 8px 16px;
        border-radius: var(--radius-full);
        font-size: 0.8rem;
        color: var(--primary);
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .bonus-levels {
        grid-template-columns: 1fr;
    }
    
    .subscription-hero {
        padding: 40px 20px;
    }
    
    .subscription-price-current {
        font-size: 2rem;
    }
    
    .comparison-card.premium {
        transform: none;
    }
    
    .carousel-prev, .carousel-next {
        display: none;
    }
}

@media (min-width: 769px) {
    .bottom-nav,
    .filter-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .comic-cover {
        height: 180px;
    }
    
    .comic-title {
        font-size: 0.8rem;
    }
    
    .comic-price {
        font-size: 0.9rem;
    }
}