/**
 * Styly pro zdravotní varování podle české legislativy
 */

.health-warning {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(220, 53, 69, 0.1) 100%);
    border: 2px solid rgba(220, 53, 69, 0.4);
    border-radius: 12px;
    padding: 15px 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.health-warning.page-warning {
    margin: 0 0 30px 0;
    position: sticky;
    top: 70px;
    z-index: 100;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.2) 0%, rgba(220, 53, 69, 0.15) 100%);
}

.health-warning.product-warning {
    margin: 10px 0 0 0;
    padding: 10px 15px;
    font-size: 12px;
    border-width: 1px;
}

.health-warning-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

.health-warning-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.health-warning.product-warning .health-warning-icon {
    font-size: 18px;
}

.health-warning-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    flex: 1;
}

.health-warning.product-warning .health-warning-text {
    font-size: 11px;
}

.health-warning-text strong {
    color: #ff6b6b;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.health-warning-text span {
    color: rgba(255, 255, 255, 0.9);
    display: block;
}

/* Responzivní design */
@media (max-width: 768px) {
    .health-warning {
        padding: 12px 15px;
        margin: 15px 0;
    }
    
    .health-warning.page-warning {
        margin: 0 0 20px 0;
        top: 60px;
    }
    
    .health-warning-text {
        font-size: 12px;
    }
    
    .health-warning-icon {
        font-size: 20px;
    }
}

