/* Общие стили для сайта Инденза */

/* Боковая вкладка контактов */
.side-tab {
    position: fixed;
    right: -140px;
    top: 50%;
    transform: translateY(-50%);
    background: #87CEEB;
    color: white;
    padding: 12px 20px;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    transition: right 0.5s ease-in-out;
    z-index: 9999;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
}

.timer-display {
    font-size: 11px;
    margin-top: 3px;
    opacity: 0.9;
}

.side-tab.show {
    right: 0;
}

.side-tab:hover {
    background: #4682B4;
    right: 5px;
}

.side-tab::before {
    content: '📱';
    font-size: 16px;
    margin-bottom: 2px;
}

/* Кнопка заказа звонка */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: white;
}

.cta-button-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Карточки преимуществ */
.benefit-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Карточки исследований */
.research-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3B82F6;
    transition: transform 0.3s ease;
}

.research-card:hover {
    transform: translateY(-3px);
}

/* Отзывы */
.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #10B981;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 60px;
    color: #E5E7EB;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

/* FAQ */
.faq-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    margin-bottom: 16px;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: #6B7280;
    line-height: 1.6;
}

/* Навигация */
.nav-link {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: #1F2937;
}

/* Хлебные крошки */
.breadcrumb {
    background: #F9FAFB;
    padding: 16px 0;
    border-bottom: 1px solid #E5E7EB;
}

.breadcrumb-item {
    color: #6B7280;
    text-decoration: none;
}

.breadcrumb-item:hover {
    color: #1F2937;
}

.breadcrumb-current {
    color: #1F2937;
    font-weight: 500;
}

/* Таблицы сравнения */
.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background: #F3F4F6;
    padding: 16px;
    font-weight: 600;
    color: #1F2937;
    border-bottom: 2px solid #E5E7EB;
}

.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid #F3F4F6;
}

/* Микроразметка визуально */
.drug-info-block {
    background: linear-gradient(135deg, #EBF8FF, #F0F9FF);
    border: 1px solid #BFDBFE;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.dosage-block {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .side-tab {
        right: -120px;
        min-width: 100px;
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .benefit-card,
    .research-card,
    .testimonial-card {
        padding: 20px;
    }
}